* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

.cta-container {
    background-color: #000;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.cta-text {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ff3a3a;
}

.cta-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, #ff3a3a 50%, #fff 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    color: #ff3a3a;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease, background-position 0.4s ease, color 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.cta-button:hover {
    background-position: left bottom;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}

.cta-button i {
    font-size: 1rem;
    color: inherit; /* inherits red/white color */
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px) scale(1.2);
}



.fa-envelope {
    font-size: 1rem;
}

/* Responsive styles */
@media (max-width: 768px) {
    .cta-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 15px 10px;
    }
    
    .cta-text {
        font-size: 1rem;
    }
}