
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Header */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-icon {
			width: 45px;
			height: 45px;
			background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
			border-radius: 8px;
			display: flex;
			align-items: center;
			justify-content: center;
			color: white;
			font-size: 1.4rem;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.1;
        }

        .logo-main {
            font-size: 1.8rem;
            font-weight: 700;
            color: #2c5530;
        }

        .logo-sub {
            font-size: 0.7rem;
            font-weight: 500;
            color: #4a7c59;
            letter-spacing: 0.5px;
        }

        /* Content */
        .cookies-content {
            background: white;
            margin: 100px auto 50px;
            padding: 50px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        h1 {
            color: #2c5530;
            text-align: center;
            margin-bottom: 40px;
            font-size: 2.5rem;
        }
        .section {
            margin-bottom: 40px;
        }
		.section p {
            margin-bottom: 15px;
            color: #555;
        }
        .section h2 {
            color: #4a7c59;
            margin: 30px 0 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e9ecef;
        }         
		.section h3 {
            color: #2c5530;
            margin: 20px 0 10px;
		}
		.section ul, ol {
            margin: 15px 0;
            padding-left: 30px;
        }
		.section li::before {
			content: "•"; 
			color: #4a7c59;
			display: inline-block; 
			width: 1em;
			margin-left: -1em;
			font-weight: bold;
		}
	
 
        .highlight-box {
            background: #f8f9fa;
            padding: 25px;
            border-radius: 8px;
            border-left: 4px solid #4a7c59;
            margin: 20px 0;
        }

        .info-box {
            background: #e8f4fd;
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid #3498db;
            margin: 15px 0;
        }
       .info-box h3 {
            color: #2c5530;
            margin: 20px 0 10px;
        }


		.info-box ul, ol {
			list-style: none;
			margin: 15px 0;
			padding-left: 30px;
		}
		.info-box li::before {
			content: "•"; 
			color: #4a7c59; /* Même couleur que les autres puces */
			display: inline-block; 
			width: 1em;
			margin-left: -1em; /* CHANGEMENT IMPORTANT : de 1em à -1em */
			font-weight: bold;
		}

        li {
            margin-bottom: 8px;
            color: #555;
        }
        .warning-box {
            background: #fef9e7;
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid #f1c40f;
            margin: 15px 0;
        }

        .cookie-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .cookie-table th,
        .cookie-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #e9ecef;
        }

        .cookie-table th {
            background: #4a7c59;
            color: white;
            font-weight: 600;
        }

        .cookie-table tr:last-child td {
            border-bottom: none;
        }

        .cookie-table tr:hover {
            background: #f8f9fa;
        }

        .cookie-type {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-right: 8px;
        }

        .type-necessary {
            background: #e8f5e8;
            color: #2c5530;
        }

        .type-preferences {
            background: #e8f4fd;
            color: #2980b9;
        }

        .type-analytics {
            background: #fef9e7;
            color: #f39c12;
        }

        .type-marketing {
            background: #fdedec;
            color: #e74c3c;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: #4a7c59;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            margin-top: 20px;
        }

        .btn:hover {
            background: #2c5530;
            transform: translateY(-2px);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid #4a7c59;
            color: #4a7c59;
            margin-left: 10px;
        }

        .btn-outline:hover {
            background: #4a7c59;
            color: white;
        }
		
/* Footer */


	.footer-links {
		list-style: none; /* Pas de puces dans le footer non plus */
	}

	.footer-links li {
		margin-bottom: 10px;
	}

	.footer-links a {
		color: #ccc;
		text-decoration: none;
		transition: var(--transition);
		opacity: 0.8;
	}

	.footer-links a:hover {
		opacity: 1;
		color: var(--secondary-color);
	}

	.copyright {
		text-align: center;
		padding-top: 20px;
		border-top: 1px solid rgba(255, 255, 255, 0.1);
		font-size: 0.9rem;
		opacity: 0.7;
	}


	@media (max-width: 768px) {
		.cookies-content {
			padding: 30px 20px;
			margin: 80px auto 30px;
		}

		h1 {
			font-size: 2rem;
		}

		.cookie-table {
			font-size: 0.9rem;
		}

		.cookie-table th,
		.cookie-table td {
			padding: 10px 8px;
		}

		.buttons {
			display: flex;
			flex-direction: column;
			gap: 10px;
		}

		.btn-outline {
			margin-left: 0;
		}
	}
