.about-section{
    padding:80px 0;
}

.about-content h1{
    color:#073B73;
    margin-bottom:25px;
}

.about-content p{
    line-height:1.9;
    color:#555;
}

.about-box{
    margin-top:35px;
}

.about-box h3{
    color:#073B73;
    margin-bottom:15px;
}

.about-box ul{
    padding-left:20px;
}

.about-box li{
    margin-bottom:10px;
}
.why-choose-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.why-card {
    padding: 24px;
    background: linear-gradient(135deg, rgba(7, 59, 115, 0.05) 0%, rgba(217, 164, 65, 0.05) 100%);
    border-radius: 12px;
    border: 1px solid rgba(7, 59, 115, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(7, 59, 115, 0.12);
    border-color: rgba(217, 164, 65, 0.3);
}

.why-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #073B73 0%, #0a4a8f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    color: #fff;
}

.why-card h4 {
    color: #073B73;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.why-card p {
    color: #666;
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}
.founders-card{
    padding:30px;
    background:var(--color-card-bg);
    border:1px solid var(--color-card-border);
    border-radius:12px;
    box-shadow:0 10px 28px rgba(7, 59, 115, 0.1);
}

.founders-card h2{
    color:#073B73;
    text-align:center;
    margin-bottom:25px;
}

.founder-item{
    display:block;
    width:100%;
    padding:0;
    background:transparent;
    border:0;
    text-align:center;
    cursor:pointer;
}

.founder-item img{
    width:100%;
    aspect-ratio:1 / 1;
    object-fit:cover;
    border-radius:10px;
    margin-bottom:15px;
    transition:box-shadow .25s ease, transform .25s ease;
}

.founder-item h4{
    font-size:18px;
    color:#073B73;
    margin-bottom:5px;
}

.founder-item span{
    font-size:14px;
    color:#666;
}

.founder-item:hover img,
.founder-item:focus-visible img,
.founder-item.active img{
    box-shadow:0 0 0 3px #d9a441;
    transform:translateY(-2px);
}

.founder-about{
    margin-top:24px;
    padding-top:22px;
    border-top:1px solid #e5e5e5;
}

.founder-about h3{
    color:#073B73;
    font-size:22px;
    margin-bottom:10px;
}

.founder-about h4{
    color:#24324b;
    font-size:16px;
    font-weight:700;
    margin-bottom:14px;
}

.founder-about p{
    color:#555;
    line-height:1.8;
    margin:0 0 12px;
}

.founder-about ul{
    margin:0 0 14px;
    padding-left:20px;
}

.founder-about li{
    color:#24324b;
    line-height:1.7;
    margin-bottom:6px;
}

.founder-about blockquote{
    margin:14px 0 0;
    padding:14px 16px;
    color:#073B73;
    background:#e5e9ef;
    border-left:4px solid #d9a441;
    border-radius:8px;
    font-weight:600;
    line-height:1.7;
}

/* Responsive: Tablets */
@media (max-width: 991px) {
    .why-choose-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive: Mobile */
@media (max-width: 575px) {
    .why-choose-us-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .why-card {
        padding: 20px;
    }
}
