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

        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            color: #333;
            scroll-behavior: smooth;
        }

        /* Header & Navigation */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: #F4EDE3;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 5%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #2c3e50;
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: #3498db;
        }

        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: #333;
            transition: all 0.3s ease;
        }

        /* Main Content */
        main {
            margin-top: 80px;
        }

        section {
            padding: 4rem 5%;
        }

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

        h1, h2 {
            font-family: Raleway;
            color: #2c3e50;
            margin-bottom: 2rem;
        }

        h1 {
            font-size: 2.5rem;
            font-weight: 700;
        }

        h2 {
            font-size: 2rem;
            font-weight: 600;
        }

        p {
            margin-bottom: 1.5rem;
            font-size: 1rem;
        }

        /* About Section */
        .about {
            background: #fff;
        }

        .about-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: left;

        }

        /* Abonnements Section */
        .abonnements {
            background: #3A5F7D;
        }

        .abonnements-content {
            text-align: center;
            color: #fff;
        }
          .abonnements-content h2 {
            color: #fff;
        }

        .plans-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .plan-card {
            background: #fff;
            border: 2px solid #e9ecef;
            border-radius: 10px;
            padding: 2.5rem 2rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .plan-card:hover {
            border-color: #3498db;
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .plan-card.featured {
            border-color: #3498db;
            background: #f8f9ff;
        }

        .plan-name {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #2c3e50;
        }

        .plan-price {
            font-size: 2.5rem;
            font-weight: 700;
            color: #3A5F7D;
            margin-bottom: 1rem;
        }

        .plan-price span {
            font-size: 1rem;
            color: #666;
            font-weight: 400;
        }

        .plan-features {
            list-style: none;
            margin: 2rem 0;
            text-align: left;
             color: #666;
        }

        .plan-features li {
            padding: 0.5rem 0;
            border-bottom: 1px solid #e9ecef;
        }

       .plan-features li.zero:before {
            content: "✗";
            color: #e74c3c;
        }

        .plan-features li:before {
            content: "✓";
            color: #27ae60;
            font-weight: bold;
            margin-right: 10px;
        }

     

        .plan-button {
            display: inline-block;
            padding: 1rem 2rem;
            background: #3498db;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 500;
            transition: background-color 0.3s ease;
            margin-top: 1rem;
        }

        .plan-button:hover {
            background: #2980b9;
        }

        .plan-card.featured .plan-button {
            background: #e74c3c;
        }

        .plan-card.featured .plan-button:hover {
            background: #c0392b;
        }

        /* Privacy Policy Section */
        .privacy {
            background: #f8f9fa;
        }

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

        .privacy h3 {
            color: #2c3e50;
            margin-top: 2rem;
            margin-bottom: 1rem;
            font-size: 1.3rem;
            font-weight: 600;
        }

        .privacy h3:first-of-type {
            margin-top: 0;
        }

       /* Contact Section */
        .contact {
            background: #fff;
        }

        .contact-content {
            max-width: 600px;
            margin: 2rem auto 0;
        }

        .contact-form {
            padding: 2rem;
            border: 2px solid #e9ecef;
            border-radius: 10px;
        }

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

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: #2c3e50;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: 'Roboto', sans-serif;
            font-size: 1rem;
        }

        .form-group textarea {
            height: 120px;
            resize: vertical;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #3498db;
        }

        .submit-button {
            background: #3498db;
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 500;
            transition: background-color 0.3s ease;
        }

        .submit-button:hover {
            background: #2980b9;
        }

          /* Footer */
        footer {
            background: #F4EDE3;
            color: #333;
            padding: 3rem 0 0 0;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            color: #333;
            margin-bottom: 1rem;
            font-size: 1.2rem;
            font-weight: 600;
        }

        .footer-section p {
            margin-bottom: 0.5rem;
            color: #333;
            line-height: 1.6;
        }

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

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

        .footer-links a {
            color: #333;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #3498db;
        }
/*
        .social-links {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .social-links a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .social-links a:hover {
            color: #3498db;
        }
        */

        .footer-bottom {
            border-top: 1px solid #34495e;
            padding: 1.5rem 0;
            text-align: center;
        }

        .footer-bottom p {
            color: #333;
            margin: 0;
        }
   /* General Conditions */
        .general-conditions {
            max-width: 800px;
            margin: 3rem auto 0;
            text-align: left;
            padding: 2rem;
            background: #F4EDE3;
            border-radius: 10px;
        }

        .general-conditions h3 {
            color: #333;
            text-align: center;
            margin-bottom: 1rem;
            font-size: 1.3rem;
            font-weight: 600;
        }

        .general-conditions ul li {
            color: #333;
            font-size: 0.9rem;
            line-height: 1.6;
            margin: 0;
        }


        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: #fff;
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                padding-top: 2rem;
                transition: left 0.3s ease;
                box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            }

            .nav-links.active {
                left: 0;
            }

            .menu-toggle {
                display: flex;
            }

            .menu-toggle.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }

            .menu-toggle.active span:nth-child(2) {
                opacity: 0;
            }

            .menu-toggle.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -6px);
            }

            section {
                padding: 2rem 5%;
            }

            h1 {
                font-size: 2rem;
            }

            h2 {
                font-size: 1.7rem;
            }

            .plans-container {
                grid-template-columns: 1fr;
            }

            .plan-card.featured {
                order: -1;
            }
        }

        @media (max-width: 480px) {
            nav {
                padding: 1rem 3%;
            }

            section {
                padding: 2rem 3%;
            }

            h1 {
                font-size: 1.8rem;
            }

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