#main-content {
    width:96%;
    max-width: 1200px;
    padding: 2rem clamp(8px,5%,4rem);
    margin: 0 auto;
}

.section-title {
    margin-top: 3rem;
}

.section-subtitle {
    margin-bottom: 1.5rem;
}

.bout-container{padding:4rem;}

/* Introduction Section */
#intro-content p {
    margin: 0.5rem 0;
    line-height: 1.6;
}

/* Cards Section */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.card-t {
    background: var(--color-bg-card, #fffff7);
    border: 1px solid var(--color-border-dark, #3333);
    border-radius: 5px;
    padding: 2rem;
    transition: transform 0.2s;
}

.card-t:hover {
    transform: scale(1.02);
}

.card-t .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;

    padding-bottom: 0.5rem;
}

.card-t h3 {

    margin: 0;
}

.card-t .card-icon {
    width: 50px;
    height: 50px;
}

.card-t p {

    margin: 0;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.team-member {
    background: var(--color-bg-card, #fffff7);
    border: 1px solid var(--color-border-dark, #3333);
    border-radius: 5px;
    padding: 2rem;
}

.team-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;

    padding-bottom: 0.5rem;
}

.team-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-right: 1rem;
}

.team-info {
    flex-grow: 1;
}

.team-info h3 {

    margin: 0 0 0.25rem 0;
}

.team-role {

    margin: 0 0 0.5rem 0;
}

.team-member p {

    margin: 1rem;
}

/* CTA Section */
#cta-section {
    text-align: center;
}


@media (max-width: 768px) {
    .cards-grid, .team-grid {
        grid-template-columns: 1fr;
    }

    .team-header {
        flex-direction: column;
        text-align: center;
    }

    .team-photo {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}