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

:root {
    --primary: #2D5A4A;
    --secondary: #F4A261;
    --accent: #E76F51;
    --background: #FDFCFA;
    --text: #2B2B2B;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--background);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

header {
    padding: 20px 0;
    background-color: var(--background);
    border-bottom: 1px solid rgba(45, 90, 74, 0.1);
}

.logo {
    font-family: 'Libre Baskerville', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

section {
    padding: 80px 0;
}

h1, h2, h3 {
    font-family: 'Libre Baskerville', serif;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
}

h1 {
    font-size: 48px;
    margin-bottom: 24px;
}

h2 {
    font-size: 36px;
    margin-bottom: 32px;
    text-align: center;
}

h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text);
}

.hero {
    text-align: center;
    padding: 100px 0;
}

.hero-headline {
    max-width: 800px;
    margin: 0 auto 24px;
}

.hero-subheadline {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 32px;
    color: var(--text);
}

.hero-secondary {
    margin-top: 16px;
    font-size: 15px;
    color: #666;
}

.btn {
    display: inline-block;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    min-height: 44px;
    min-width: 44px;
}

.btn-primary {
    background-color: var(--accent);
    color: white;
    box-shadow: 0 4px 6px rgba(231, 111, 81, 0.2);
}

.btn-primary:hover {
    background-color: #d35e42;
    box-shadow: 0 6px 12px rgba(231, 111, 81, 0.3);
    transform: translateY(-2px);
}

.value-props {
    background-color: white;
}

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

.value-item {
    text-align: center;
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
}

.how-it-works {
    text-align: center;
}

.how-it-works-copy {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 32px;
    line-height: 1.8;
}

.about {
    background-color: white;
    text-align: center;
}

.about-content {
    max-width: 700px;
    margin: 0 auto 32px;
}

.about-content p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

footer {
    background-color: var(--primary);
    color: white;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left p {
    font-size: 14px;
    margin-bottom: 4px;
}

.footer-right {
    display: flex;
    gap: 24px;
}

.footer-right a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.footer-right a:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    section {
        padding: 48px 0;
    }

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 20px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-subheadline {
        font-size: 18px;
    }

    .btn {
        padding: 14px 28px;
        font-size: 16px;
    }

    .value-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .how-it-works-copy {
        font-size: 16px;
    }

    .about-content p {
        font-size: 16px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-right {
        flex-direction: column;
        gap: 12px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    h1 {
        font-size: 42px;
    }

    .value-grid {
        gap: 32px;
    }
}
