/* मुख्य रॅप जो ७०:३० विभाग तयार करतो */
.leaders-strip {
    display: flex; /* grid ऐवजी flex वापरल्याने ७०:३० सोपे होते */
    gap: 30px;
    padding: 20px 6% 50px;
    background: var(--white);
}

/* ७०% विभाग: Leadership साठी */
.leadership-main-col {
    width: 70%;
    display: flex;
    flex-direction: column;
}

/* ३०% विभाग: Pitman & Birthday साठी */
.side-col {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 20px; /* Pitman आणि Birthday मध्ये अंतर */
}

/* ४ लीडर्सची ग्रिड (७०% च्या आत) */
.leaders-grid-internal {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* एका ओळीत ३ लीडर्स */
    gap: 30px;
    text-align: center;
}

.leaders-title {
    text-align: center;
    margin-bottom: 25px;
}

/* लीडर कार्ड स्टाईल (तुमचा मूळ कोड) */
.leader-card img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #bbb;
    margin-bottom: 15px;
}

.leader-card h4 {
    margin: 0;
    font-size: 1rem;
    color: #000;
    font-weight: 600;
}

.leader-card p {
    margin-top: 5px;
    font-size: 0.85rem;
    color: #555;
}

/* मोबाईलसाठी रिस्पॉन्सिव्ह (९०० पिक्सेल खाली १ कॉलम होईल) */
@media (max-width: 900px) {
    .leaders-strip {
        flex-direction: column; /* एकाखाली एक येईल */
    }
    .leadership-main-col, .side-col {
        width: 100%; /* पूर्ण रुंदी */
    }
    .leaders-grid-internal {
        grid-template-columns: repeat(2, 1fr); /* २ कॉलम्स */
    }
}

@media (max-width: 480px) {
    .leaders-grid-internal {
        grid-template-columns: 1fr; /* मोबाईलवर १ कॉलम */
    }
}

/* कॉमन लेआउट जो ७०:३० विभाग तयार करतो */
.split-layout-section {
    display: flex;
    gap: 30px;
    padding: 40px 6%;
    background: #fff;
    align-items: flex-start;
}

.bg-light { background: #f9f9f9; } /* दुसऱ्या सेक्शनसाठी हलका बॅकग्राउंड */

/* ७०% भाग */
.main-70 {
    width: 70%;
}

/* ३०% भाग */
.side-30 {
    width: 30%;
}

/* ४ लीडर्सची ग्रिड */
.leaders-grid-internal {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    text-align: center;
}

/* Pitman Card Styling */
.pitman-card {
    background: #0a3d62;
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
}

.pitman-card img {
    width: 90px;
    border-radius: 10px;
    margin-bottom: 10px;
}

/* Welcome Box Padding */
.welcome-box {
    padding-right: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .split-layout-section {
        flex-direction: column;
    }
    .main-70, .side-30 {
        width: 100%;
    }
    .leaders-grid-internal {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Section 2 साठी खास सुधारणा */
.split-layout-section.bg-light {
    align-items: stretch; /* दोन्ही बॉक्सची उंची सारखी ठेवण्यासाठी */
}

.welcome-box {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    height: 100%; /* पूर्ण उंची घेईल */
    border-left: 5px solid #f39c12; /* एक छान ऑरेंज लाईन (तुमच्या स्क्रीनशॉट प्रमाणे) */
}