#cta {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #004a99 100%);
    color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

#cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.cta-buttons .btn {
    min-width: 240px;
}

.cta-buttons .btn-secondary {
    background-color: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--white);
}

.cta-buttons .btn-secondary:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.cta-contact {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.cta-contact a {
    color: var(--white);
    text-decoration: underline;
    font-weight: 600;
}

.cta-contact a:hover {
    color: var(--accent-green);
}

@media (max-width: 768px) {
    #cta {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
    
    .cta-subtitle {
        font-size: 18px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    #cta {
        padding: 50px 0;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-subtitle {
        font-size: 16px;
    }
    
    .cta-contact {
        font-size: 14px;
    }
}
