
        .container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .subtitle {
            font-size: 1.3rem;
            color: #555;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .content {
            display: flex;
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .info-box {
            flex: 1;
            background: rgba(255, 255, 255, 0.92);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease;
        }
        
        .info-box:hover {
            transform: translateY(-10px);
        }
        
        .info-box h2 {
            color: #1a2a6c;
            margin-bottom: 20px;
            font-size: 1.8rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .info-box h2 i {
            color: #b21f1f;
        }
        
        .info-box p {
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        
        .info-box ul {
            margin-left: 25px;
            margin-bottom: 20px;
        }
        
        .info-box ul li {
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        
        .highlight {
            background: #e3f2fd;
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid #1a2a6c;
            margin: 20px 0;
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(26, 42, 108, 0.95);
            color: white;
            padding: 25px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            z-index: 1000;
            box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
            transform: translateY(100%);
            transition: transform 0.5s ease;
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .banner-content {
            max-width: 800px;
            flex: 1;
        }
        
        .banner-content h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: #fff;
        }
        
        .banner-content p {
            font-size: 1.1rem;
            line-height: 1.5;
            color: #e0e0e0;
        }
        
        .banner-links {
            display: flex;
            gap: 15px;
            margin: 15px 0;
        }
        
        .banner-links a {
            color: #64b5f6;
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: color 0.3s;
        }
        
        .banner-links a:hover {
            color: #bbdefb;
            text-decoration: underline;
        }
        
        .banner-buttons {
            display: flex;
            gap: 15px;
        }
        
        .btn {
            padding: 14px 30px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .btn-accept {
            background: linear-gradient(135deg, #43cea2, #185a9d);
            color: white;
        }
        
        .btn-accept:hover {
            background: linear-gradient(135deg, #36b394, #134a80);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .btn-reject {
            background: rgba(255, 255, 255, 0.15);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.4);
        }
        
        .btn-reject:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .cookie-icon {
            font-size: 2rem;
            margin-right: 15px;
            color: #ffcc00;
        }
        
        .cookie-status {
            background: rgba(255, 255, 255, 0.92);
            border-radius: 10px;
            padding: 15px 25px;
            text-align: center;
            margin-top: 30px;
            font-size: 1.2rem;
            font-weight: 600;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .cookie-status.accepted {
            color: #43cea2;
            border: 2px solid #43cea2;
        }
        
        .cookie-status.rejected {
            color: #b21f1f;
            border: 2px solid #b21f1f;
        }
        
        @media (max-width: 768px) {
            .content {
                flex-direction: column;
            }
            
            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }
            
            .banner-links {
                justify-content: center;
            }
            
            .banner-buttons {
                width: 100%;
                justify-content: center;
            }