/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    margin: 40px;
    background-color: #f9f9f9;
    color: #333;
}

/* Headings */
h1, h2, h3, h4 {
    color: #222;
    margin-bottom: 10px;
}

/* Intro Section */
.intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
}

.intro-text {
    flex: 1;
}

.intro-image img {
    width: 200px;
    height: auto;
    border-radius: 10px;
}

/* Table */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

th, td {
    border: 1px solid black;
    padding: 10px;
    text-align: center;
}

/* Lists */
ul {
    list-style: square;
    padding-left: 20px;
    margin-bottom: 30px;
}

/* Links */
a {
    color: black;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Section spacing */
.section {
    margin-bottom: 40px;
}

/* Responsive */
@media (max-width: 768px) {
    .intro {
        flex-direction: column;
        align-items: flex-start;
    }

    .intro-image img {
        width: 100%;
        max-width: 300px;
    }
}
