* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #f6f1ec;
    color: #3b2f2a;
}

/* HEADER */

.header {
    background: linear-gradient(135deg, #b07d62, #8c5a3c);
    color: white;
    padding: 30px;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header-img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
    background: #ddd;
}

.subtitle {
    margin-top: 8px;
    font-size: 18px;
    opacity: 0.9;
}

/* NAV */

.nav {
    background: #5c3b2e;
    padding: 12px;
    text-align: center;
}

.nav a {
    color: white;
    text-decoration: none;
    margin: 0 18px;
    font-weight: bold;
}

.nav a:hover {
    text-decoration: underline;
}

/* MAIN */

.container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
}

/* INTRO */

.intro {
    margin-bottom: 40px;
}

.intro h3 {
    margin-bottom: 12px;
    color: #7a4f3a;
}

/* HIGHLIGHT SECTION */

.highlight {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 50px;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.center-img {
    width: 320px;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    background: #ddd;
}

.highlight-text h3 {
    margin-bottom: 10px;
    color: #7a4f3a;
}

.highlight-text ul {
    margin-top: 10px;
    padding-left: 20px;
}

/* CARDS */

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.card h4 {
    margin-bottom: 10px;
    color: #7a4f3a;
}

/* FOOTER */

.footer {
    text-align: center;
    padding: 20px;
    background: #5c3b2e;
    color: white;
    margin-top: 40px;
}
