/* CTA Section Styles */
.cta-section {
    background-color: #eff2f6;
}

.cta-image {
    border-radius: 15px;
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
}

.cta-title {
    font-size: 2.5em;
    font-weight: 600;
    color: #1a1a1a;
}

.cta-description {
    font-size: 1.125em;
    line-height: 1.6;
    color: #666666;
}


.cta-benefit-item {
    margin-bottom: 7px;
}

.cta-benefit-flex {
    display: flex;
    align-items: flex-start;
}

.cta-benefit-icon {
    width: 20px;
    height: 28px;
    flex-shrink: 0;
    color: #5a4522;
    margin-right: 12px;
}

.cta-benefit-text {
    color: #1a1a1a;
    font-size: 1em;
}

.cta-link {
    font-size: 0.875em;
    font-weight: 600;
    color: #5a4522;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
}

.cta-link:hover {
    color: #3d2f17;
    text-decoration: none;
    transform: translateX(5px);
}

.cta-link span {
    display: inline-block;
    transition: transform 0.3s ease;
    margin-left: 5px;
}

.cta-link:hover span {
    transform: translateX(3px);
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .cta-title {
        font-size: 2em;
    }

    .cta-description {
        font-size: 1em;
    }
}


