body {
    margin: 0;
    font-family: "Georgia", "Segoe UI", serif;
    background: #f4f1ea;
    color: #2b2b2b;
}

/* Container */
.container {
    max-width: 900px;
    margin: auto;
    padding: 20px;
}

/* Header */
header {
    text-align: center;
    padding: 30px 20px 10px;
}

header h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

nav a {
    color: #8b5e3c;
    margin: 0 10px;
    text-decoration: none;
    font-size: 1rem;
}

nav a:hover {
    text-decoration: underline;
}

/* HERO */
.hero {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    margin: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.hero img {
    width: 100%;
    display: block;
}

.hero-text {
    padding: 25px;
    text-align: center;
}

.hero-text h2 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.highlight {
    color: #b07a4a;
    font-size: 1.6rem;
    font-weight: bold;
}

.hero-text p {
    color: #555;
    font-size: 1rem;
}

/* Sections */
section {
    margin: 40px 0;
}

/* Cards */
.grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.card {
    background: white;
    padding: 15px;
    border-radius: 15px;
    width: 200px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.2s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

.card h3 {
    font-size: 1rem;
    color: #444;
}

/* Divider */
hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 30px 0;
}

/* Footer */
footer {
    text-align: center;
    font-size: 0.9rem;
    color: #777;
    padding: 30px;
}