.cta-box {
    background-color: #eff6ff;
    border: 2px solid #bfdbfe;
    border-radius: 12px;
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}

.cta-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: #111827;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.125rem;
    color: #374151;
    margin: 0 0 1.5rem 0;
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background-color: #2563eb;
    color: white;
    padding: 1.5rem 3rem;
    font-size: 1.25rem;
    font-weight: bold;
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-button:hover {
    background-color: #1d4ed8;
    color: white;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-1px);
    text-decoration: none;
}

.cta-button:active {
    transform: translateY(0);
}

.cta-button:visited {
    color: white;
}

.phone-icon {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.cta-footer {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 1rem 0 0 0;
    line-height: 1.4;
}

/* Mobile responsiveness */
@media (max-width: 640px) {
    .cta-box {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 1.25rem 2rem;
        font-size: 1.125rem;
        white-space: normal;
        text-align: center;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .phone-icon {
        visibility: hidden;
    }
}