        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --swiss-red: #FF0000;
            --swiss-dark-red: #D52B1E;
            --swiss-white: #FFFFFF;
            --grass-green: #4CAF50;
            --meadow-green: #66BB6A;
            --dark-green: #2E7D32;
            --light-cream: #FAFAFA;
            --off-white: #F5F5F5;
            --text-dark: #212121;
            --text-grey: #424242;
            --light-red: #FFEBEE;
            --light-green: #E8F5E9;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Raleway', sans-serif;
            line-height: 1.8;
            color: var(--text-grey);
            background: linear-gradient(to bottom, var(--light-cream) 0%, var(--swiss-white) 100%);
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
        }

        /* Animated Background Elements */
        .bg-mountains {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 300px;
            background: linear-gradient(to top, rgba(76, 175, 80, 0.05), transparent);
            z-index: -1;
            pointer-events: none;
        }

        .bg-mountains::before {
            content: '🌿';
            position: absolute;
            bottom: 20px;
            left: 10%;
            font-size: 4rem;
            opacity: 0.15;
            animation: float 6s ease-in-out infinite;
        }

        .bg-mountains::after {
            content: '🏔️';
            position: absolute;
            bottom: 40px;
            right: 15%;
            font-size: 3.5rem;
            opacity: 0.15;
            animation: float 8s ease-in-out infinite 1s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        /* Hero Section - Cinematic */
        .hero {
            position: relative;
            min-height: 85vh;
            display: grid;
            grid-template-columns: 45% 55%;
            background: linear-gradient(135deg, var(--swiss-red) 0%, var(--swiss-dark-red) 50%, var(--grass-green) 100%);
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.15" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,170.7C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
            background-size: cover;
            opacity: 0.5;
            animation: waveDrift 20s ease-in-out infinite;
        }

        @keyframes waveDrift {
            0%, 100% { transform: translateX(0); }
            50% { transform: translateX(-50px); }
        }

        .hero-left {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            z-index: 2;
        }

        .profile-frame {
            position: relative;
            width: 400px;
            height: 500px;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 
                0 30px 60px rgba(0,0,0,0.4),
                0 0 0 15px rgba(255,255,255,0.1),
                0 0 0 30px rgba(255,255,255,0.05);
            animation: floatProfile 6s ease-in-out infinite;
        }

        @keyframes floatProfile {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        /* REPLACE THIS IMAGE - Personal Photo */
        .profile-frame img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(1.05) contrast(1.1);
        }

        .profile-badge {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(255,255,255,0.98);
            padding: 20px 40px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            min-width: 320px;
            text-align: center;
        }

        .profile-badge p {
            color: var(--swiss-red);
            font-weight: 700;
            font-size: 1.1rem;
            margin: 0;
            line-height: 1.6;
        }

        .profile-badge p:first-child {
            font-size: 1.3rem;
            margin-bottom: 0.3rem;
        }

        .profile-badge p:last-child {
            font-size: 0.95rem;
            color: var(--grass-green);
            font-weight: 600;
        }

        .hero-right {
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 2rem 3rem;
            z-index: 2;
        }

        .hero-text {
            color: white;
            margin-bottom: 3rem;
        }

        .hero-text .flag {
            font-size: 4rem;
            display: inline-block;
            animation: wave 2s ease-in-out infinite;
            line-height: 1;
        }
        .hero-text .flag img {
            display: inline-block;
            animation: wave 2s ease-in-out infinite;
            transform-origin: bottom center;
        }        

        @keyframes wave {
            0%, 100% { transform: rotate(0deg); }
            25% { transform: rotate(15deg); }
            75% { transform: rotate(-15deg); }
        }

        .hero-text h1 {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 1rem 0;
            text-shadow: 2px 2px 20px rgba(0,0,0,0.3);
            background: linear-gradient(120deg, #fff, rgba(255,255,255,0.8));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-text .tagline {
            font-size: 1.3rem;
            font-style: italic;
            opacity: 0.95;
            font-family: 'Playfair Display', serif;
            margin-top: 1rem;
        }

        .falling-word {
            display: inline-block;
            animation: fall 2s ease-in-out infinite;
            background: linear-gradient(120deg, #fff, rgba(255,255,255,0.8));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        @keyframes fall {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
                opacity: 1;
            }
            50% {
                transform: translateY(15px) rotate(5deg);
                opacity: 0.7;
            }
        }        
        /* Artistic Carousel */
        .carousel-wrapper {
            position: relative;
            max-width: 600px;
        }

        .carousel-container {
            position: relative;
            width: 100%;
            height: 380px;
            perspective: 1000px;
        }

        .carousel {
            position: relative;
            width: 100%;
            height: 100%;
            transform-style: preserve-3d;
        }

        /* REPLACE THESE IMAGES - Travel Photos */
        .carousel-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transform: scale(0.85) rotateY(20deg);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0,0,0,0.5);
        }

        .carousel-slide.active {
            opacity: 1;
            transform: scale(1) rotateY(0deg);
            z-index: 10;
        }

        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .carousel-slide::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
        }

        .carousel-caption {
            position: absolute;
            bottom: 30px;
            left: 30px;
            color: white;
            z-index: 5;
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 600;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
        }

        .carousel-controls {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 10px;
            transform: translateY(-50%);
            z-index: 20;
        }

        .carousel-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255,255,255,0.3);
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-btn:hover {
            background: rgba(255,255,255,0.4);
            transform: scale(1.1);
        }

        .carousel-nav {
            position: absolute;
            bottom: -50px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
        }

        .carousel-dot {
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: rgba(255,255,255,0.3);
            cursor: pointer;
            transition: all 0.3s;
            border: 2px solid rgba(255,255,255,0.5);
        }

        .carousel-dot.active {
            background: white;
            width: 50px;
            border-radius: 8px;
        }

        /* Navigation Bar */
        .nav-bar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, var(--swiss-red) 0%, var(--swiss-dark-red) 100%);
            backdrop-filter: blur(10px);
            padding: 1rem 2rem;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(213, 43, 30, 0.3);
            transform: translateY(-100%);
            transition: transform 0.3s ease;
        }

        .nav-bar.visible {
            transform: translateY(0);
        }

        .nav-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-logo {
            color: white;
            font-size: 1.2rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .nav-cta {
            background: var(--swiss-white);
            color: var(--swiss-red);
            padding: 0.8rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
            border: 2px solid transparent;
        }

        .nav-cta:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 25px rgba(255, 255, 255, 0.5);
            background: var(--light-cream);
            border-color: var(--swiss-white);
        }

