/* CTA Section Styles */
.cta-section {
    background-color: #C09736;
    padding: 50px 0;
    width: 100%;
    min-height: 204px;
    display: flex;
    align-items: center;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
}

.cta-logo {
    flex-shrink: 0;
}

.cta-logo img {
    width: 111px;
    height: 97px;
    object-fit: contain;
}

.cta-text {
    flex: 1;
    max-width: 752px;
}

.cta-text h2 {
    color: white;
    font-size: 38px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
    text-align: left;
    text-transform: uppercase;
    font-family: 'Cormorant Infant';
}

.cta-button {
    flex-shrink: 0;
}

.btn-cta {
    display: inline-block;
    background-color: white;
    color: #004923;
    padding: 20px 80px;
    border: 3px solid white;
    border-radius: 300px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    min-width: 165px;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 24px;
    margin-left: 110px;
}

.btn-cta:hover {
    background-color: transparent;
    color: white;
    border-color: white;
}

/* Responsive Design */

@media (max-width: 768px) {
    .cta-section {
        padding: 30px 0;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .cta-logo {
        order: 1;
    }
    
    .cta-logo img {
        width: 80px;
        height: 70px;
    }
    
    .cta-text {
        order: 2;
        max-width: 100%;
    }
    
    .cta-text h2 {
        font-size: 21px;
        text-align: center;
    }
    
    .cta-button {
        order: 3;
    }
    
    .btn-cta {
        padding: 14px 25px;
        font-size: 14px;
        min-width: 120px;
        height: 50px;
        margin: 0;
    }
}
