html,body {
    overflow-x: hidden;
    overflow-y: auto;
}
.leadership-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    flex: 1;
}

.leadership-card {
    display: flex;
    align-items: center;
    margin: 40px 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.leadership-card.reverse {
    flex-direction: row-reverse;
}

.leadership-image {
    flex: 1;
    min-height: 300px;
}

.leadership-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leadership-content {
    flex: 1;
    padding: 30px;
    text-align: left;
}

.leadership-content h2 {
    color: #FFC107;
    margin-top: 0;
}

.back-btn {
    display: inline-block;
    margin-top: 15px;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.back-btn:hover {
    color: #FFC107;
}

.vote-now-btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg, #4CAF50, #8BC34A);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.vote-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.4);
}

.testimonials {
    margin: 60px 0;
    text-align: center;
}

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial .author {
    font-style: italic;
    color: #FFC107;
}

@media (max-width: 768px) {
    .leadership-card, 
    .leadership-card.reverse {
        flex-direction: column;
    }
    
    .leadership-image {
        width: 100%;
    }
}

footer {
    margin-top: auto;
}

main {
    opacity: 1;
    transition: opacity 0.3s ease-out;
}

.testimonials-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.testimonial-grid {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.testimonial-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.testimonial p {
    margin: 0 0 10px 0;
    font-style: italic;
}

.testimonial .author {
    font-weight: bold;
    color: #FFD700;
    text-align: right;
}

@media (max-width: 768px) {
    .testimonial-grid {
        flex-direction: column;
    }
}