* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f6efe2;
    color: #2b211b;
}

header {
    background: #7b1e24;
    color: white;
    padding: 20px 7%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo span {
    color: #e0b45a;
}

nav {
    display: flex;
    gap: 24px;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 15px;
}

nav a:hover {
    color: #e0b45a;
}

.hero {
    min-height: 520px;
    padding: 90px 7%;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #fffaf0, #ead8c0);
}

.hero-content {
    max-width: 760px;
}

.badge {
    display: inline-block;
    background: #f0dfbd;
    color: #7b1e24;
    padding: 8px 14px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 14px;
}

.hero h1 {
    font-size: 58px;
    line-height: 1.05;
    margin: 20px 0 18px;
}

.hero h1 span {
    color: #b52a32;
}

.hero p {
    font-size: 20px;
    line-height: 1.6;
    color: #6b5a4d;
    max-width: 650px;
}

.buttons {
    display: flex;
    gap: 14px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 24px;
    border-radius: 9px;
    text-decoration: none;
    font-weight: bold;
}

.btn-primary {
    background: #b52a32;
    color: white;
}

.btn-secondary {
    background: white;
    color: #2b211b;
    border: 1px solid #d8c8b5;
}

.section {
    padding: 70px 7%;
}

.section h2 {
    font-size: 34px;
    margin-top: 0;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 30px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.card h3 {
    margin-top: 0;
    font-size: 21px;
}

.card p {
    color: #6b5a4d;
    line-height: 1.6;
}

footer {
    background: #7b1e24;
    color: #ead8c0;
    text-align: center;
    padding: 28px 7%;
}

@media (max-width: 800px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    nav {
        flex-wrap: wrap;
    }

    .hero {
        padding: 60px 7%;
    }

    .hero h1 {
        font-size: 42px;
    }

    .cards {
        grid-template-columns: 1fr;
    }
}
