
        :root {
            --primary: #1a2332;
            --secondary: #2d4263;
            --accent: #00b7ff;
            --accent2:rgb(73, 173, 198);
            --accent3: #ff7700;
            --light: #f8f9fa;
            --text-dark: #1a1a2e;
            --text-light: #6c757d;
            --gradient-start: #2e4979;
            --gradient-end: #ff3c00;
        }

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

        body {
            font-family: 'Poppins', -apple-system, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background: linear-gradient(135deg, var(--gradient-start) 34%, var(--gradient-end) 100%);
            min-height: 100vh;
            overflow-x: hidden;
        }

        /* Decorative elements */
        .bg-decoration {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            opacity: 0.05;
        }

        .bg-decoration::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            border-radius: 50%;
            background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
            animation: float 20s ease-in-out infinite;
        }

        .bg-decoration::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -15%;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: float 15s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(30px, -30px) scale(1.1); }
        }

        .container {
            position: relative;
            z-index: 1;
            max-width: 1000px;
            margin: 0 auto;
            padding: 40px 20px;
            animation: fadeIn 0.8s ease-out;
        }

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

        .card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            position: relative;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, var(--accent) 0%, var(--secondary) 100%);
        }

        header {
            background: url('https://manxx.eu/wp-content/uploads/2025/05/Manxx.png');
            background-size: 100%;
            background-position: center;
            padding: 60px 50px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        header::after {
            display: none;
        }

        .header-icon {
            width: 150px;
            height: 80px;
            background: transparent;
            border-radius: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            backdrop-filter: none;
            border: none;
            animation: iconPulse 2s ease-in-out infinite;
            position: relative;
            z-index: 1;
        }

        @keyframes iconPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .header-icon img {
            width: 100%;
            height: auto;
            object-fit: contain;
        }

        h1 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.8rem;
            font-weight: 500;
            margin-bottom: 0;
            margin-left: 12px;
            letter-spacing: -0.5px;
            line-height: 1.2;
            position: relative;
            z-index: 1;
        }

        .content {
            padding: 70px 50px 60px;
        }

        .intro {
            font-size: 1.15rem;
            color: var(--text-light);
            margin-bottom: 50px;
            line-height: 1.8;
            padding-left: 0px;
        }

        .section {
            margin-bottom: 50px;
            animation: slideIn 0.6s ease-out;
            animation-fill-mode: both;
        }

        .section:nth-child(2) { animation-delay: 0.1s; }
        .section:nth-child(3) { animation-delay: 0.2s; }
        .section:nth-child(4) { animation-delay: 0.3s; }

        @keyframes slideIn {
            from { opacity: 0; transform: translateX(-20px); }
            to { opacity: 1; transform: translateX(0); }
        }

        h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.2rem;
            color: var(--gradient-start);
            margin-bottom: 5px;
            position: relative;
            padding-bottom: 15px;
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--accent);
            border-radius: 2px;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }

        .contact-item {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            padding: 30px;
            border-radius: 16px;
            border: 1px solid #e9ecef;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            min-height: 140px;
            display: flex;
            align-items: center;
        }

        .contact-item.with-photo {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .profile-photo {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--accent);
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(0, 183, 255, 0.2);
        }

        .contact-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 0;
        }

        .contact-item:hover::before {
            opacity: 0.03;
        }

        .contact-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
            border-color: var(--accent);
        }

        .contact-item-content {
            position: relative;
            z-index: 1;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .contact-label {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 6px;
        }

        .contact-label svg {
            width: 20px;
            height: 20px;
            fill: var(--accent);
            transition: transform 0.3s ease;
        }

        .contact-item:hover .contact-label svg {
            transform: scale(1.1);
        }

        .contact-value {
            font-size: 1.1rem;
            font-weight: 500;
            color: var(--text-dark);
            word-break: break-word;
        }

        .contact-value a {
            color: var(--accent);
            text-decoration: none;
            transition: color 0.3s ease;
            position: relative;
        }

        .contact-value a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s ease;
        }

        .contact-value a:hover {
            color: var(--secondary);
        }

        .contact-value a:hover::after {
            width: 100%;
        }

        .map-container {
            width: 100%;
            height: 300px;
            margin-top: 15px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .info-list {
            list-style: none;
            margin-top: 20px;
        }

        .info-list li {
            padding: 15px 0;
            padding-left: 35px;
            position: relative;
            color: var(--text-light);
            border-bottom: 1px solid #f0f0f0;
            transition: all 0.3s ease;
        }

        .info-list li:last-child {
            border-bottom: none;
        }

        .info-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 8px;
            height: 8px;
            background: var(--accent);
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .info-list li:hover {
            padding-left: 40px;
            color: var(--text-dark);
        }

        .info-list li:hover::before {
            width: 12px;
            height: 12px;
            background: var(--secondary);
        }

        .privacy-note {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 30px;
            border-radius: 16px;
            border-left: 4px solid var(--accent3);
            margin-top: 40px;
        }

        .privacy-note p {
            color: var(--text-light);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        footer {
            text-align: center;
            padding: 30px;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .container {
                padding: 20px 15px;
            }

            header {
                padding: 40px 30px;
            }

            h1 {
                font-size: 1.2rem;
            }

            .content {
                padding: 50px 30px 40px;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }

            h2 {
                font-size: 1.5rem;
            }

            .contact-item.with-photo {
                flex-direction: column;
                text-align: center;
            }

            .profile-photo {
                width: 100px;
                height: 100px;
            }

            .map-container {
                height: 250px;
            }

            .contact-item {
                min-height: auto;
            }
        }

        /* Print styles */
        @media print {
            body {
                background: white;
            }

            .bg-decoration,
            footer {
                display: none;
            }

            .card {
                box-shadow: none;
            }
        }