/* CTA Section Template Background */
.cta-section {
    position: relative;
    padding: 6rem 0;
    text-align: center;
    overflow: hidden;
}

.cta-section .template-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/template.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 1;
}

.cta-section .template-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 139, 0.8) 0%, rgba(210, 105, 30, 0.6) 100%);
    backdrop-filter: blur(2px);
    z-index: 2;
}

.cta-section .container {
    position: relative;
    z-index: 3;
}