/* ===== FLOATING SECTION NAVIGATION - ADD THIS CSS ===== */
        .section-nav {
            position: fixed;
            right: 30px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 999;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .section-nav.visible {
            opacity: 1;
        }

        .section-nav-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .section-nav-item {
            position: relative;
        }

        .section-nav-link {
            display: block;
            width: 12px;
            height: 12px;
            background: rgba(255, 255, 255, 0.5);
            border: 2px solid var(--swiss-red);
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .section-nav-link:hover {
            background: var(--swiss-red);
            transform: scale(1.3);
        }

        .section-nav-link.active {
            background: var(--swiss-red);
            transform: scale(1.5);
            box-shadow: 0 0 0 4px rgba(255, 0, 0, 0.2);
        }

        .section-nav-tooltip {
            position: absolute;
            right: 30px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--swiss-red);
            color: white;
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 600;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .section-nav-tooltip::after {
            content: '';
            position: absolute;
            right: -8px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-left: 8px solid var(--swiss-red);
            border-top: 6px solid transparent;
            border-bottom: 6px solid transparent;
        }

        .section-nav-item:hover .section-nav-tooltip {
            opacity: 1;
            right: 35px;
        }
        /* ===== END: FLOATING SECTION NAVIGATION CSS ===== */        

        /* ===== STICKY NOTE / FREE SERVICE TOOLTIP ===== */
        .free-service-note {
            position: fixed;
            top: 100px;
            right: -400px;
            background: white;
            color: var(--swiss-red);
            border: 3px solid var(--swiss-red);
            padding: 20px 25px;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            z-index: 1001;
            max-width: 320px;
            animation: slideInNote 0.6s ease-out 3s forwards;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .free-service-note:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
        }

        .free-service-note.hidden {
            animation: slideOutNote 0.5s ease-in forwards;
        }

        @keyframes slideInNote {
            from {
                right: -400px;
                opacity: 0;
            }
            to {
                right: 30px;
                opacity: 1;
            }
        }

        @keyframes slideOutNote {
            from {
                right: 30px;
                opacity: 1;
            }
            to {
                right: -400px;
                opacity: 0;
            }
        }

        .free-service-note-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }

        .free-service-note-icon {
            font-size: 2rem;
            animation: wave 1.5s ease-in-out infinite;
        }

        .free-service-note-close {
            background: rgba(255, 0, 0, 0.1);
            border: none;
            color: var(--swiss-red);
            width: 25px;
            height: 25px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1rem;
            font-weight: bold;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .free-service-note-close:hover {
            background: rgba(255, 0, 0, 0.2);
            transform: rotate(90deg);
        }

        .free-service-note-text {
            font-size: 1.1rem;
            font-weight: 600;
            line-height: 1.5;
        }

        .free-service-note-subtext {
            font-size: 0.9rem;
            margin-top: 8px;
            opacity: 0.8;
            font-style: italic;
        }

        /* Subtle pulse animation */
        .free-service-note::before {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            background: white;
            border: 3px solid var(--swiss-red);
            border-radius: 18px;
            z-index: -1;
            opacity: 0.5;
            animation: pulse 2s ease-in-out infinite 3.5s;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                opacity: 0.5;
            }
            50% {
                transform: scale(1.05);
                opacity: 0.3;
            }
        }

        /* Mobile-friendly version */
        @media (max-width: 768px) {
            .free-service-note {
                top: auto;
                bottom: 20px;
                right: -350px;
                left: auto;
                max-width: 280px;
                padding: 15px 20px;
                font-size: 0.95rem;
                animation: slideInNoteMobile 0.6s ease-out 3s forwards;
            }

            @keyframes slideInNoteMobile {
                from {
                    right: -350px;
                    opacity: 0;
                }
                to {
                    right: 15px;
                    opacity: 1;
                }
            }

            .free-service-note.hidden {
                animation: slideOutNoteMobile 0.5s ease-in forwards;
            }

            @keyframes slideOutNoteMobile {
                from {
                    right: 15px;
                    opacity: 1;
                }
                to {
                    right: -350px;
                    opacity: 0;
                }
            }

            .free-service-note-text {
                font-size: 1rem;
            }

            .free-service-note-subtext {
                font-size: 0.85rem;
            }
        }

        /* Adjust position on tablets */
        @media (max-width: 1024px) and (min-width: 769px) {
            .free-service-note {
                max-width: 280px;
                right: -350px;
                animation: slideInNoteTablet 0.6s ease-out 3s forwards;
            }

            @keyframes slideInNoteTablet {
                from {
                    right: -350px;
                    opacity: 0;
                }
                to {
                    right: 20px;
                    opacity: 1;
                }
            }
        }
        /* ===== END: STICKY NOTE CSS ===== */

        /* Story Sections - Magazine Style */
        .story-section {
            position: relative;
            padding: 4rem 0;
            overflow: hidden;
        }

        .story-section:nth-child(even) {
            background: var(--swiss-white);
        }

        .story-section:nth-child(odd) {
            background: linear-gradient(to bottom, var(--light-green), var(--swiss-white));
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 3rem;
            position: relative;
            z-index: 2;
        }

        .section-header {
            text-align: center;
            margin-bottom: 2.5rem;
            position: relative;
        }

        .section-number {
            font-size: 8rem;
            font-weight: 800;
            color: rgba(255, 0, 0, 0.08);
            position: absolute;
            top: -40px;
            left: 50%;
            transform: translateX(-50%);
            z-index: -1;
            font-family: 'Playfair Display', serif;
        }

        .section-title {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--swiss-red);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--grass-green), transparent);
        }

        .section-subtitle {
            font-size: 1.3rem;
            color: var(--text-grey);
            font-style: italic;
            font-family: 'Playfair Display', serif;
        }

        /* Content Cards */
        .story-card {
            background: white;
            padding: 3rem;
            border-radius: 30px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.08);
            margin-bottom: 2rem;
            position: relative;
            overflow: hidden;
            transition: all 0.5s;
        }

        .story-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 80px rgba(0,0,0,0.15);
        }

        .story-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 30px;
            font-size: 10rem;
            color: rgba(255, 0, 0, 0.06);
            font-family: Georgia, serif;
            line-height: 1;
        }

        .story-card h3 {
            font-size: 2.2rem;
            color: var(--swiss-red);
            margin-bottom: 2rem;
            font-weight: 700;
        }

        .story-card p {
            font-size: 1.15rem;
            line-height: 2;
            color: var(--text-grey);
            margin-bottom: 2rem;
        }

        .story-card p:first-of-type::first-letter {
            font-size: 4rem;
            font-weight: bold;
            float: left;
            line-height: 1;
            margin: 0 10px 0 0;
            color: var(--swiss-red);
            font-family: 'Playfair Display', serif;
        }

        /* Highlight Box */
        .highlight-box {
            background: linear-gradient(135deg, var(--grass-green) 0%, var(--meadow-green) 100%);
            color: white;
            padding: 3rem;
            border-radius: 20px;
            margin: 3rem 0;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
        }

        .highlight-box::before {
            content: '🌱';
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 4rem;
            opacity: 0.3;
        }

        .highlight-box h4 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .highlight-box ul {
            list-style: none;
        }

        .highlight-box ul li {
            padding: 1rem 0;
            padding-left: 2.5rem;
            position: relative;
            font-size: 1.1rem;
            border-bottom: 1px solid rgba(255,255,255,0.2);
        }

        .highlight-box ul li:last-child {
            border-bottom: none;
        }

        .highlight-box ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            font-size: 1.5rem;
            font-weight: bold;
        }

        /* Languages Section - Creative */
        .languages-container {
            margin: 3rem 0;
            padding: 3rem;
            background: white;
            border-radius: 25px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border: 3px solid var(--grass-green);
        }

        .languages-container::before {
            content: '💬';
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 5rem;
            opacity: 0.1;
        }

        .languages-container h4 {
            color: var(--swiss-red);
            font-size: 2rem;
            margin-bottom: 2rem;
            text-align: center;
        }

        .languages-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            align-items: center;
        }

        .language-tag {
            background: linear-gradient(135deg, var(--swiss-red), var(--swiss-dark-red));
            padding: 1rem 2rem;
            border-radius: 50px;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            box-shadow: 0 5px 15px rgba(213, 43, 30, 0.3);
            transition: all 0.3s;
            border: 2px solid transparent;
        }

        .language-tag:hover {
            transform: translateY(-5px) scale(1.05);
            background: linear-gradient(135deg, var(--grass-green), var(--meadow-green));
            box-shadow: 0 10px 25px rgba(76, 175, 80, 0.4);
        }

        .language-tag .flag {
            font-size: 1.8rem;
        }

        .language-tag .name {
            font-weight: 600;
            color: white;
            font-size: 1.1rem;
        }

        .languages-footer {
            text-align: left;
            color: var(--text-grey);
            margin-top: 2rem;
            font-size: 1.1rem;
            font-style: italic;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .service-card {
            background: white;
            padding: 3rem;
            border-radius: 25px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            text-align: center;
            transition: all 0.4s;
            border-top: 5px solid var(--grass-green);
        }

        .service-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 60px rgba(76, 175, 80, 0.2);
            border-top-color: var(--swiss-red);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--swiss-red), var(--swiss-dark-red));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            font-size: 2rem;
            color: white;
            box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
        }

        .service-card h4 {
            font-size: 1.8rem;
            color: var(--swiss-red);
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .service-card ul {
            text-align: left;
            list-style: none;
        }

        .service-card ul li {
            padding: 0.8rem 0;
            padding-left: 2rem;
            position: relative;
            color: var(--text-grey);
        }

        .service-card ul li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--grass-green);
            font-weight: bold;
        }

        /* Contact Section - Premium */
        .contact-section {
            background: linear-gradient(135deg, var(--swiss-red) 0%, var(--dark-green) 100%);
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
        }

        .contact-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,128L48,144C96,160,192,192,288,197.3C384,203,480,181,576,154.7C672,128,768,96,864,101.3C960,107,1056,149,1152,154.7C1248,160,1344,128,1392,112L1440,96L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>') no-repeat top;
            background-size: cover;
        }

        .contact-section::after {
            content: '🇨🇭';
            position: absolute;
            bottom: 20px;
            right: 10%;
            font-size: 6rem;
            opacity: 0.1;
        }

        .contact-header {
            text-align: center;
            color: white;
            margin-bottom: 3rem;
        }

        .contact-header h2 {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .contact-intro {
            font-size: 1.5rem;
            font-style: italic;
            font-family: 'Playfair Display', serif;
            opacity: 0.9;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .contact-card {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(20px);
            padding: 3rem;
            border-radius: 25px;
            border: 2px solid rgba(255,255,255,0.2);
            text-align: center;
            transition: all 0.4s;
            color: white;
        }


        .contact-icon {
            width: 100px;
            height: 100px;
            background: var(--swiss-white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            font-size: 2.5rem;
            color: var(--swiss-red);
            box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
        }

        .contact-card h4 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .contact-card p {
            font-size: 1.1rem;
            opacity: 0.9;
        }

		.contact-card:hover {
			background: rgba(255,255,255,0.15);
			transform: translateY(-5px);
			border-color: var(--swiss-white);
		}
	
		/* Enhanced Contact Card Links */
		.contact-card-link {
			display: block;
			text-decoration: none;
			color: inherit;
			transition: all 0.3s ease;
		}

		.contact-card-link:hover {
			transform: translateY(-5px);
			box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
		}

		.contact-card-link h4,
		.contact-card-link .contact-value {
			color: white;
		}

		.contact-card.email-card .contact-value {
			font-size: 0.95rem;
			letter-spacing: 0.5px;
		}		

		.contact-value {
			font-weight: 600;
			font-size: 1.1rem;
			color: white;
			margin: 1rem 0;
			font-family: 'Courier New', Courier, monospace;
			letter-spacing: 1px;
			opacity: 0.95;
			user-select: text;
			cursor: text;
			word-break: break-all;
			overflow-wrap: break-word;		
		}
		.contact-cta {
			display: inline-block;
			margin-top: 1rem;
			padding: 0.8rem 2rem;
			background: white;
			color: var(--swiss-red);
			border-radius: 25px;
			font-weight: 600;
			font-size: 0.9rem;
			text-decoration: none;
			transition: all 0.3s ease;
			box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
		}
		.contact-cta:hover {
			background: var(--light-cream);
			transform: translateY(-2px);
			box-shadow: 0 6px 20px rgba(255, 255, 255, 0.5);
		}		
		.contact-card-link:hover .contact-cta {
			background: #c00;
		}		

        /* Footer - Elegant */
        footer {
            background: linear-gradient(135deg, var(--text-dark) 0%, var(--swiss-red) 100%);
            color: white;
            text-align: center;
            padding: 3rem;
            font-size: 1rem;
        }

        footer p {
            opacity: 0.7;
        }

        /* Decorative Elements */
        .mountain-icon {
            position: absolute;
            opacity: 0.04;
            font-size: 15rem;
            color: var(--grass-green);
            z-index: 0;
            pointer-events: none;
        }

        .mountain-icon.left {
            left: -100px;
            top: 50%;
            transform: translateY(-50%) rotate(-15deg);
        }

        .mountain-icon.right {
            right: -100px;
            top: 50%;
            transform: translateY(-50%) rotate(15deg);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero {
                grid-template-columns: 1fr;
                min-height: auto;
            }

            .hero-left {
                padding: 3rem 2rem;
            }

            .profile-frame {
                width: 300px;
                height: 400px;
            }

            .hero-text h1 {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .carousel-container {
                height: 300px;
            }

            /* Hide section nav on tablets */
            .section-nav {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 1.5rem;
            }

            .story-card {
                padding: 2rem;
            }

            .hero-text h1 {
                font-size: 2rem;
            }

            .section-number {
                font-size: 5rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .contact-header h2 {
                font-size: 2.5rem;
            }

            /* Hide section nav on mobile */
            .section-nav {
                display: none;
            }
        }
