:root {
            --primary-color: #f75d59;
            --secondary-color: #2e3192;
            --accent-color: #ffb700;
            --text-color: #2c3e50;
            --background-color: #ecf0f1;
            --dark-color: #1e2531;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            margin: 0;
            padding: 0;
            line-height: 1.6;
            background-color: var(--background-color);
            color: var(--text-color);
            overflow-x: hidden;
        }

        h1, h2, h3 {
            color: var(--secondary-color);
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(90deg, var(--secondary-color) 0%, var(--dark-color) 100%);
            color: #fff;
            padding: 15px 0;
            z-index: 1000;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8em;
            font-weight: bold;
            color: var(--primary-color);
            text-decoration: none;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .main-nav ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            gap: 25px;
        }

        .main-nav a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease, text-shadow 0.3s ease;
            position: relative;
        }
        
        .main-nav a:hover {
            color: var(--primary-color);
            text-shadow: 0 0 5px rgba(247, 93, 89, 0.8);
        }

        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .burger-menu span {
            width: 25px;
            height: 3px;
            background-color: #fff;
            transition: all 0.3s ease;
        }
        
        main {
            padding-top: 80px;
            min-height: calc(100vh - 250px);
        }
        
        section {
            padding: 60px 0;
        }
        
        .content-section {
            background-color: #fff;
            margin: 40px 0;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            padding: 40px;
        }
        
        .content-section h1 {
            text-align: center;
            font-size: 2.5em;
            margin-bottom: 30px;
        }

        .content-section ol {
            padding-left: 20px;
        }
        
        .content-section li {
            margin-bottom: 20px;
        }

        .content-section h3 {
            color: var(--primary-color);
        }
        
        .disclaimer {
            background-color: var(--dark-color);
            color: #ccc;
            padding: 20px;
            text-align: center;
            font-size: 0.9em;
            border-top: 1px solid #333;
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            color: #fff;
            padding: 15px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            z-index: 1500;
            font-size: 0.9em;
            transform: translateY(100%);
            transition: transform 0.5s ease-in-out;
        }

        .cookie-banner.show {
            transform: translateY(0);
        }

        .cookie-banner a {
            color: var(--primary-color);
            text-decoration: underline;
        }

        .cookie-banner button {
            background-color: var(--primary-color);
            color: #fff;
            border: none;
            padding: 8px 15px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
        }
        
        footer {
            background-color: var(--secondary-color);
            color: #fff;
            padding: 40px 0;
            text-align: center;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            gap: 20px;
        }

        .footer-nav a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-nav a:hover {
            color: var(--primary-color);
        }

        .contact-info {
            text-align: right;
            font-size: 0.9em;
        }

        .contact-info p {
            margin: 5px 0;
        }

        .contact-info p a {
            color: inherit;
            text-decoration: none;
        }

        @media (max-width: 768px) {
            .main-nav {
                position: fixed;
                top: 0;
                left: -100%;
                width: 70%;
                height: 100%;
                background-color: var(--dark-color);
                padding-top: 80px;
                transition: left 0.5s ease;
            }

            .main-nav.active {
                left: 0;
            }

            .main-nav ul {
                flex-direction: column;
                align-items: flex-start;
                padding-left: 20px;
            }

            .main-nav li {
                width: 100%;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .main-nav a {
                display: block;
                padding: 15px 0;
            }

            .burger-menu {
                display: flex;
            }

            .burger-menu.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
            .burger-menu.active span:nth-child(2) { opacity: 0; }
            .burger-menu.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
            
            .footer-content {
                flex-direction: column;
                gap: 20px;
            }
            
            .contact-info, .footer-nav {
                text-align: center;
            }
        }

