* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    background: #fef9e6;
    color: #4a3b2f;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    background-color: #d9a066;
    color: #fff;
    text-align: center;
    padding: 2.5rem 1rem 2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header h1 {
    font-size: 2.8rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

header p {
    font-style: italic;
    font-size: 1.2rem;
}

nav {
    background: #b8814a;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0.8rem;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    transition: background 0.2s;
}

nav a:hover {
    background: #9b6938;
}

main {
    flex: 1;
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.hero {
    text-align: center;
    margin-bottom: 2.5rem;
}

.hero h2 {
    font-size: 2rem;
    color: #b76e2e;
    margin-bottom: 1rem;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.card {
    background: #fff;
    border-left: 6px solid #d9a066;
    padding: 1.2rem;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.card h3 {
    color: #b76e2e;
    margin-bottom: 0.5rem;
}

.about {
    background: #f9eedb;
    padding: 1.8rem;
    border-radius: 10px;
}

.about h2 {
    color: #b76e2e;
    margin-bottom: 0.8rem;
}

footer {
    background: #d9a066;
    color: #fff;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
}
