/* FAQ Section Styles - Matching the page design */
.faq-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.faq-section h2 {
    color: #246fb1;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Fahkwang', serif;
    font-weight: 700;
}

.faq-section > p {
    text-align: center;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-list details {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-list details:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.faq-list summary {
    background: linear-gradient(135deg, #246fb1, #1a5a8a);
    color: #fff;
    padding: 25px 30px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    position: relative;
    transition: all 0.3s ease;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-list details[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-list summary:hover {
    background: linear-gradient(135deg, #1a5a8a, #246fb1);
}

.faq-list details > div {
    padding: 30px;
    background: #fff;
    border-top: 1px solid #e9ecef;
}

.faq-list details > div p {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    margin: 0;
    font-family: 'Work Sans', sans-serif;
}

/* Social Media Section */
.social-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #fff;
    text-align: center;
}

.social-section h3 {
    color: #246fb1;
    font-size: 2rem;
    margin-bottom: 30px;
    font-family: 'Fahkwang', serif;
    font-weight: 700;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    padding: 20px;
    border-radius: 15px;
    background: #f8f9fa;
    min-width: 120px;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: #fff;
}

.social-link svg {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.1);
}

.social-link span {
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

/* Social Media Icon Colors */
.social-link.instagram svg {
    fill: #E4405F;
}

.social-link.facebook svg {
    fill: #1877F2;
}

.social-link.tiktok svg {
    fill: #000000;
}

.social-link.twitter svg {
    fill: #1DA1F2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        padding: 40px 15px;
    }

    .faq-section h2 {
        font-size: 2rem;
    }

    .faq-list summary {
        padding: 20px 25px;
        font-size: 1rem;
    }

    .faq-list details > div {
        padding: 25px;
    }

    .social-links {
        gap: 20px;
    }

    .social-link {
        min-width: 100px;
        padding: 15px;
    }

    .social-link svg {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .faq-section h2 {
        font-size: 1.8rem;
    }

    .faq-list summary {
        padding: 18px 20px;
        font-size: 0.95rem;
    }

    .faq-list details > div {
        padding: 20px;
    }

    .social-links {
        gap: 15px;
    }

    .social-link {
        min-width: 90px;
        padding: 12px;
    }

    .social-link svg {
        width: 30px;
        height: 30px;
    }
}