/* Styles généraux */
:root {
    --color-gold: #C69C4F;
    --color-blue: #0A3D62;
    --color-white: #FFFFFF;
    --color-beige: #F5F0E6;
    --color-green: #4A8072;
    --color-gray: #333333;
    --color-light-gray: #f0f0f0;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-secondary);
    color: var(--color-gray);
    line-height: 1.7;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-blue);
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.6rem;
    color: var(--color-gold);
}

h4 {
    font-size: 1.3rem;
    color: var(--color-blue);
}

p {
    margin-bottom: 1.2rem;
}

a {
    color: var(--color-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-gold);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: var(--font-primary);
}

.btn-primary {
    background-color: var(--color-gold);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: #b58c3f;
    color: var(--color-white);
}

.btn-secondary {
    background-color: var(--color-blue);
    color: var(--color-white);
}

.btn-secondary:hover {
    background-color: #082c47;
    color: var(--color-white);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
}

.btn-outline:hover {
    background-color: var(--color-gold);
    color: var(--color-white);
}

.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--color-gold);
}

.section-title p {
    max-width: 700px;
    margin: 0 auto;
}

/* Header */
header {
    background-color: var(--color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo img {
    height: 50px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    position: relative;
    margin-right: 1.5rem;
}

nav ul li a {
    font-family: var(--font-primary);
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

.contact-info {
    display: flex;
    align-items: center;
}

.phone {
    margin-right: 1.5rem;
    font-weight: 600;
}

.phone i {
    color: var(--color-gold);
    margin-right: 0.5rem;
}

.dropdown-li {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 1.5rem;
    min-width: 700px;
    display: flex;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.dropdown-li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-column {
    flex: 1;
    padding: 0 1rem;
}

.dropdown-column h4 {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-gold);
}

.dropdown-column ul {
    display: block;
}

.dropdown-column ul li {
    margin-bottom: 0.8rem;
    margin-right: 0;
}

.dropdown-column ul li a {
    display: flex;
    align-items: center;
    font-weight: normal;
}

.dropdown-column ul li a i {
    margin-right: 0.5rem;
    color: var(--color-gold);
}

.dropdown-arrow {
    font-size: 0.8rem;
    margin-left: 0.3rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-blue);
    margin: 5px 0;
    transition: all 0.3s ease;
}

@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: block;
    }

    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--color-white);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        padding: 2rem;
        transition: left 0.3s ease;
        overflow-y: auto;
        z-index: 1001;
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0.5rem 0 0.5rem 1rem;
        min-width: auto;
        display: none;
    }

    .dropdown-li.active .dropdown-menu {
        display: block;
    }

    .dropdown-column {
        padding: 0;
    }

    .contact-info {
        display: none;
    }
}

