:root {
            --primary-color: #4a5568;
            --secondary-color: #2d3748;
            --accent-color: #e8dcc6;
            --background-color: #b7c5d1;
            --white-color: #ffffff;
            --light-gray: #f8f9fa;
            --text-color: #4a5568;
            --text-light: #718096;
            --green-accent: #959f68;
            --red-accent: #b83c3c;
            --france-blue: #0055a4;
            --france-white: #ffffff;
            --france-red: #ef4135;
            --dark-blue-text: #415a78;
        }

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

        body {
            font-family: 'Georgia', serif;
            line-height: 1.6;
            color: var(--dark-blue-text);
            background-color: var(--background-color);
        }

       

        /* Main Content */
        .main-content {
            padding: 120px 2rem 4rem;
            max-width: 900px;
            margin: 0 auto;
            background-color: transparent;
            border-radius: 0;
            box-shadow: none;
            margin-top: 100px;
            margin-bottom: 4rem;
        }

        .page-header {
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 2px solid var(--accent-color);
        }

        .page-title {
            font-size: 2.5rem;
            color: var(--dark-blue-text);
            margin-bottom: 1rem;
            font-weight: normal;
        }

        .page-subtitle {
            color: var(--text-light);
            font-style: italic;
            font-size: 1.2rem;
        }

        .decorative-line {
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--france-blue) 0%, var(--france-blue) 33%, var(--france-white) 33%, var(--france-white) 66%, var(--france-red) 66%, var(--france-red) 100%);
            margin: 2rem auto;
            border-radius: 2px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        }

        .content-section {
            margin-bottom: 3rem;
        }

        .section-title {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--green-accent);
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--red-accent);
        }

        .content-text {
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            text-align: justify;
        }

        .highlight-box {
            background: linear-gradient(135deg, var(--light-gray) 0%, #e9ecef 100%);
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 4px solid var(--green-accent);
            margin: 1.5rem 0;
        }

        .contact-info {
            background: var(--light-gray);
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
        }

        .contact-info h3 {
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

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

        .rights-list {
            list-style: none;
            padding: 0;
        }

        .rights-list li {
            padding: 0.5rem 0;
            border-bottom: 1px dotted var(--text-light);
            position: relative;
            padding-left: 2rem;
        }

        .rights-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--green-accent);
            font-weight: bold;
        }

        .back-button {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, var(--green-accent) 0%, #959f68 100%);
            color: var(--white-color);
            padding: 1rem 2rem;
            border: none;
            border-radius: 25px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.4s ease;
            box-shadow: 0 4px 15px rgba(143, 168, 124, 0.25);
            margin-top: 2rem;
        }

        .back-button:hover {
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 8px 25px rgba(143, 168, 124, 0.35);
            background: linear-gradient(135deg, var(--red-accent) 0%, #a13434 100%);
        }

      

        /* Mobile Responsiveness */
        @media (max-width: 768px) {

            .main-content {
                margin: 80px 1rem 2rem;
                padding: 2rem 1.5rem;
            }

            .page-title {
                font-size: 2rem;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .content-text {
                text-align: left;
            }
        }

        @media (max-width: 480px) {
            .main-content {
                padding: 1.5rem 1rem;
            }

            .page-title {
                font-size: 1.8rem;
            }

            .section-title {
                font-size: 1.3rem;
            }
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }
