body {
    margin: 0;
    font-family: 'Inter';font-size: 20px;
    background: #F1E2CF;
}


.section {
    background: white;
    padding: 40px;
    margin: 20px;
    border-radius: 8px;
}

.section h2 {
    color: #0a6ebd;
    text-align: center;
}

.section p {
    line-height: 1.7;
    text-align: center;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.card {
    background: #fafafa;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 20px;
    text-align: center;
}

.footer {
    background: #0a6ebd;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 30px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
}

button {
    margin-top: 15px;
    padding: 10px 20px;
    background: #0a6ebd;
    color: white;
    border: none;
    cursor: pointer;
}
.leader-img {
    width: 10%;
    height: 150px;
    object-fit: cover;      /* Prevents skewing */
    border-radius: 6px;
}


/**********/


/* SUBLINE */
.subline {
    text-align: center;
    font-style: italic;
    color: #555;
    margin-bottom: 30px;
}

/* CHAIRMAN */
.chairman-card {
    display: flex;
    gap: 30px;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
    align-items: center;
}

.chairman-img {
    width: 220px;
    height: 260px;
    object-fit: cover;
    border-radius: 8px;
}

/* GRID */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.leader-img {
    width: 220px;
    height: 260px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 10px;
}

/* TIMELINE CONTAINER */
.timeline {
    margin-top: 40px;
    border-left: 3px solid #0a6ebd;
    padding-left: 25px;
}

/* EACH ITEM IN ROW FORM */
.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
}

/* BULLET */
.timeline-item::before {
    content: '';
    width: 14px;
    height: 14px;
    background: #033F34;
    border-radius: 50%;
    position: absolute;
    left: -32px; /* bullet aligns correctly on the line */
    top: 6px;
}

/* LEFT SIDE (YEAR + TITLE) */
.timeline-left {
    width: 200px; /* FIXED to align properly */
    min-width: 200px;
}

.timeline-year {
    font-weight: bold;
    color: #A05034;
    margin-bottom: 3px;
}

.timeline-title {
    font-weight: 600;
    color: #033F34;
}

/* RIGHT SIDE (DESCRIPTION) */
.timeline-right {
    flex: 1;
    color: #033F34;
    line-height: 1.6;
}
