.about-hero {
    background: linear-gradient(135deg, #5e7e46 0%, #3f4458 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    margin-top: 50px;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.about-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.about-container {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}

.intro-section {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 60px;
    border-left: 5px solid #5e7e46;
}

.intro-section h2 {
    color: #5e7e46;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.intro-section p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.thinkers {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.thinker {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.thinker-name {
    font-weight: bold;
    color: #5e7e46;
    margin-top: 10px;
}

.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #5e7e46, #3f4458);
    border-radius: 2px;
}

.timeline-item {
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: 52%;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 52%;
    margin-right: 0;
    text-align: left;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: white;
    border: 4px solid #5e7e46;
    border-radius: 50%;
    z-index: 1;
}

.timeline-content {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: bold;
    color: #5e7e46;
    margin-bottom: 10px;
}

.timeline-text {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

.section-title {
    text-align: center;
    color: #5e7e46;
    margin-bottom: 50px;
    font-size: 2rem;
    font-weight: bold;
}

.footer-about {
    background-color: #373c4f;
    color: white;
    text-align: center;
    padding: 30px;
    margin-top: 80px;
}

.membro-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, cursor pointer;
    cursor: pointer;
}

.membro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(94, 126, 70, 0.2);
}

.membro-image {
    width: 100%;
    height: 250px;
    background: #e0e0e0;
    overflow: hidden;
}

.membro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.membro-info {
    padding: 20px;
    text-align: center;
}

.membro-info h4 {
    color: #373c4f;
    margin: 10px 0 5px;
}

.membro-info p {
    color: #5e7e46;
    font-weight: bold;
    margin: 0;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.2);
    position: relative;
}

.modal-header {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
}

.modal-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
}

.close:hover {
    color: #5e7e46;
}

#modal-title {
    color: #5e7e46;
    margin: 0 0 15px 0;
    font-size: 1.8rem;
}

#modal-description {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 80px;
        margin-right: 0;
        text-align: left;
    }
    
    .about-hero h1 {
        font-size: 2rem;
    }
}
