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

:root {
    --primary-color: #2c7a7b;
    --secondary-color: #38b2ac;
    --green-start: #2abf60;
    --green-end: #45b876;
    --blue-start: #014994;
    --blue-end: #0066cc;
    --text-dark: #2d3748;
    --text-light: #4a5568;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
}

body {
    font-family: 'Droid Serif',  sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

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

/* Main Content */
.main-content {
    padding: 0;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #2abf60 0%, #014994 100%);
    color: white;
    padding: 60px 20px 140px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Cards Section */
.contact-cards-section {
    padding: 0 20px 60px;
    background-color: var(--bg-light);
    position: relative;
    z-index: 2;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    transform: translateY(-60px);
}

.contact-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 30px;
    /* text-align: center; */
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.editorial-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.partnerships-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.listing-icon {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.card-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.3;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-description {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 25px;
    min-height: 72px;
}

/* .card-contact {
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
} */

.contact-label {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-link {
    font-size: 15px;
    color: var(--primary-color);
    /* text-decoration: none; */
    font-weight: 600;
    transition: color 0.3s ease;
    word-break: break-word;
}

.contact-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* FAQ Section */
.faq-section {
    padding: 60px 20px;
    background-color: var(--bg-light);
}

.faq-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 10px;
}

.faq-subtitle {
    font-size: 16px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 40px;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

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

.faq-answer p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Tablet Styles */
@media screen and (max-width: 1024px) {
    .hero-section {
        padding: 50px 20px 120px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .contact-cards-section {
        padding: 0 20px 50px;
    }

    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        transform: translateY(-50px);
    }

    .contact-card:last-child {
        grid-column: 1 / -1;
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }

    .faq-title {
        font-size: 32px;
    }
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    .hero-section {
        padding: 40px 20px 100px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .contact-cards-section {
        padding: 0 20px 40px;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        transform: translateY(-40px);
    }

    .contact-card {
        padding: 30px 25px;
    }

    .contact-card:last-child {
        grid-column: auto;
        max-width: 100%;
    }

    .card-title {
        font-size: 20px;
        min-height: auto;
    }

    .card-description {
        font-size: 14px;
        min-height: auto;
    }

    .faq-section {
        padding: 40px 20px;
    }

    .faq-title {
        font-size: 28px;
    }

    .faq-subtitle {
        font-size: 15px;
    }

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

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

    .faq-answer p {
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .hero-section {
        padding: 30px 15px 90px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .container {
        padding: 0 15px;
    }

    .contact-cards-section {
        padding: 0 15px 30px;
    }

    .contact-cards-grid {
        transform: translateY(-35px);
    }

    .contact-card {
        padding: 25px 20px;
    }

    .card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 20px;
    }

    .card-icon svg {
        width: 20px;
        height: 20px;
    }

    .card-title {
        font-size: 18px;
    }

    .card-description {
        font-size: 13px;
    }

    .contact-link {
        font-size: 14px;
    }

    .faq-section {
        padding: 30px 15px;
    }

    .faq-title {
        font-size: 24px;
    }

    .faq-question {
        padding: 15px;
        font-size: 14px;
    }

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

/* Print Styles */
@media print {
    .hero-section {
        background: none;
        color: var(--text-dark);
        border-bottom: 2px solid var(--border-color);
    }

    .contact-card {
        break-inside: avoid;
    }
}