/* Hero Section */
.hero {
    background-color: var(--color-blue);
    color: var(--color-white);
    padding: 5rem 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Services Section */
.services-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background-color: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.service-card-content {
    padding: 1.5rem;
}

.service-card-content h3 {
    margin-bottom: 1rem;
}

.service-card-content p {
    margin-bottom: 1.5rem;
}

/* Features */
.feature {
    text-align: center;
    padding: 2rem;
    background-color: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Testimonials */
.testimonials {
    background-color: var(--color-beige);
}

.testimonial {
    background-color: var(--color-white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 0 auto;
    max-width: 800px;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
}

.testimonial-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author-info h4 {
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.testimonial-author-info p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #666;
}

.testimonial-img {
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
}

.testimonial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Blog Cards */
.blog-card {
    background-color: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.blog-card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card-date {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.8rem;
}

.blog-card-content h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.blog-card-content p {
    margin-bottom: 1.5rem;
}

/* Contact Section */
.contact {
    background-color: var(--color-beige);
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 2fr;
    }
}

.contact-info-block {
    background-color: var(--color-blue);
    color: var(--color-white);
    padding: 2rem;
    border-radius: 8px;
}

.contact-info-block h3 {
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.contact-info-block p {
    margin-bottom: 1rem;
}

.contact-info-block p i {
    color: var(--color-gold);
    margin-right: 0.8rem;
    width: 20px;
    text-align: center;
}

.contact-info-block a {
    color: var(--color-white);
}

.contact-info-block a:hover {
    color: var(--color-gold);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--color-white);
    color: var(--color-blue);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--color-gold);
    color: var(--color-white);
}

.contact-form-block {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form-block h3 {
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-secondary);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-gold);
}

.rgpd-group {
    display: flex;
    align-items: flex-start;
}

.rgpd-group input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.rgpd-group label {
    font-size: 0.9rem;
    font-weight: normal;
}

/* Footer */
footer {
    background-color: #f5f5f5;
    padding: 4rem 0 2rem;
    color: var(--color-gray);
}

.footer-grid {
    display: grid;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-about h4,
.footer-links h4,
.footer-contact h4 {
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-contact p {
    margin-bottom: 0.8rem;
}

.footer-contact p i {
    color: var(--color-gold);
    margin-right: 0.8rem;
    width: 20px;
    text-align: center;
}

.social-icons-footer {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icons-footer a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--color-blue);
    color: var(--color-white);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons-footer a:hover {
    background-color: var(--color-gold);
}

.footer-legal {
    border-top: 1px solid #ddd;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
}

.footer-legal p {
    margin-bottom: 0.5rem;
}

.footer-legal a {
    margin: 0 0.5rem;
}

/* Animation on scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Styles pour la FAQ */
.faq {
    background-color: var(--color-white);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-gold);
}

.faq-category h3 {
    color: var(--color-blue);
    font-size: 1.4rem;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 1.2rem;
    background-color: #f9f9f9;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
    color: var(--color-blue);
    flex: 1;
}

.faq-toggle {
    color: var(--color-gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.2rem;
    max-height: 1000px;
}

.faq-answer p {
    margin-bottom: 1rem;
}

.faq-answer ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

/* Styles pour le footer coloré */
.footer-colored {
    background-color: var(--color-blue);
    color: var(--color-white);
    padding: 0;
}

.footer-main {
    padding: 4rem 0 2rem;
}

.footer-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.footer-brand {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1.5rem;
}

.footer-links-section {
    flex: 1;
    min-width: 200px;
}

.footer-contact-section {
    flex: 1;
    min-width: 250px;
}

.footer-links-section h4,
.footer-contact-section h4,
.footer-brand h4 {
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a,
.footer-contact-link {
    color: var(--color-white);
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact-link:hover {
    color: var(--color-gold);
}

.footer-contact-section p {
    margin-bottom: 0.8rem;
}

.footer-contact-section p i {
    color: var(--color-gold);
    margin-right: 0.8rem;
    width: 20px;
    text-align: center;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
}

.footer-bottom-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-legal-links a {
    color: var(--color-white);
    font-size: 0.9rem;
}

.footer-legal-links a:hover {
    color: var(--color-gold);
}

@media (max-width: 768px) {
    .footer-flex {
        flex-direction: column;
    }
    
    .footer-bottom-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal-links {
        justify-content: center;
        margin-top: 1rem;
    }
}

/* Styles pour les formulaires en carte */
.form-card {
    background-color: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 2rem;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }
}

.form-col {
    flex: 1;
}

/* Styles pour la section newsletter premium */
.newsletter-premium {
    background-color: var(--color-beige);
    padding: 5rem 0;
}

.newsletter-card {
    background-color: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.newsletter-content {
    padding: 3rem;
    text-align: center;
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    background-color: var(--color-gold);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(198, 156, 79, 0.3);
}

.newsletter-premium h2 {
    color: var(--color-blue);
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

.newsletter-premium p {
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form-premium {
    margin-bottom: 2rem;
}

.newsletter-form-group {
    display: flex;
    max-width: 500px;
    margin: 0 auto 1rem;
    position: relative;
}

.newsletter-form-group input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid #eee;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-form-group input:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(198, 156, 79, 0.1);
}

.newsletter-form-group button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    border-radius: 50px;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.newsletter-form-group button:hover {
    transform: translateX(3px);
}

.newsletter-privacy {
    margin-bottom: 1.5rem;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #666;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: #ddd;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--color-gold);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text a {
    color: var(--color-blue);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.checkbox-text a:hover {
    color: var(--color-gold);
}

.newsletter-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.benefit-item i {
    color: var(--color-gold);
    font-size: 1.2rem;
}

.benefit-item span {
    font-weight: 600;
    color: var(--color-blue);
}

@media (max-width: 768px) {
    .newsletter-content {
        padding: 2rem;
    }
    
    .newsletter-form-group {
        flex-direction: column;
    }
    
    .newsletter-form-group button {
        position: relative;
        right: auto;
        top: auto;
        bottom: auto;
        width: 100%;
        margin-top: 1rem;
    }
    
    .newsletter-benefits {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* Styles pour les formulaires en carte */
.form-card {
    background-color: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 2rem;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }
}

.form-col {
    flex: 1;
}

/* Styles pour les grilles tarifaires */
.tarifs-section {
    padding: 4rem 0;
    background-color: var(--color-beige);
}

.tarifs-container {
    max-width: 900px;
    margin: 0 auto;
}

.tarifs-grid {
    display: grid;
    gap: 3rem;
    margin-top: 2rem;
}

@media (min-width: 992px) {
    .tarifs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tarifs-card {
    background-color: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tarifs-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.tarifs-card-header {
    background-color: var(--color-blue);
    color: var(--color-white);
    padding: 1.5rem;
    text-align: center;
}

.tarifs-card-header h3 {
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.tarifs-card-header p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.tarifs-card-body {
    padding: 1.5rem;
}

.tarifs-image {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 1.5rem;
}

.tarifs-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.tarifs-table th,
.tarifs-table td {
    padding: 0.8rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.tarifs-table th {
    background-color: #f9f9f9;
    font-weight: 600;
    color: var(--color-blue);
}

.tarifs-table tr:last-child td {
    border-bottom: none;
}

.tarifs-note {
    font-size: 0.85rem;
    color: #666;
    margin-top: 1rem;
}

.tarifs-icon {
    width: 40px;
    height: 40px;
    margin-right: 1rem;
    vertical-align: middle;
}

/* Styles pour la version responsive des tableaux */
@media (max-width: 768px) {
    .tarifs-table {
        display: block;
        overflow-x: auto;
    }
    
    .tarifs-image {
        max-width: 100%;
    }
}

/* Ajout aux styles existants */

/* Styles pour les chiffres du processus */
.process-step-number {
    width: 40px;
    height: 40px;
    background-color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--color-gold);
    font-size: 1.6rem;
    font-family: var(--font-primary);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}
