/* Container Styling */
.campaign-section {
    padding: 80px 20px;
    background: #f9f9f9;
}

.campaign-header {
    max-width: 1100px;
    margin: 0 auto 50px auto;
    text-align: center;
}

.campaign-header h2 {
    font-size: 34px;
    color: #000;
    font-weight: bold;
    margin-bottom: 15px;
}

/* The Grid Logic - 4 Columns */
.campaign-grid {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Individual Card Styling */
.campaign-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #eeeeee;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    /* Force 4 columns on large screens */
    flex: 1 1 calc(25% - 20px); 
    box-sizing: border-box;
    transition: transform 0.3s ease;
}

.campaign-card:hover {
    transform: translateY(-5px);
}

.campaign-card h3 {
    color: #E9A42E;
    font-size: 18px;
    margin-bottom: 10px;
}

.campaign-card p {
    color: #444444;
    font-size: 14px;
    line-height: 1.6;
}

/* Responsive: 2 columns on Tablets */
@media (max-width: 992px) {
    .campaign-card {
        flex: 1 1 calc(50% - 20px);
    }
}

/* Responsive: 1 column on Mobile */
@media (max-width: 600px) {
    .campaign-card {
        flex: 1 1 100%;
    }
    .campaign-header h2 {
        font-size: 26px;
    }
}





/* About Section Split Section Container */
.campaign-split-section {
    padding: 80px 20px;
    background: #ffffff;
}

.split-container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center; /* Vertically centers the text with the image */
    gap: 50px;
}

/* Image Styling */
.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Content Styling */
.split-content {
    flex: 1;
}

.split-title {
    font-size: 32px;
    color: #000;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.split-text {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Button Styling */
.campaign-btn {
    display: inline-block;
    padding: 15px 35px;
    background-color: #E9A42E;
    color: #fff !important;
    text-decoration: none !important;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease;
    margin-top: 10px;
}

.campaign-btn:hover {
    background-color: #d39328;
    box-shadow: 0 4px 12px rgba(233, 164, 46, 0.3);
}

/* Responsive: Stack on Mobile */
@media (max-width: 992px) {
    .split-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .split-title {
        font-size: 26px;
    }
}



/* Container and Columns */
.faq-two-column {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.faq-column {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
}

/* The FAQ Card */
.faq-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    margin-bottom: 12px;
    border-radius: 4px;
    overflow: hidden;
}

/* The Question Bar */
.faq-question {
    padding: 18px 20px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    font-size: 16px;
    user-select: none;
}

/* The Circular Icon - Styled like your screenshot */
.faq-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    border: 1px solid #d1d9e0 !important;
    border-radius: 50% !important;
    font-size: 20px !important;
    font-family: monospace !important; /* Ensures the + and - look consistent */
    color: #333 !important;
    line-height: 0 !important;
    background: #fff;
}

/* Answer Area */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    transition: all 0.3s ease;
}

/* ACTIVE STATE Styling */
.faq-item.faq-active .faq-question {
    color: #E9A42E; /* Orange color from your screenshot */
}

.faq-item.faq-active .faq-icon {
    color: #333 !important;
    border-color: #d1d9e0 !important;
}

.faq-item.faq-active .faq-answer {
    max-height: 500px;
    padding: 10px 20px 20px 20px;
    border-top: 1px solid #f5f5f5;
}