/* styles.css avec classes uniques - Design amélioré */

.content-page-body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
}

.content-page-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.content-page-header {
    background: #fde8dc;
    padding: 2rem;
    text-align: center;
    color: white;
}

.content-page-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #232323;
}

.content-page-subtitle {
    font-size: 1.1rem;
    margin: 0;
    color: #666;
}

.content-page-features-section {
    padding: 3rem 0;
    background-color: #f9f9f9;
}

.content-page-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #232323;
    font-weight: bold;
}

.content-page-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.content-page-feature-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    height: 350px;
    display: flex;
    flex-direction: column;
}

.content-page-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.content-page-feature-image-container {
    height: 200px;
    width: 100%;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #8332FF, #FF8BA7);
}

.content-page-feature-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.content-page-feature-card:hover .content-page-feature-icon {
    transform: scale(1.05);
}

.content-page-feature-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.content-page-feature-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #232323;
    font-weight: bold;
}

.content-page-feature-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

.content-page-categories-section {
    padding: 3rem 0;
    background-color: white;
}

.content-page-categories-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2B2B2B;
}

.content-page-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.content-page-category-card {
    background: white;
    border: 1px solid #DDDDDD;
    border-radius: 12px;
    text-align: center;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-page-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.content-page-category-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.content-page-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.content-page-category-card:hover .content-page-category-image img {
    transform: scale(1.1);
}

.content-page-category-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #2B2B2B;
}

.content-page-category-description {
    font-size: 1rem;
    color: #444444;
}

.content-page-footer {
    background-color: #8332FF;
    color: white;
    padding: 1rem 0;
    text-align: center;
}

.content-page-footer p {
    margin: 0;
    font-size: 0.9rem;
}

/* Presentation Section */
.content-page-presentation-section {
    padding: 5rem 0;
    background-color: #fff;
}

.content-page-presentation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-page-presentation-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #232323;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.content-page-presentation-description {
    font-size: 1.1rem;
    color: #444444;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.content-page-presentation-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.content-page-presentation-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #2B2B2B;
}

.content-page-presentation-list li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: #FF6B6B;
}

.content-page-presentation-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.content-page-presentation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Stats Section */
.content-page-stats-section {
    background: #fde8dc;
    padding: 4rem 0;
    color: #232323;
}

.content-page-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.content-page-stat-item {
    padding: 2rem;
}

.content-page-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.content-page-stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Testimonials Section */
.content-page-testimonials-section {
    padding: 5rem 0;
    background-color: #f9f9f9;
    position: relative;
}

.content-page-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.content-page-testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(131, 50, 255, 0.08);
    transition: transform 0.3s ease;
    position: relative;
}

.content-page-testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-size: 4rem;
    color: #FF6B6B;
    font-family: 'Playfair Display', serif;
    opacity: 0.2;
    line-height: 1;
}

.content-page-testimonial-card:hover {
    transform: translateY(-5px);
}

.content-page-testimonial-text {
    font-size: 1.1rem;
    color: #232323;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.content-page-testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(131, 50, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.content-page-author-name {
    font-weight: 600;
    color: #232323;
    font-size: 1.1rem;
    font-family: 'Playfair Display', serif;
}

.content-page-author-business {
    color: #FF6B6B;
    font-size: 0.95rem;
    margin-top: 0.2rem;
}

/* CTA Section */
.content-page-cta-section {
    padding: 3rem 0;
    text-align: center;
    background: rgba(255, 139, 167, 0.1);
}

.content-page-cta-title {
    font-size: 2.5rem;
    color: #2B2B2B;
    margin-bottom: 1rem;
    font-weight: 800;
}

.content-page-cta-description {
    font-size: 1.2rem;
    color: #444444;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.content-page-cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    background: #FF6B6B;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 115, 185, 0.4);
}

.content-page-cta-button:hover {
    background: #FF6B6B;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 115, 185, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-page-presentation-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .content-page-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .content-page-features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .content-page-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .content-page-presentation-title,
    .content-page-cta-title {
        font-size: 2rem;
    }

    .content-page-stat-number {
        font-size: 2rem;
    }

    .content-page-features-grid {
        grid-template-columns: 1fr;
    }

    .content-page-feature-card {
        height: 320px;
    }

    .content-page-feature-image-container {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .content-page-stats-grid {
        grid-template-columns: 1fr;
    }

    .content-page-presentation-list li {
        font-size: 1rem;
    }

    .content-page-feature-card {
        height: 300px;
    }

    .content-page-feature-image-container {
        height: 160px;
    }
}