
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

       @font-face {
		  font-family: 'TitreSite';
		  src: url('../fonts/Oswald-VariableFont_wght.ttf') format('truetype');
		  font-weight: normal;
		  font-style: normal;
		  font-display: swap;
		}

        body {
		  line-height: 1.7;
		  font-weight: 400;
		  font-size: 1rem; 
		  color:#454545;
		  font-family:Open Sans, sans-serif;
        }
		
		h1, h2, h3, h4, h5,
		.h1, .h2, .h3, .h4, .h5 {
		  font-family: "TitreSite", sans-serif;
		  text-transform: uppercase; 
		}

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Top */
        .header-top {
            background: #fff;
            padding: 15px 0;
            border-bottom: 1px solid #e0e0e0;
        }

        .header-top-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .lang-switch {
            cursor: pointer;
            font-size: 24px;
        }

        .contact-info {
            display: flex;
            gap: 25px;
            font-size: 14px;
        }

        .contact-info a {
            color: #333;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .contact-info a:hover {
            color: #141146;
        }
		
		.slide4 {
			background-image: url(../images/slide4.jpg);
			background-size: cover;
			background-position: center;
		}

        /* Navigation */
        nav {
            background: #141146;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }

        .logo {
            color: #fff;
            font-size: 24px;
            font-weight: bold;
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-links a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s;
			text-transform:uppercase;
        }

        .nav-links a:hover {
            color: #93c5fd;
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 28px;
            cursor: pointer;
        }

        /* Breadcrumb */
        .breadcrumb {
            background: #f3f4f6;
            padding: 15px 0;
        }

        .breadcrumb-content {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
            font-size: 14px;
        }

        .breadcrumb-content a {
            color: #141146;
            text-decoration: none;
        }

        .breadcrumb-content a:hover {
            text-decoration: underline;
        }

        .breadcrumb-content span {
            color: #6b7280;
        }

        /* Page Header */
        .page-header {
           text-shadow: 1px 1px 2px black;
            color: #fff;
            padding: 60px 0;
            text-align: center;
        }

        .page-header h1 {
            font-size: 42px;
            margin-bottom: 15px;
        }

        .page-header p {
            font-size: 18px;
            opacity: 0.9;
        }

        /* Main Content */
        .main-content {
            padding: 60px 0;
        }

        /* Intro Section */
        .intro-section {
            max-width: 900px;
            margin: 0 auto 60px;
        }

        .intro-section h2 {
            font-size: 28px;
            color: #141146;
            margin-bottom: 25px;
        }

        .intro-section p {
            font-size: 17px;
            color: #4b5563;
            margin-bottom: 15px;
            line-height: 1.8;
        }

        .intro-highlights {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .highlight-item {
            display: flex;
            align-items: start;
            gap: 12px;
        }

        .highlight-icon {
            background: #141146;
            color: #fff;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-weight: bold;
        }

        .highlight-text {
            color: #1f2937;
            font-weight: 600;
        }

        /* Pricing Cards */
        .pricing-section {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .pricing-card {
            background: #fff;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 50px rgba(0,0,0,0.15);
        }

        .pricing-card.premium {
            position: relative;
        }

        .popular-badge {
            position: absolute;
            top: 20px;
            right: -35px;
            background: #10b981;
            color: #fff;
            padding: 5px 40px;
            transform: rotate(45deg);
            font-size: 12px;
            font-weight: bold;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }

        .pricing-header {
            background: linear-gradient(135deg, #141146 0%, #3b82f6 100%);
            color: #fff;
            padding: 30px;
            text-align: center;
        }

        .pricing-card.premium .pricing-header {
            background: linear-gradient(135deg, #028fcc 0%, #141146 100%);
        }

        .pricing-title {
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 10px;
			text-transform:uppercase;
        }

        .pricing-subtitle {
            font-size: 14px;
            opacity: 0.9;
        }

        .pricing-body {
            padding: 35px;
        }

        .pricing-section-title {
            font-size: 18px;
            color: #141146;
            font-weight: bold;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e5e7eb;
        }

        .pricing-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid #f3f4f6;
        }

        .pricing-item:last-child {
            border-bottom: none;
        }

        .pricing-duration {
            color: #4b5563;
            font-size: 15px;
        }

        .pricing-amount {
            font-size: 20px;
            font-weight: bold;
            color: #141146;
        }

        .pricing-monthly {
            margin-top: 30px;
        }

        .special-note {
            background: #eff6ff;
            border-left: 4px solid #141146;
            padding: 15px;
            margin-top: 20px;
            border-radius: 4px;
            font-size: 14px;
            color: #141146;
        }

        /* CTA Section */
        .cta-section {
            background: #eff6ff;
            border: 2px solid #93c5fd;
            padding: 40px;
            text-align: center;
            border-radius: 8px;
            margin-top: 60px;
        }

        .cta-section h2 {
            font-size: 28px;
            margin-bottom: 15px;
            color: #141146;
        }

        .cta-section p {
            color: #4b5563;
            margin-bottom: 20px;
        }

        .cta-button {
            display: inline-block;
            background: #141146;
            color: #fff;
            padding: 15px 40px;
            text-decoration: none;
            border-radius: 5px;
            font-size: 18px;
            transition: background 0.3s;
            margin: 10px;
        }

        .cta-button:hover {
            background: #141146;
        }

        .cta-button.secondary {
            background: #fff;
            color: #141146;
            border: 2px solid #141146;
        }

        .cta-button.secondary:hover {
            background: #f0f9ff;
        }

        /* Additional Info - SERVICE A LA CARTE */
        .additional-info {
            max-width: 900px;
            margin: 60px auto 0;
            background: #141146;
            padding: 30px;
        }

        .additional-info h3 {
            font-size: 22px;
            color: #fff;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        } 
		
		.additional-info h4 {
            font-size: 19px;
            color: #fff;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
			display: block;
        }
		
		.additional-info h4:after {
			content: "";
			display: block;
			height: 2px;
			width: 35px;
			background: #FFF;
		}
		

        .additional-info ul {
            list-style: none;
            padding: 0;
        }

        .additional-info li {
            padding: 10px 0;
            color: #fff;
            display: flex;
            align-items: start;
            gap: 10px;
        }

        .additional-info li:before {
            content: "✔";
            flex-shrink: 0;
        }
		
		/* Info complementaire */
		 .info-complementaire {
            max-width: 900px;
			margin: 50px auto;
			background: #f9fafb;
			padding: 40px;
			border-radius: 8px;
			border-left: 5px solid #141146;
        }
		
		.info-complementaire h3 {
            font-size: 22px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
			color:#000;
        } 
		.info-complementaire h3:before {
            content: "ⓘ";
            flex-shrink: 0;
        }
		
		.info-complementaire ul {
            list-style: none;
            padding: 0;
        }

        .info-complementaire li {
            padding: 10px 0;
            color: #000;
            display: flex;
            align-items: start;
            gap: 10px;
        }

        .info-complementaire li:before {
            content: "✔";
            flex-shrink: 0;
        }
        /* Footer */
        footer {
            background: #454545;
            color: #fff;
            padding: 40px 0 20px;
            margin-top: 80px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
        }

        .footer-section h3 {
            margin-bottom: 15px;
            color: #FFF;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 8px;
        }

        .footer-section a {
            color: #d1d5db;
            text-decoration: none;
        }

        .footer-section a:hover {
            color: #fff;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
			border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #9ca3af;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .pricing-section {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }

            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: #141146;
                padding: 20px;
                gap: 15px;
            }

            .nav-links.active {
                display: flex;
            }

            .contact-info {
                flex-direction: column;
                gap: 10px;
            }

            .page-header h1 {
                font-size: 32px;
            }

            .intro-section {
                padding: 25px;
            }

            .intro-highlights {
                grid-template-columns: 1fr;
            }

            .pricing-body {
                padding: 25px;
            }

            .cta-section {
                padding: 35px 25px;
            }

            .cta-section h3 {
                font-size: 24px;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .cta-button {
                width: 100%;
            }
        }
