﻿.team-section {
    background: #fff;
    padding: 60px 0px;
    text-align: center;
}
.botcontent {
    margin-top:30px;
    font-size: 18px;
    color: #1f1f1f;
}
.podtitle{
    text-align :center;
    margin-top:30px;
}
.section-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 40px;
}
/*
.team-container {
    max-width: 1200px;
    margin: 0 auto;
}*/

.team-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 100px;
}

.team-card {
    background: #f9f9fb;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    position: relative;
    width: 340px;
    /* padding-top: 60px;*/
    transition: transform 0.3s ease;
}

    .team-card:hover {
        transform: translateY(-5px);
    }

.team-role {
    position: absolute;
    top: -35px;
    left: 95%;
    transform: translateX(-50%);
    background: #f9f9fb;
    border: 4px solid #fff;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

    .team-role img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
    }

.team-content {
    padding: 30px 20px 20px;
    text-align: left;
}

    .team-content h3 {
        font-size: 18px;
        font-weight: 700;
        margin: 0 0 20px 50px;
    }

.team-subtitle {
    color: #555;
    font-size: 14px;
    margin-bottom: 10px;
}

.team-stars {
    color: #ffa500;
    font-size: 18px;
    margin-bottom: 12px;
}

.team-content p {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .team-cards {
        gap: 50px;
    }

    .team-card {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    .botcontent{
        padding: 0px 20px;
    }

    .team-card {
        width: 100%;
        padding-top: 45px;
    }

    .team-role {
        width: 70px;
        height: 70px;
        font-size: 12px;
    }

    .team-content {
        padding: 25px 16px 20px;
    }

        .team-content h3 {
            font-size: 16px;
        }

    .team-subtitle {
        font-size: 13px;
    }

    .team-stars {
        font-size: 16px;
    }

    .team-content p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .team-section {
        padding: 40px 16px;
    }

    .team-role {
        width: 60px;
        height: 60px;
        font-size: 11px;
    }

    .section-title {
        font-size: 24px;
    }
}

/* Consistent styling with previous FAQ sections */
.faq-section {
    font-family: 'Segoe UI', Roboto, sans-serif;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 600;
    color: #2c3e50;
}

.section-subtitle {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.faq-card {
    border: 1px solid #e0e6ed;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .faq-card:hover {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

.faq-header {
    padding: 1.25rem 1.5rem;
    background-color: #f8fafc;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 500;
    color: #2c3e50;
    margin: 0;
}

.faq-toggle {
    display: inline-block;
    width: 20px;
    height: 20px;
    position: relative;
}

    .faq-toggle::before,
    .faq-toggle::after {
        content: '';
        position: absolute;
        background-color: #4a6cf7;
        transition: transform 0.3s ease;
    }

    .faq-toggle::before {
        top: 50%;
        left: 0;
        width: 100%;
        height: 2px;
        transform: translateY(-50%);
    }

    .faq-toggle::after {
        top: 0;
        left: 50%;
        width: 2px;
        height: 100%;
        transform: translateX(-50%) rotate(90deg);
    }

.faq-header[aria-expanded="true"] .faq-toggle::after {
    transform: translateX(-50%) rotate(0deg);
}

.faq-body {
    padding: 1.5rem;
    background-color: #fff;
}

.faq-list {
    padding-left: 1.25rem;
    margin: 1rem 0;
}

    .faq-list li {
        margin-bottom: 0.5rem;
        color: #4a5568;
        line-height: 1.6;
    }

.comparison-table {
    overflow-x: auto;
}

    .comparison-table table {
        width: 100%;
        border-collapse: collapse;
        margin: 1rem 0;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 15px;
        text-align: left;
        border-bottom: 1px solid #e0e6ed;
    }

    .comparison-table th {
        background-color: #f8fafc;
        font-weight: 600;
        color: #2c3e50;
    }

    .comparison-table tr:hover {
        background-color: #f9fbfd;
    }


