        :root {
            --primary: #097bc0;
            --primary-dark: #0a5a8a;
            --secondary: #2b4a72;
            --accent: #4fc3f7;
            --light: #fafbfc;
            --white: #ffffff;
            --text-dark: #1a2332;
            --text-light: #64748b;
            --border: #e2e8f0;
            --success: #10b981;
            --warning: #f59e0b;
            --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
            --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
            --radius: 12px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --header-offset: 72px;
        }

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

        html {
            scroll-behavior: smooth;
            scroll-padding-top: var(--header-offset);
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background: var(--light);
            overflow-x: hidden;
            padding-top: var(--header-offset);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* Page Header */
        .page-header {
            background: var(--gradient);
            color: white;
            padding: clamp(6rem, 15vw, 8rem) clamp(1rem, 4vw, 2rem) clamp(3rem, 10vw, 4rem);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .page-header::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }

        .page-header-content {
            max-width: clamp(320px, 90vw, 1200px);
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .page-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.2rem, 6vw, 3.2rem);
            font-weight: 700;
            margin-bottom: clamp(1rem, 3vw, 1.5rem);
            line-height: 1.2;
        }

        .page-subtitle {
            font-size: clamp(1.1rem, 2.5vw, 1.3rem);
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Main Content */
        .main-content {
            padding: clamp(3rem, 8vw, 6rem) 0;
            background: white;
        }

        .container {
            max-width: clamp(320px, 90vw, 1200px);
            margin: 0 auto;
            padding: 0 clamp(1rem, 3vw, 1.5rem);
        }

        /* Contact Grid */
        .contact-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: clamp(3rem, 8vw, 6rem);
            align-items: start;
        }

        /* Contact Form */
        .contact-form-section {
            background: white;
            border-radius: 20px;
            padding: clamp(2rem, 5vw, 3rem);
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--border);
        }

        .form-header {
            text-align: center;
            margin-bottom: clamp(2rem, 5vw, 2.5rem);
        }

        .form-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.8rem, 4vw, 2.2rem);
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .form-header p {
            color: var(--text-light);
            font-size: clamp(1rem, 2vw, 1.1rem);
        }

        .form-group {
            margin-bottom: clamp(1.2rem, 3vw, 1.5rem);
        }

        .form-label {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--text-dark);
            font-size: clamp(0.9rem, 2vw, 1rem);
        }

        .form-label i {
            color: var(--primary);
        }

        .form-input,
        .form-textarea,
        .form-select {
            width: 100%;
            padding: clamp(1rem, 2.5vw, 1.2rem);
            border: 2px solid var(--border);
            border-radius: var(--radius);
            font-size: clamp(0.9rem, 2vw, 1rem);
            transition: var(--transition);
            background: var(--light);
            font-family: 'Inter', sans-serif;
        }

        .form-input:focus,
        .form-textarea:focus,
        .form-select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(9, 123, 192, 0.1);
            background: white;
        }

        .form-textarea {
            min-height: clamp(120px, 25vw, 150px);
            resize: vertical;
        }

        .form-select {
            cursor: pointer;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: clamp(1rem, 2.5vw, 1.2rem) clamp(2rem, 4vw, 2.5rem);
            background: var(--gradient);
            color: white;
            border: none;
            border-radius: var(--radius);
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: var(--transition);
            font-size: clamp(1rem, 2vw, 1.1rem);
            width: 100%;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        .btn.loading {
            position: relative;
            color: transparent;
        }

        .btn.loading::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            top: 50%;
            left: 50%;
            margin-left: -10px;
            margin-top: -10px;
            border: 2px solid transparent;
            border-top-color: currentColor;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            color: white;
        }

        .gdpr-consent {
            font-size: 0.95rem;
            color: var(--text-dark);
        }

        .gdpr-consent label {
            display: flex;
            gap: 0.5rem;
            align-items: flex-start;
        }

        .gdpr-consent input {
            margin-top: 0.25rem;
        }

        /* Contact Info */
        .contact-info-section {
            display: flex;
            flex-direction: column;
            gap: clamp(2rem, 5vw, 3rem);
        }

        .info-card {
            background: white;
            border-radius: 20px;
            padding: clamp(2rem, 5vw, 2.5rem);
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--border);
            transition: var(--transition);
        }

        .info-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .info-card-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .info-icon {
            width: clamp(50px, 12vw, 60px);
            height: clamp(50px, 12vw, 60px);
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: clamp(1.2rem, 3vw, 1.5rem);
        }

        .info-card h3 {
            color: var(--primary);
            font-size: clamp(1.2rem, 2.8vw, 1.4rem);
            font-weight: 700;
        }

        .info-card p {
            color: var(--text-light);
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
            color: var(--text-dark);
        }

        .contact-item i {
            color: var(--primary);
            width: 20px;
            text-align: center;
        }

        .contact-item a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
        }

        .contact-item a:hover {
            color: var(--primary-dark);
        }

        /* Alert Messages */
        .alert {
            padding: 1rem 1.2rem;
            border-radius: var(--radius);
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
            border: 1px solid;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .alert-success {
            background: #f0fdf4;
            color: #166534;
            border-color: #bbf7d0;
        }

        .alert-error {
            background: #fef2f2;
            color: #991b1b;
            border-color: #fecaca;
        }

        .hidden {
            display: none !important;
        }

        .visually-hidden {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }

        /* Footer */
        footer {
            background: var(--text-dark);
            color: white;
            padding: clamp(2rem, 5vw, 3rem) clamp(1rem, 3vw, 1.5rem) clamp(1rem, 2vw, 1rem);
        }

        .footer-content {
            max-width: clamp(320px, 90vw, 1200px);
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(clamp(220px, 40vw, 250px), 1fr));
            gap: clamp(1.5rem, 4vw, 2rem);
        }

        .footer-section h3 {
            margin-bottom: clamp(0.8rem, 2vw, 1rem);
            color: var(--accent);
            font-size: clamp(1.1rem, 2.5vw, 1.2rem);
        }

        .footer-section p {
            margin-bottom: clamp(0.8rem, 2vw, 1rem);
            font-size: clamp(0.9rem, 2vw, 1rem);
            opacity: 0.9;
            line-height: 1.6;
            text-align: left;
        }

        .footer-section ul {
            list-style: none;
            padding-left: 0;
            margin: 0;
        }

        .footer-section li {
            margin-bottom: clamp(0.3rem, 1vw, 0.5rem);
        }

        .footer-section a {
            color: white;
            text-decoration: none;
            opacity: 0.8;
            transition: var(--transition);
            font-size: clamp(0.9rem, 2vw, 1rem);
            display: block;
            line-height: 1.5;
        }

        .footer-section a:hover {
            opacity: 1;
            color: var(--accent);
        }

        .footer-contact {
            margin-top: 1rem;
        }

        .footer-contact-link {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
        }

        .footer-meta {
            margin-top: 1rem;
            font-size: 0.9rem;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: clamp(1.5rem, 4vw, 2rem);
            padding-top: clamp(0.8rem, 2vw, 1rem);
            text-align: center;
            opacity: 0.6;
            font-size: clamp(0.8rem, 1.8vw, 0.9rem);
        }

        .footer-bottom p {
            margin: 0.2rem 0;
            text-align: center;
        }

        /* Cookie Banner & Modal */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(30, 41, 59, 0.98);
            color: white;
            padding: clamp(1rem, 3vw, 1.5rem);
            z-index: 10000;
            backdrop-filter: blur(15px);
            border-top: 2px solid #097bc0;
            transform: translateY(100%);
            transition: transform 0.4s ease;
            box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
        }

        .cookie-banner.show {
            transform: translateY(0);
        }

        .cookie-content {
            max-width: clamp(320px, 90vw, 1200px);
            margin: 0 auto;
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: clamp(1rem, 3vw, 2rem);
        }

        .cookie-message {
            flex: 1;
            min-width: 0;
        }

        .cookie-title {
            color: #4fc3f7;
            margin: 0 0 0.5rem 0;
            font-size: clamp(1rem, 2.2vw, 1.1rem);
            font-weight: 600;
        }

        .cookie-message p {
            margin: 0;
            font-size: clamp(0.85rem, 1.8vw, 0.95rem);
            line-height: 1.6;
            color: rgba(255,255,255,0.9);
        }

        .cookie-message a {
            color: #4fc3f7;
            text-decoration: underline;
            transition: color 0.3s ease;
        }

        .cookie-message a:hover {
            color: #097bc0;
        }

        .cookie-actions {
            display: flex;
            gap: clamp(0.5rem, 1.2vw, 0.7rem);
            flex-shrink: 0;
        }

        .cookie-btn {
            padding: clamp(0.6rem, 1.5vw, 0.8rem) clamp(0.8rem, 2vw, 1rem);
            border-radius: 8px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
            font-size: clamp(0.8rem, 1.6vw, 0.85rem);
            border: none;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }

        .cookie-accept {
            background: #097bc0;
            color: white;
        }

        .cookie-accept:hover {
            background: #0a5a8a;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(9, 123, 192, 0.4);
        }

        .cookie-decline {
            background: #64748b;
            color: white;
        }

        .cookie-decline:hover {
            background: #475569;
            transform: translateY(-2px);
        }

        .cookie-settings {
            background: transparent;
            color: white;
            border: 1px solid #64748b;
        }

        .cookie-settings:hover {
            background: rgba(255,255,255,0.1);
            border-color: #4fc3f7;
            color: #4fc3f7;
        }

        .cookie-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.8);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 10002;
            padding: clamp(1rem, 3vw, 2rem);
            backdrop-filter: blur(5px);
        }

        .cookie-modal.show {
            display: flex;
        }

        .cookie-modal-content {
            background: white;
            border-radius: 16px;
            padding: 0;
            max-width: 600px;
            width: 100%;
            max-height: 90vh;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            animation: modalSlideUp 0.3s ease-out;
        }

        .cookie-modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: clamp(1.5rem, 3vw, 2rem);
            border-bottom: 1px solid #e2e8f0;
            background: #f8fafc;
        }

        .cookie-modal-header h3 {
            margin: 0;
            color: #1e293b;
            font-size: clamp(1.2rem, 2.5vw, 1.4rem);
        }

        .modal-close {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #64748b;
            padding: 0.5rem;
            border-radius: 6px;
            transition: all 0.3s ease;
        }

        .modal-close:hover {
            background: rgba(0,0,0,0.1);
            color: #1e293b;
        }

        .cookie-categories {
            padding: clamp(1rem, 2.5vw, 1.5rem);
            max-height: 50vh;
            overflow-y: auto;
        }

        .cookie-category {
            margin-bottom: clamp(1.5rem, 3vw, 2rem);
            padding: clamp(1rem, 2.5vw, 1.2rem);
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            transition: border-color 0.3s ease;
        }

        .cookie-category:hover {
            border-color: #097bc0;
        }

        .category-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.8rem;
        }

        .category-header h4 {
            margin: 0;
            color: #1e293b;
            font-size: clamp(1rem, 2.2vw, 1.1rem);
        }

        .category-description {
            margin: 0 0 0.8rem 0;
            color: #64748b;
            font-size: clamp(0.85rem, 1.8vw, 0.9rem);
            line-height: 1.5;
        }

        .cookie-details {
            padding-top: 0.5rem;
            border-top: 1px solid #f1f5f9;
        }

        .cookie-details small {
            color: #94a3b8;
            font-size: clamp(0.75rem, 1.6vw, 0.8rem);
        }

        .cookie-toggle {
            position: relative;
            display: inline-block;
        }

        .cookie-toggle input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .toggle-slider {
            position: relative;
            display: inline-block;
            width: 50px;
            height: 24px;
            background-color: #cbd5e1;
            border-radius: 24px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .toggle-slider:before {
            content: "";
            position: absolute;
            height: 18px;
            width: 18px;
            left: 3px;
            bottom: 3px;
            background-color: white;
            border-radius: 50%;
            transition: transform 0.3s ease;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

        .cookie-toggle input:checked + .toggle-slider {
            background-color: #097bc0;
        }

        .cookie-toggle input:checked + .toggle-slider:before {
            transform: translateX(26px);
        }

        .cookie-toggle input:disabled + .toggle-slider {
            opacity: 0.6;
            cursor: not-allowed;
            background-color: #10b981;
        }

        .cookie-modal-footer {
            padding: clamp(1rem, 2.5vw, 1.5rem);
            background: #f8fafc;
            border-top: 1px solid #e2e8f0;
            display: flex;
            gap: 1rem;
            justify-content: flex-end;
        }

        .cookie-save {
            background: #097bc0;
            color: white;
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
        }

        @keyframes modalSlideUp {
            from { opacity: 0; transform: translateY(30px) scale(0.95); }
        }

        .fade-in {
            animation: fadeIn 0.6s ease-out;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .contact-layout {
                grid-template-columns: 1fr;
                gap: clamp(2rem, 5vw, 3rem);
            }

            .contact-info-section {
                order: -1;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .cookie-content {
                flex-direction: column;
                gap: 1.5rem;
                text-align: left;
            }

            .cookie-actions {
                justify-content: stretch;
                flex-wrap: wrap;
            }

            .cookie-btn {
                flex: 1;
                min-width: 0;
                justify-content: center;
            }

            .cookie-modal-footer {
                flex-direction: column;
            }

            .cookie-modal-footer .cookie-btn {
                width: 100%;
                justify-content: center;
            }
}

        @media (max-width: 480px) {
            .page-header {
                padding: clamp(5rem, 20vw, 6rem) clamp(1rem, 3vw, 1.5rem) clamp(2.5rem, 10vw, 3rem);
            }

            .info-card-header {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }

            .cookie-actions {
                flex-direction: column;
            }

            .cookie-btn {
                width: 100%;
                padding: 1rem;
            }

            .cookie-modal {
                padding: 1rem;
            }

            .cookie-categories {
                padding: 1rem;
            }
}
    
