/* ===============================
           WHO WE SERVE
        ================================ */

.who-we-serve {
    width: 100%;
    background: #f4fbfb;
}

.who-we-serve .container {
    padding: 0;
    max-width: 1440px;
    margin: 0 auto;
    text-align: center;
    padding: 50px 24px;
}

@media (min-width: 700px) {
    .who-we-serve .container {
        padding: 80px 60px;
    }
}

@media (min-width: 1200px) {
    .who-we-serve .container {
        padding: 80px 100px;
    }
}

.section-title {
    font-family: var(--font-heading);
    font-size: var(--fs-h2);
    color: #1f2937;
    margin-bottom: 6px;
    font-weight: 400;
}

.section-subtitle {
    font-size: var(--fs-p-m);
    color: var(--color-text-black);
    margin-bottom: 48px;
    font-weight: 400;
}

.serve-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.serve-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.serve-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.serve-icon {
    font-size: 25px;
    margin-bottom: 16px;

    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F4FBFB;
    border-radius: 12px;
    padding: 20px;
}

.serve-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--color-text-secondary);
    font-weight: 500;
    line-height: 1.3;
    text-align: left;
}

.serve-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-black);
    text-align: left;
}

/* ===============================
           CAPABILITIES & CAPACITY
        ================================ */

.capabilities {
    background: #ffffff;
    width: 100%;
}

.capabilities .container {
    padding: 50px 24px 0 24px;
    max-width: 1440px;
    margin: 0 auto;
    text-align: center;
}

@media (min-width: 700px) {
    .capabilities .container {
        padding: 80px 60px 0 80px;
    }
}

@media (min-width: 1200px) {
    .capabilities .container {
        padding: 80px 100px 0 100px;
    }
}

.capacity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
}

.capacity-card {
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    color: #ffffff;
    padding: 40px 24px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(13, 148, 136, 0.25);
    text-align: center;
}

.capacity-card h3 {
    font-size: 56px;
    font-family: var(--font-heading);
    font-weight: 400;
    margin-bottom: 8px;
}

.capacity-label {
    font-size: 20px;
    font-weight: 500;
    display: block;
    margin-bottom: 4px;
}

.capacity-card span {
    font-size: 15px;
    opacity: 0.9;
    display: block;
}

.formats {
    margin-top: 48px;
    background-color: #f4fbfb;
    border-radius: 20px;
    padding: 20px;
}

.formats p {
    font-size: 20px;
    color: var(--color-text-black);
    margin-bottom: 16px;
    font-weight: 500;
}

.format-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.format-tags span {
    font-size: 16px;
    padding: 6px 14px;
    border-radius: 20px;
    color: var(--color-text-black);
    display: flex;
    align-items: center;
    gap: 10px;
}
.format-tags span div{
    font-size: 11px;
    color: #ffffff;
    background-color: var(--color-text-secondary);
    border-radius: 100px;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===============================
           HOW WE WORK
        ================================ */

.how-we-work {
    background: #F4FBFB;
}

.how-we-work .container {
    padding: 50px 24px;
    max-width: 1440px;
    margin: 0 auto;
    text-align: center;
}

@media (min-width: 700px) {
    .how-we-work .container {
        padding: 80px 60px;
    }
}

@media (min-width: 1200px) {
    .how-we-work .container {
        padding: 80px 100px;
    }
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    margin-top: 48px;
    margin-left: auto;
    margin-right: auto;
}

.work-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 24px;
    text-align: left;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: left;
}

.work-icon {
    font-size: 28px;
    color: #14b8a6;
    margin-bottom: 16px;
    background-color: #F4FBFB;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
}

.work-card h4 {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--color-text-secondary);
}

.work-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-black);
}

/* ===============================
           CERTIFICATIONS
        ================================ */

.certifications {
    text-align: center;
}

.certifications .container {
    padding: 50px 24px;
    max-width: 1440px;
    margin: 0 auto;
}

@media (min-width: 700px) {
    .certifications .container {
        padding: 80px 60px;
    }
}

@media (min-width: 1200px) {
    .certifications .container {
        padding: 80px 100px;
    }
}

.section-title {
    color: #14b8a6;
}

.certification-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    margin: 40px auto;
}

.cert-card {
    background: #F4FBFB;
    padding: 24px 16px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.cert-icon {
    font-size: 30px;
    color: #14b8a6;
    margin-bottom: 12px;
    border-radius: 100px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-name {
    font-size: 13px;
    font-weight: 500;
    color: #1f2937;
    text-align: center;
}

.certification-text {
    font-size: 16px;
    margin: 24px auto 0;
    line-height: 1.8;
    color: #ffffff;
    background: #14b8a6;
    padding: 32px;
    border-radius: 16px;
}

/* ===============================
           FAQ
        ================================ */

.faq {
    background: #ffffff;
}

.faq .container {
    padding: 50px 24px;
    max-width: 1440px;
    margin: 0 auto;
    text-align: center;
}

@media (min-width: 700px) {
    .faq .container {
        padding: 80px 60px;
    }

}

@media (min-width: 1200px) {
    .faq .container {
        padding: 80px 100px;
        
    }
}

.faq-list {
    max-width: 900px;
    margin: 40px auto 0;
    text-align: left;
}

.faq-list .div {
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 16px;
    background-color: #F4FBFB;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: center;
}


.faq-icon {
    background: var(--color-text-secondary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    margin-top: 0;
}

.faq-content {
    flex: 1;
}

.faq summary {
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    list-style: none;
    color: var(--color-text-secondary);
    display: block;
    margin-bottom: 8px;
}

.faq summary::before {
    display: none;
}

.faq summary::after {
    display: none;
}

.faq details p {
    margin: 0;
    font-size: 12px;
    line-height: 1.7;
    color: #333;
}


@media (min-width: 500px) {
.faq-icon {
    background: var(--color-text-secondary);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 0;
}
}

.serve-icon i,
.work-icon i {
    font-size: 30px;
    color: #0d685d; /* use your brand green */
    line-height: 1;
}

.serve-icon,
.work-icon {
    margin-bottom: 15px;
}
