/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #423107;
    background-color: #ffffff;
    font-size: 16px;
}

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

/* Typography */
h1,
h2,
h3 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
}

h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h3 {
    font-size: clamp(1.125rem, 2.5vw, 1.25rem);
    font-weight: 600;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 12px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FFC72C 0%, #FFD15C 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-text {
    text-align: left;
}

.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    max-width: 350px;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.hero h1 {
    color: #423107;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.125rem;
    color: #2d3748;
    margin-bottom: 32px;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: #423107;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px 0 rgba(66, 49, 7, 0.15);
}

.cta-button:hover {
    background-color: #5d4009;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(66, 49, 7, 0.2);
}

/* Section Styles */
section {
    padding: 60px 0;
}

.section-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Problem Section */
.problem {
    background-color: #f7fafc;
}

.problem-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.problem-item {
    background-color: #ffffff;
    padding: 20px 16px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(66, 49, 7, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(66, 49, 7, 0.12);
}

.problem-item h3 {
    color: #e53e3e;
    margin-bottom: 12px;
}

.problem-item p {
    color: #4a5568;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Solution Section */
.solution {
    background-color: #ffffff;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.solution-item {
    padding: 18px 14px;
    border-radius: 12px;
    background-color: #fffbeb;
    border: 1px solid #fed7aa;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 199, 44, 0.15);
}

.solution-item h3 {
    color: #423107;
    margin-bottom: 12px;
    font-size: 1.125rem;
}

.solution-item p {
    color: #4a5568;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.solution-emphasis {
    font-size: 1.125rem;
    color: #423107;
    font-weight: 600;
    text-align: center;
}

/* Audience Section */
.audience {
    background-color: #f7fafc;
}

.audience-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.audience-item {
    background-color: #FFC72C;
    color: #423107;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(255, 199, 44, 0.3);
    transition: transform 0.3s ease;
}

.audience-item:hover {
    transform: translateY(-2px);
}

/* Status Section */
.status {
    background-color: #ffffff;
}

.status-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #FFC72C;
    background-color: #fffbeb;
    padding: 20px 24px;
    border-radius: 12px;
    margin: 24px auto;
    border: 2px solid #fed7aa;
    max-width: 500px;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #423107 0%, #5d4009 100%);
    color: #ffffff;
}

.contact h2 {
    color: #ffffff;
}

.contact p {
    color: #e2e8f0;
    font-size: 1.125rem;
}

.contact-email {
    display: inline-block;
    background-color: #FFC72C;
    color: #423107;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    margin-top: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 199, 44, 0.3);
}

.contact-email:hover {
    background-color: #FFD15C;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 199, 44, 0.4);
}

/* Footer */
.footer {
    background-color: #423107;
    color: #a0aec0;
    text-align: center;
    padding: 32px 0;
}

.footer p {
    margin-bottom: 0;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text {
        text-align: center;
    }

    .logo {
        max-width: 250px;
    }

    section {
        padding: 40px 0;
    }

    .hero {
        padding: 40px 0;
        min-height: auto;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .problem-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        margin-top: 32px;
    }

    .solution-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-top: 32px;
        margin-bottom: 32px;
    }

    .audience-list {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .status-text {
        font-size: 1.125rem;
        padding: 16px 20px;
    }

    .contact-email {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-content {
        gap: 32px;
    }

    .logo {
        max-width: 200px;
    }

    section {
        padding: 32px 0;
    }

    .hero {
        padding: 32px 0;
    }

    .problem-item,
    .solution-item {
        padding: 16px 12px;
    }

    .problem-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .solution-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .audience-item {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    .status-text {
        padding: 14px 18px;
        font-size: 1rem;
    }

    .contact-email {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Intersection Observer animations would go here if using JavaScript */