.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.services-heading {
    text-align: center;
    color: #1f365c;
    font-size: 2.5rem;
    margin-bottom: 0px;
    font-weight: 600;
}

.service-card {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 0px;
}

.service-content {
    flex: 1;
}

.service-title {
    color: #1f365c;
    font-size: 1.8rem;
    margin-bottom: 0px;
    font-weight: 600;
}

.service-description {
    color: #333;
    margin-bottom: 0px;
    font-size: 1rem;
}

.service-image {
    flex: 1;
    max-width: 500px;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-card {
        flex-direction: column;
    }
    
    .service-image {
        order: -1;
        margin-bottom: 0px;
    }
}

.revenue-wrapper {
    width: 100%;
    background-color: #FFEDE7;
    ;
}

.revenue-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

.revenue-image {
    flex: 1;
    max-width: 45%;
}

.revenue-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.revenue-content {
    flex: 1;
    max-width: 55%;
}

.revenue-title {
    color: #1f365c;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.revenue-description {
    color: #333;
    margin-bottom: 20px;
    font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .revenue-section {
        flex-direction: column-reverse;
    }
    
    .revenue-image, .revenue-content {
        max-width: 100%;
    }
    
    .revenue-image {
        margin-top: 10px;
    }
}

/* .personal-wrapper {
    width: 100%;
    background-color: #f9f9f9;
} */

.personal-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

.personal-content {
    flex: 1;
    max-width: 45%;
}

.personal-title {
    color: #1f365c;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.personal-description {
    color: #333;
    margin-bottom: 20px;
    font-size: 1rem;
}

.personal-image {
    flex: 1;
    max-width: 55%;
}

.personal-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .personal-section {
        flex-direction: column;
    }
    
    .personal-content, .personal-image {
        max-width: 100%;
    }
    
    .personal-image {
        margin-top: 30px;
    }
}

.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;
    }
}