/* inter-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/inter-v20-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-500 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    src: url('fonts/inter-v20-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-600 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    src: url('fonts/inter-v20-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-700 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    src: url('fonts/inter-v20-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-800 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 800;
    src: url('fonts/inter-v20-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #FCFCFC;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

p {
    margin-bottom: 2rem;
}

a {
    color: #008561;
}

/* Header */
header {
    background: #ffffff;
    padding: 25px 0;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    height: 80px;
    width: auto;
    display: block;
}


/* Main Content */
main {
    padding: 80px 0 0 0;
}

.intro {
    text-align: center;
    margin-bottom: 80px;
    margin-left: auto;
    margin-right: auto;
}

.intro.content {
    text-align: left;
}
.intro.content p.text {
    margin-bottom: 35px;
}

.intro h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    text-align: center;
    hyphens: auto;
}

.intro-text {
    font-size: 1.25rem;
    color: #4a5568;
    line-height: 1.5;
    font-weight: 400;
}
.text {
    font-size: 1.25rem;
    color: #4a5568;
    line-height: 1.5;
    font-weight: 400;
}

h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 15px;
    letter-spacing: -0.01em;
    hyphens: auto;
}

/* Downloads Section */
.downloads {
    margin: 0 auto 80px auto;
}

.downloads h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 48px;
    text-align: center;
    letter-spacing: -0.01em;
    hyphens: auto;
}

.button-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.download-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    overflow: hidden;
}

.download-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #008561, #059669);
    transition: left 0.3s ease;
}

.download-card:hover::before {
    left: 0;
}

.download-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-color: #008561;
}

.card-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    background: #f0fdf4;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.download-card:hover .card-icon {
    background: #008561;
}

.card-icon svg {
    width: 24px;
    height: 24px;
    stroke: #008561;
    stroke-width: 2;
    transition: stroke 0.3s ease;
}

.download-card:hover .card-icon svg {
    stroke: #ffffff;
}

.card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 8px;
}

.card-description {
    font-size: 0.875rem;
    color: #718096;
    line-height: 1.5;
}

/* Newsletter Section */
.newsletter {
    margin: 100px 0 80px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
}

.newsletter-content {
    text-align: center;
    padding: 48px 32px;
}

.newsletter h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    line-height: 1.3;
    hyphens: auto;
}

.newsletter-description {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Mailchimp Form Styling */
#mc_embed_signup {
    max-width: 100%;
}

#mc_embed_signup_scroll {
    text-align: left;
}

.indicates-required {
    font-size: 0.875rem;
    color: #718096;
    margin-bottom: 24px;
}

.asterisk {
    color: #e53e3e;
    font-weight: bold;
}

.mc-field-group {
    margin-bottom: 24px;
}

.mc-field-group input[type="email"] {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    background-color: #ffffff;
    color: #2d3748;
    transition: all 0.2s ease;
}

.mc-field-group input[type="email"]:focus {
    outline: none;
    border-color: #008561;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.helper_text {
    display: block;
    font-size: 0.875rem;
    color: #718096;
    margin-top: 6px;
    line-height: 1.4;
}

/* Checkbox Styling */
.checkbox-field {
    margin-bottom: 15px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    font-size: 0.875rem;
    color: #4a5568;
    line-height: 1.5;
    cursor: pointer;
    font-weight: 400;
    gap: 10px;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #008561;
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:focus {
    outline: 2px solid #008561;
    outline-offset: 2px;
}

.checkbox-text {
    flex: 1;
}

.checkbox-label a {
    color: #008561;
    text-decoration: none;
    font-weight: 400;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.checkbox-label a:hover {
    border-bottom-color: #008561;
}

.clear {
    text-align: center;
}

#mc-embedded-subscribe {
    background: #008561;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 140px;
}

#mc-embedded-subscribe:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

#mc-embedded-subscribe:active {
    transform: translateY(0);
}

/* Response Messages */
.response {
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 16px;
    font-size: 0.875rem;
}

#mce-error-response {
    background-color: #fed7d7;
    color: #c53030;
    border: 1px solid #feb2b2;
}

#mce-success-response {
    background-color: #c6f6d5;
    color: #2f855a;
    border: 1px solid #9ae6b4;
}

/* Footer */
footer {
    background: #1a202c;
    color: #e2e8f0;
    padding: 24px 0 24px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.footer-links a {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #008561;
}

.copyright {
    font-size: 0.875rem;
    color: #a0aec0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .button-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .download-card {
        padding: 28px 20px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .intro h1 {
        font-size: 2.5rem;
    }

    .intro-text {
        font-size: 1.125rem;
    }

    .text {
        font-size: 1.125rem;
    }

    .downloads h2 {
        font-size: 1.875rem;
    }

    .button-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
    }

    .newsletter-content {
        padding: 32px 20px;
    }

    .newsletter h2 {
        font-size: 1.875rem;
    }

    .newsletter-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    main {
        padding: 60px 0 0 0;
    }

    .intro {
        margin-bottom: 60px;
    }

    .intro h1 {
        font-size: 2rem;
    }
}



.download-card:nth-child(1) { animation-delay: 0.1s; }
.download-card:nth-child(2) { animation-delay: 0.2s; }
.download-card:nth-child(3) { animation-delay: 0.3s; }
.download-card:nth-child(4) { animation-delay: 0.4s; }

/* Utility Classes */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

ul {
    margin: 0 0 0 21px;
    padding: 0;
}
