.fcta-1401-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.fcta-1401-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.fcta-1401-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.fcta-1401-eyebrow {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 500;
}

.fcta-1401-heading {
    font-size: 48px;
    line-height: 1.2;
    margin: 0 0 25px 0;
}

.fcta-1401-body {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.fcta-1401-reassurance {
    font-size: 15px;
    font-style: italic;
    opacity: 0.8;
    margin-bottom: 40px;
}

.fcta-1401-buttons {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: inherit; /* inherit from container alignment */
}

/* Specific alignment handling for buttons */
.fcta-1401-content[style*="text-align: center"] .fcta-1401-buttons {
    justify-content: center;
}
.fcta-1401-content[style*="text-align: right"] .fcta-1401-buttons {
    justify-content: flex-end;
}
.fcta-1401-content[style*="text-align: left"] .fcta-1401-buttons {
    justify-content: flex-start;
}

.fcta-1401-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.fcta-1401-btn-primary:hover {
    filter: brightness(0.9);
}

.fcta-1401-btn-secondary {
    border: 1px solid;
}

.fcta-1401-btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

@media (max-width: 767px) {
    .fcta-1401-heading {
        font-size: 36px;
    }
    
    .fcta-1401-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .fcta-1401-btn {
        width: 100%;
    }
}