* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #fefaf5;
    color: #1e2a24;
    line-height: 1.5;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 60px 0;
    scroll-margin-top: 80px;
    position: relative;
    z-index: 2;
    background: #fefaf5;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e3a2f;
    text-align: center;
    margin-bottom: 16px;
}

.section-sub {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
    color: #5a6557;
}

.btn-primary {
    background: #c57f1e;
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
    display: inline-block;
    text-decoration: none;
}

.btn-primary:hover {
    background: #9b6017;
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid #c57f1e;
    background: transparent;
    padding: 8px 20px;
    border-radius: 40px;
    font-weight: 600;
    color: #c57f1e;
    transition: 0.2s;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-outline:hover {
    background: #c57f1e;
    color: white;
}

.main-content {
    position: relative;
    z-index: 10;
    background: #fefaf5;
    margin-top: 100vh;
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.1);
}

@media (max-width: 780px) {
    .main-content {
        margin-top: 100vh;
    }
    section {
        scroll-margin-top: 100px;
    }
}