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

body {
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    color: #1d2e43;
    background-color: #f4f4f4;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 80px;
}

.logo {
    margin-bottom: 24px;
}

.logo-text {
    font-size: 24px;
    font-weight: 600;
    color: #30d079;
}

.header h1 {
    font-size: 48px;
    font-weight: 600;
    color: #1d2e43;
    margin-bottom: 16px;
}

.subtitle {
    font-size: 18px;
    color: #a8aeb9;
    font-weight: 400;
}

/* Sections */
.section {
    margin-bottom: 80px;
}

.section h2 {
    font-size: 32px;
    font-weight: 600;
    color: #1d2e43;
    margin-bottom: 32px;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.contact-card {
    background: #ffffff;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #e9e9e9;
}

.contact-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1d2e43;
    margin-bottom: 16px;
}

.contact-card p {
    color: #a8aeb9;
    margin-bottom: 8px;
}

.email {
    color: #30d079 !important;
    font-weight: 500;
}

.response-time {
    font-size: 14px;
    color: #a8aeb9;
}

.hours {
    color: #30d079 !important;
    font-weight: 500;
}

/* FAQ Section */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e9e9e9;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.faq-item:hover {
    border-color: #30d079;
}

.faq-question {
    padding: 24px;
    font-size: 18px;
    font-weight: 500;
    color: #1d2e43;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

.faq-question:hover {
    color: #30d079;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #30d079;
    transition: transform 0.2s ease;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #a8aeb9;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding: 0 24px 24px 24px;
    max-height: 200px;
}

/* Resources Grid */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.resource-link {
    display: block;
    background: #ffffff;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #e9e9e9;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

.resource-link:hover {
    border-color: #30d079;
    transform: translateY(-2px);
}

.resource-link h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1d2e43;
    margin-bottom: 8px;
}

.resource-link p {
    color: #a8aeb9;
    font-size: 16px;
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: #ffffff;
    padding: 48px 32px;
    border-radius: 12px;
    border: 1px solid #e9e9e9;
    margin-bottom: 80px;
}

.cta-section h2 {
    font-size: 28px;
    font-weight: 600;
    color: #1d2e43;
    margin-bottom: 16px;
}

.cta-section p {
    color: #a8aeb9;
    font-size: 16px;
    margin-bottom: 32px;
}

.cta-button {
    display: inline-block;
    background: #30d079;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.2s ease;
}

.cta-button:hover {
    background: #92d3ae;
    transform: translateY(-1px);
}

/* Footer */
.footer {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #e9e9e9;
}

.footer p {
    color: #a8aeb9;
    font-size: 14px;
}

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

    .header {
        margin-bottom: 60px;
    }

    .header h1 {
        font-size: 36px;
    }

    .section {
        margin-bottom: 60px;
    }

    .section h2 {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .contact-grid,
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-card,
    .resource-link {
        padding: 24px;
    }

    .cta-section {
        padding: 32px 24px;
        margin-bottom: 60px;
    }

    .faq-question {
        padding: 20px;
        font-size: 16px;
    }

    .faq-question::after {
        right: 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 32px;
    }

    .subtitle {
        font-size: 16px;
    }

    .section h2 {
        font-size: 24px;
    }

    .contact-card,
    .resource-link,
    .cta-section {
        padding: 20px;
    }
}

/* Focus styles for accessibility */
.faq-question:focus,
.resource-link:focus,
.cta-button:focus {
    outline: 2px solid #30d079;
    outline-offset: 2px;
}

/* Remove text decoration globally */
a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}
