.cta-block-container {
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: 40px 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-block-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.cta-block-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-block-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cta-block-image img:hover {
    transform: scale(1.05);
}

.cta-block-placeholder {
    background: #f0f0f0;
    border: 2px dashed #ccc;
    border-radius: 8px;
    padding: 60px 20px;
    text-align: center;
    color: #666;
    font-size: 18px;
}

.cta-block-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-block-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    opacity: 0.9;
}

/* Boutons */
.cta-block-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.cta-block-button {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.cta-block-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

/* Bouton téléphone spécifique */
.cta-block-phone {
    background-color: #28a745;
    color: #fff !important;
}

.cta-block-phone:hover {
    background-color: #218838;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-block-container {
        padding: 20px;
        margin: 20px 0;
    }
    .cta-block-inner {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    .cta-block-title {
        font-size: 24px;
    }
    .cta-block-description {
        font-size: 14px;
    }
    .cta-block-buttons {
        flex-direction: column;
        align-items: center;
    }
    .cta-block-button {
        width: 100%;
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .cta-block-container {
        padding: 15px;
        margin: 15px 0;
    }
    .cta-block-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    .cta-block-description {
        font-size: 14px;
        margin-bottom: 20px;
    }
}
