/* .chilume-benefits-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 100px;
}

.chilume-benefits-header {
    text-align: center;
    margin-bottom: 40px;
}

.chilume-subtitle {
    color: #E86343;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

.chilume-title {
    color: #2A4365;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.chilume-description {
    color: #4A5568;
    font-size: 16px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.chilume-benefits-row {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    gap: 40px;
}

.chilume-benefits-row.reverse {
    flex-direction: row-reverse;
}

.chilume-image-container {
    flex: 0 0 45%;
}

.chilume-image {
    max-width: 100%;
    height: auto;
}

.chilume-benefits-content {
    flex: 0 0 55%;
}

.chilume-benefit-item {
    margin-bottom: 40px;
}

.chilume-benefit-item:last-child {
    margin-bottom: 0;
}

.chilume-benefit-title {
    color: #2A4365;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.chilume-benefit-description {
    color: #4A5568;
    font-size: 16px;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .chilume-benefits-row {
        flex-direction: column-reverse;
        margin-bottom: 60px;
    }
    
    .chilume-benefits-row.reverse {
        flex-direction: column-reverse;
    }
    
    .chilume-image-container, .chilume-benefits-content {
        flex: 0 0 100%;
        width: 100%;
    }
    
    .chilume-image-container {
        margin-bottom: 20px;
        text-align: center;
    }
    
    .chilume-image {
        max-width: 80%;
    }
    
    .chilume-benefit-item {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .chilume-benefit-title {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .chilume-benefits-section {
        padding: 40px 15px;
    }
    
    .chilume-image {
        max-width: 100%;
    }
    
    .chilume-benefits-header {
        margin-bottom: 30px;
    }
    
    .chilume-subtitle {
        font-size: 16px;
    }
    
    .chilume-title {
        font-size: 28px;
    }
    
    .chilume-benefit-title {
        font-size: 20px;
    }
} */

.chilume-benefits-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 60px; /* Increased padding on sides */
}

.chilume-benefits-header {
    text-align: center;
    margin-bottom: 70px; /* Increased bottom margin */
}

.chilume-subtitle {
    color: #E86343;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

.chilume-title {
    color: #2A4365;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px; /* Increased spacing */
}

.chilume-description {
    color: #4A5568;
    font-size: 16px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.chilume-benefits-row {
    display: flex;
    align-items: center;
    margin-bottom: 0px; /* Increased spacing between rows */
    gap: 60px; /* Increased gap between image and content */
}

.chilume-benefits-row:last-child {
    margin-bottom: 20px; /* Less margin for the last row */
}

.chilume-benefits-row.reverse {
    flex-direction: row-reverse;
}

.chilume-image-container {
    flex: 0 0 40%; /* Adjusted width */
    display: flex;
    justify-content: center;
}

.chilume-image {
    max-width: 100%;
    height: auto;
}

.chilume-benefits-content {
    flex: 0 0 60%; /* Adjusted width for better text display */
    padding-right: 20px; /* Prevent text from getting cut */
}

.chilume-benefits-row.reverse .chilume-benefits-content {
    padding-right: 0;
    padding-left: 20px;
}

.chilume-benefit-item {
    margin-bottom: 40px;
}

.chilume-benefit-item:last-child {
    margin-bottom: 0;
}

.chilume-benefit-title {
    color: #2A4365;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.chilume-benefit-description {
    color: #4A5568;
    font-size: 16px;
    line-height: 1.6;
}

/* Make sure text is properly aligned */
.chilume-benefits-row .chilume-benefits-content {
    text-align: left;
}

.chilume-benefits-row.reverse .chilume-benefits-content {
    text-align: right;
}

/* Fix for the descriptions to always be readable */
.chilume-benefit-description {
    text-align: left;
}

@media (max-width: 1100px) {
    .chilume-benefits-section {
        padding: 60px 40px;
    }
}

@media (max-width: 992px) {
    .chilume-benefits-row {
        flex-direction: column;
        margin-bottom: 70px;
    }
    
    .chilume-benefits-row.reverse {
        flex-direction: column;
    }
    
    .chilume-image-container, .chilume-benefits-content {
        flex: 0 0 100%;
        width: 100%;
        padding-right: 0;
        padding-left: 0;
    }
    
    .chilume-image-container {
        margin-bottom: -40px;
        margin-top: -30px;
        text-align: center;
    }
    
    .chilume-image {
        max-width: 80%;
    }
    
    .chilume-benefits-row .chilume-benefits-content,
    .chilume-benefits-row.reverse .chilume-benefits-content {
        text-align: center;
    }
    
    .chilume-benefit-description {
        text-align: center;
    }
    
    .chilume-benefit-item {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .chilume-benefits-section {
        padding: 50px 30px;
    }
    
    .chilume-image {
        max-width: 100%;
    }
    
    .chilume-benefits-header {
        margin-bottom: 50px;
    }
    
    .chilume-subtitle {
        font-size: 16px;
    }
    
    .chilume-title {
        font-size: 28px;
    }
    
    .chilume-benefit-title {
        font-size: 20px;
        line-height: 1.4;
    }
}

@media (max-width: 576px) {
    .chilume-benefits-section {
        padding: 40px 20px;
    }
}
.join-cta-section {
    width: 100%;
    background-color: #FFEDE7;
    overflow: hidden;
    position: relative;
}

.join-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.join-cta-content {
    flex: 0 0 45%;
    padding-right: 20px;
}

.join-cta-heading {
    font-family: 'Arial', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #2D2D2D;
    line-height: 1.3;
    margin-bottom: 15px;
}

.join-cta-subtext {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    color: #4A4A4A;
    margin-bottom: 25px;
}

.join-cta-button {
    display: inline-block;
    background-color: #E86343;
    color: white;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.join-cta-button:hover {
    background-color: #D15538;
}

.join-cta-image-container {
    flex: 0 0 55%;
    display: flex;
    justify-content: flex-end;
}

.join-cta-image {
    max-width: 100%;
    height: auto;
}

@media (max-width: 992px) {
    .join-cta-container {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .join-cta-container {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }
    
    .join-cta-content {
        flex: 0 0 100%;
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .join-cta-image-container {
        flex: 0 0 100%;
        justify-content: center;
    }
    
    .join-cta-image {
        max-width: 90%;
    }
}

@media (max-width: 576px) {
    .join-cta-container {
        padding: 30px 20px;
    }
    
    .join-cta-heading {
        font-size: 28px;
    }
}