/* Campaign Menu Styling */
.navbar-nav .campaign-menu {
    min-width: 220px;
    padding: 10px 0;
}

.navbar-nav .campaign-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-nav .campaign-menu li:last-child {
    border-bottom: none;
}

.navbar-nav .campaign-menu li a {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    color: #333;
}

.navbar-nav .campaign-menu li a i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
    color: #264676;
    font-size: 16px;
}

.navbar-nav .campaign-menu li:hover a,
.navbar-nav .campaign-menu li.active a {
    background-color: #264676;
    color: #fff;
    padding-left: 25px;
}

.navbar-nav .campaign-menu li:hover a i,
.navbar-nav .campaign-menu li.active a i {
    color: #fff;
}

/* Campaign Pages Styling */
.campaign-overview-section {
    padding: 80px 0;
    margin-bottom: 0;
}

.campaign-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.campaign-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.campaign-card h3 {
    color: #264676;
    margin-bottom: 20px;
    font-weight: 600;
}

.campaign-card .text-content {
    line-height: 1.8;
    color: #555;
}

.campaign-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid #f0f0f0;
}

.campaign-stat-item {
    text-align: center;
}

.campaign-stat-item .stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #264676;
    display: block;
}

.campaign-stat-item .stat-label {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Promise Item Styling */
.promise-item {
    padding: 15px;
    border-left: 3px solid #264676;
    background: #f8f9fa;
    border-radius: 4px;
    margin-bottom: 15px;
}

.promise-item h5 {
    color: #264676;
    margin-bottom: 10px;
    font-weight: 600;
}

.promise-item h5 i {
    margin-right: 8px;
}

.promise-item p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .campaign-overview-section {
        padding: 40px 0;
    }
    
    .campaign-card {
        padding: 25px;
    }
    
    .campaign-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .campaign-stat-item {
        padding: 15px;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .campaign-stat-item:last-child {
        border-bottom: none;
    }
    
    .navbar-nav .campaign-menu {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .campaign-card {
        padding: 20px;
    }
    
    .campaign-stat-item .stat-number {
        font-size: 28px;
    }
    
    .promise-item {
        padding: 12px;
    }
}

/* Manifesto Page Specific Styles */
.manifesto-header {
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 30px;
}

.manifesto-content {
    padding: 20px 0;
    min-height: 200px;
}

.manifesto-content p {
    margin-bottom: 20px;
    text-align: justify;
}

.manifesto-content h1,
.manifesto-content h2,
.manifesto-content h3,
.manifesto-content h4 {
    color: #264676;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.manifesto-content h1 {
    font-size: 28px;
}

.manifesto-content h2 {
    font-size: 24px;
}

.manifesto-content h3 {
    font-size: 20px;
}

.manifesto-content h4 {
    font-size: 18px;
}

.manifesto-content ul,
.manifesto-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.manifesto-content li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.manifesto-content strong {
    color: #264676;
    font-weight: 600;
}

.manifesto-content blockquote {
    border-left: 4px solid #264676;
    padding-left: 20px;
    margin: 20px 0;
    font-style: italic;
    color: #666;
}

/* Ensure footer spacing - removed to prevent conflicts */

