.hero-section {
    /* background: linear-gradient(135deg, #006633 0%, #00994d 100%); */
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><path fill="white" d="M50 15 L61 40 L88 40 L66 57 L75 85 L50 68 L25 85 L34 57 L12 40 L39 40 Z"/></svg>');
    background-repeat: repeat;
    background-size: 60px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.profile-img {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.slogan-badge {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 500;
    display: inline-block;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.section-title {
    color: #006633;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 40px;
    font-size: 2.2rem;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: #006633;
    border-radius: 2px;
}

.section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

.info-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s;
    border: 1px solid rgba(0, 102, 51, 0.1);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 102, 51, 0.1);
}

.info-icon {
    width: 50px;
    color: #006633;
    font-size: 2rem;
}

.info-label {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
}

.info-value {
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
}

.timeline-item {
    position: relative;
    padding-left: 50px;
    margin-bottom: 40px;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 0;
    bottom: -40px;
    width: 2px;
    background: linear-gradient(to bottom, #006633, #00994d);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-year {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: #006633;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.8rem;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 102, 51, 0.3);
}

.election-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border: 1px solid rgba(0, 102, 51, 0.1);
    height: 100%;
}

.election-card:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 102, 51, 0.15);
}

.election-year {
    background: #006633;
    color: white;
    padding: 15px;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.election-details {
    padding: 20px;
}

.victory-badge {
    background: #28a745;
    color: white;
    padding: 5px 15px;
    border-radius: 25px;
    font-size: 0.9rem;
    display: inline-block;
}

.defeat-badge {
    background: #dc3545;
    color: white;
    padding: 5px 15px;
    border-radius: 25px;
    font-size: 0.9rem;
    display: inline-block;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #006633;
    line-height: 1.2;
}

.stat-label {
    color: #6c757d;
    font-size: 0.9rem;
}

.mission-item {
    background: white;
    border-radius: 15px;
    padding: 25px;
    height: 100%;
    border-bottom: 4px solid #006633;
    transition: all 0.3s;
}

.mission-item:hover {
    box-shadow: 0 15px 40px rgba(0, 102, 51, 0.1);
}

.mission-icon {
    font-size: 2.5rem;
    color: #006633;
    margin-bottom: 20px;
}

.navbar {
    background: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-link {
    color: #333 !important;
    font-weight: 500;
    padding: 10px 20px !important;
}

.nav-link:hover {
    color: #006633 !important;
}

.btn-outline-success {
    border-color: #006633;
    color: #006633;
}

.btn-outline-success:hover {
    background-color: #006633;
    border-color: #006633;
}

.btn-success {
    background-color: #006633;
    border-color: #006633;
}

.btn-success:hover {
    background-color: #00994d;
    border-color: #00994d;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0;
    }

    .profile-img {
        width: 200px;
        height: 200px;
    }

    .slogan-badge {
        font-size: 1rem;
        padding: 8px 20px;
    }
}
