.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #166534 0%, #15803d 100%);
    color: #fff;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-description {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background-color: #4ade80;
    color: #166534;
}

.cta-btn.primary:hover {
    background-color: #22c55e;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(74, 222, 128, 0.3);
}

.cta-btn.secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cta-btn.secondary:hover {
    background-color: #fff;
    color: #166534;
}

.cta-content-short {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-title-short {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.cta-btn-short {
    padding: 12px 30px;
    background-color: #4ade80;
    color: #166534;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-btn-short:hover {
    background-color: #22c55e;
    transform: translateY(-2px);
}

.cta-contact {
    padding: 40px 0;
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 28px;
    }
    
    .cta-description {
        font-size: 16px;
    }
    
    .cta-content-short {
        flex-direction: column;
        gap: 20px;
    }
    
    .cta-title-short {
        font-size: 20px;
        text-align: center;
    }
}
