/*
Theme Name: generatepress_child
Theme URI: https://monsite.fr
Description: Thème enfant GeneratePress
Author: Ton Nom
Template: generatepress
Version: 1.0
*/
    /* Styles personnalisés pour la page tarifs */
    .tarifs-page {
        background: linear-gradient(135deg, #f8f5f6 0%, #ffffff 100%);
        padding: 60px 20px;
        min-height: 100vh;
        width: 100%;
        max-width: 100%;
        clear: both;
        overflow-x: hidden;
    }
    
    /* Force le footer à bien se positionner */
    #page {
        overflow-x: hidden;
    }
    
    .site-content {
        width: 100%;
        max-width: 100%;
    }
    
    .tarifs-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .tarifs-header {
        text-align: center;
        margin-bottom: 50px;
        padding: 40px 20px;
        background: linear-gradient(135deg, #3f3244 0%, #9d8189 100%);
        border-radius: 20px;
        color: white;
        box-shadow: 0 10px 30px rgba(63, 50, 68, 0.2);
    }
    
    .tarifs-header h1 {
        font-size: 48px;
        margin-bottom: 15px;
        font-weight: 800;
        letter-spacing: -1px;
    }
    
    .tarifs-header p {
        font-size: 18px;
        opacity: 0.95;
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.6;
    }
    
    .tarifs-intro {
        text-align: center;
        margin-bottom: 60px;
        padding: 0 20px;
    }
    
    .tarifs-intro p {
        font-size: 16px;
        color: #3f3244;
        line-height: 1.8;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .categorie-section {
        margin-bottom: 60px;
        background: white;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(63, 50, 68, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .categorie-section:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(63, 50, 68, 0.15);
    }
    
    .categorie-header {
        background: linear-gradient(135deg, #9d8189 0%, #3f3244 100%);
        padding: 20px 40px;
        color: white;
    }
    
    .categorie-header h2 {
        font-size: 26px;
        margin: 0;
        font-weight: 700;
    }
    
    .categorie-content {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 40px;
        padding: 40px;
    }
    
    .categorie-image-placeholder {
        background: linear-gradient(135deg, #f8f5f6 0%, #e8e1e4 100%);
        border-radius: 15px;
        min-height: 300px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 15px;
        color: #9d8189;
        border: 2px dashed #9d8189;
        transition: all 0.3s ease;
    }
    
    .categorie-image-placeholder:hover {
        background: linear-gradient(135deg, #e8e1e4 0%, #d8d1d4 100%);
        border-color: #3f3244;
    }
    
    .categorie-image-placeholder svg {
        width: 60px;
        height: 60px;
        stroke: currentColor;
        stroke-width: 2;
        fill: none;
    }
    
    .categorie-image-placeholder span {
        font-size: 14px;
        font-weight: 500;
        text-align: center;
    }
    
    .prestations-liste {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .prestation-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        background: #f8f5f6;
        border-radius: 12px;
        transition: all 0.3s ease;
        border-left: 4px solid transparent;
    }
    
    .prestation-item:hover {
        background: #fff;
        border-left-color: #9d8189;
        transform: translateX(5px);
        box-shadow: 0 5px 15px rgba(63, 50, 68, 0.1);
    }
    
    .prestation-info {
        flex: 1;
    }
    
    .prestation-nom {
        font-size: 18px;
        font-weight: 600;
        color: #3f3244;
        margin-bottom: 5px;
    }
    
    .prestation-description {
        font-size: 14px;
        color: #9d8189;
        line-height: 1.5;
    }
    
    .prestation-prix {
        font-size: 24px;
        font-weight: 700;
        color: #3f3244;
        white-space: nowrap;
        margin-left: 20px;
    }
    
    .tarifs-footer {
        text-align: center;
        margin-top: 60px;
        padding: 40px 20px;
        background: white;
        border-radius: 20px;
        box-shadow: 0 5px 20px rgba(63, 50, 68, 0.08);
    }
    
    .tarifs-footer h3 {
        font-size: 28px;
        color: #3f3244;
        margin-bottom: 20px;
        font-weight: 700;
    }
    
    .tarifs-footer p {
        font-size: 16px;
        color: #9d8189;
        line-height: 1.8;
        margin-bottom: 30px;
    }
    
    .cta-devis {
        display: inline-block;
        padding: 18px 40px;
        background: linear-gradient(135deg, #3f3244 0%, #9d8189 100%);
        color: white;
        text-decoration: none;
        border-radius: 50px;
        font-size: 18px;
        font-weight: 600;
        transition: all 0.3s ease;
        box-shadow: 0 5px 20px rgba(63, 50, 68, 0.3);
    }
    
    .cta-devis:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(63, 50, 68, 0.4);
        color: white;
    }
    
    /* Responsive */
    @media (max-width: 768px) {
        .tarifs-header h1 {
            font-size: 32px;
        }
        
        .tarifs-header p {
            font-size: 16px;
        }
        
        .categorie-content {
            grid-template-columns: 1fr;
            padding: 25px;
            gap: 25px;
        }
        
        .categorie-header {
            padding: 15px 25px;
        }
        
        .categorie-header h2 {
            font-size: 22px;
        }
        
        .prestation-item {
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
        }
        
        .prestation-prix {
            margin-left: 0;
            font-size: 20px;
        }
    }

.content-text12 a {
    color: #5FBDE0!important;
    text-decoration: underline!important;
    transition: color 0.3s ease;
}

.content-text12 a:hover {
    color: #4a9dc4!important;
}
