:root {
    --primary: #004b23;
    --primary-light: #007f3e;
    --text: #1a202c;
    --text-light: #4a5568;
    --white: #ffffff;
    --bg-white: #ffffff;
    --radius: 0px;
    /* Sharper, cleaner lines for a truly modern feel */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 1.5rem 1.5rem 1.5rem;
    text-align: center;
    background: var(--white);
}

.logo-container {
    margin-bottom: 1.5rem;
}

.logo {
    max-width: 180px;
    /* Smaller logo as requested */
    height: auto;
}

h1 {
    font-size: 2.75rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

p.subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

main {
    padding: 0;
}

.form-wrapper {
    width: 100%;
    background: var(--white);
    display: flex;
    justify-content: center;
}

.form-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    /* Wider form as requested */
    /* Extremely large min-height to ensure the entire form is visible without internal scrolling */
    min-height: 3500px;
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

footer {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-light);
    font-size: 0.85rem;
    border-top: 1px solid #f0f0f0;
}

/* Base fade-in for contents */
.fade-in {
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2.25rem;
    }

    .logo {
        max-width: 140px;
    }

    header {
        padding: 2.5rem 1rem 1rem 1rem;
    }
}