        :root {
            --primary-color: #178582;
            --secondary-color: #020024;
            --accent-color: #ad9861;
            --text-light: #ffffff;
            --text-dark: #333333;
            --gradient-bg: linear-gradient(135deg, #020024 0%, #178582 100%);
            --secondary-gradient: linear-gradient(135deg, #178582 0%, #ad9861 100%);
            --card-bg: rgba(255, 255, 255, 0.95);
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(2, 0, 36, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            background: var(--secondary-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-link {
            color: var(--accent-color);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-link:hover {
            transform: translateY(-2px);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-color);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        /* Dropdown Menu Styles */
        .dropdown {
            position: relative;
        }

        .dropdown-toggle {
            position: relative;
            padding-right: 20px;
        }

        .dropdown-toggle::before {
            content: '\f107';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            font-size: 0.8rem;
            transition: transform 0.3s ease;
            opacity: 0.7;
        }

        .dropdown:hover .dropdown-toggle::before {
            transform: translateY(-50%) rotate(180deg);
            opacity: 1;
        }

        .dropdown-toggle::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-color);
            transition: width 0.3s ease;
        }

        .dropdown:hover .dropdown-toggle::after {
            width: calc(100% - 20px);
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(2, 0, 36, 0.98);
            backdrop-filter: blur(10px);
            border-radius: 10px;
            padding: 0.5rem 0;
            margin-top: 0.5rem;
            min-width: 250px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(173, 152, 97, 0.2);
            opacity: 0;
            visibility: hidden;
            transform: translateX(-50%) translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1001;
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .dropdown-menu li {
            list-style: none;
        }

        .dropdown-link {
            display: block;
            padding: 0.75rem 1.5rem;
            color: var(--accent-color);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            position: relative;
            border-radius: 8px;
            margin: 0 0.5rem;
        }

        .dropdown-link:hover {
            background: rgba(173, 152, 97, 0.1);
            color: var(--text-light);
            transform: translateX(5px);
        }

        .dropdown-link::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 3px;
            height: 0;
            background: var(--accent-color);
            transition: height 0.3s ease;
            border-radius: 2px;
        }

        .dropdown-link:hover::before {
            height: 70%;
        }

        /* Mobile Dropdown Styles */
        @media (max-width: 768px) {
            .dropdown-menu {
                position: static;
                transform: none;
                opacity: 1;
                visibility: visible;
                background: rgba(2, 0, 36, 0.9);
                border-radius: 0;
                border: none;
                box-shadow: none;
                margin: 0;
                padding: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }

            .dropdown:hover .dropdown-menu,
            .dropdown.active .dropdown-menu {
                max-height: 300px;
                border-top: 1px solid rgba(173, 152, 97, 0.2);
                margin-top: 0.5rem;
            }

            .dropdown-link {
                margin: 0;
                border-radius: 0;
                padding-left: 2rem;
                font-size: 0.85rem;
            }

            .dropdown-link:hover {
                background: rgba(173, 152, 97, 0.1);
                transform: none;
            }
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: var(--gradient-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            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 1000 1000"><polygon fill="%23ad9861" fill-opacity="0.05" points="0,1000 1000,0 1000,1000"/></svg>');
            animation: float 20s ease-in-out infinite;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 0 2rem;
        }

        .hero-title {
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 1rem;
            opacity: 0;
            animation: slideInUp 1s ease 0.3s forwards;
        }

        .hero-subtitle {
            font-size: clamp(1.2rem, 3vw, 1.8rem);
            color: var(--accent-color);
            margin-bottom: 2rem;
            opacity: 0;
            animation: slideInUp 1s ease 0.6s forwards;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            opacity: 0;
            animation: slideInUp 1s ease 0.9s forwards;
        }

        .btn {
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: var(--accent-color);
            color: var(--secondary-color);
        }

        .btn-secondary {
            background: transparent;
            color: var(--accent-color);
            border: 2px solid var(--accent-color);
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
        }

        .btn:hover::before {
            left: 100%;
        }

        /* Sections */
        .section {
            padding: 5rem 0;
            position: relative;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-about {
            background: var(--primary-color);
        }

        .section-programming {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .section-interests {
            background: var(--primary-color);
        }

        .card {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 3rem;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(50px);
        }

        .card.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-10px);
        }

        .card-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .card-content h2 {
            color: var(--secondary-color);
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .card-content h3 {
            color: var(--secondary-color);
            font-size: 2rem;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .card-content p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .card-image {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
        }

        .card-image img {
            width: 100%;
            height: auto;
            border-radius: 15px;
            transition: transform 0.3s ease;
        }

        .card-image:hover img {
            transform: scale(1.05);
        }

        /* Stats Section */
        .stats {
            background: var(--secondary-color);
            padding: 4rem 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            text-align: center;
        }

        .stat-item {
            color: var(--text-light);
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.3s ease;
        }

        .stat-item.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--accent-color);
            display: block;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1.1rem;
            color: var(--text-light);
        }

        /* Projects Section */
        .projects {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 5rem 0;
        }

        .project-card {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.3s ease;
        }

        .project-card.animate {
            opacity: 1;
            transform: translateX(0);
        }

        .project-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-5px);
        }

        .project-title {
            color: var(--secondary-color);
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .project-date {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .project-images {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }

        .project-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .project-image img {
            width: 100%;
            height: auto;
            transition: transform 0.3s ease;
        }

        .project-image:hover img {
            transform: scale(1.05);
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--accent-color);
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }

            .nav-menu {
                position: fixed;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--secondary-color);
                flex-direction: column;
                padding: 2rem;
                transform: translateY(-100%);
                opacity: 0;
                transition: all 0.3s ease;
            }

            .nav-menu.active {
                transform: translateY(0);
                opacity: 1;
            }

            .card-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Animations */
        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(2deg); }
        }

        /* Scroll animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Floating elements */
        .floating-element {
            position: absolute;
            opacity: 0.1;
            animation: float 15s ease-in-out infinite;
        }

        .floating-element:nth-child(2) {
            animation-delay: -5s;
        }

        .floating-element:nth-child(3) {
            animation-delay: -10s;
        }

        /* SAE Carousel Styles */
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            color: var(--secondary-color);
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .section-header p {
            color: var(--text-dark);
            font-size: 1.1rem;
            opacity: 0.8;
            max-width: 600px;
            margin: 0 auto;
        }

        .carousel-container {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
            overflow: visible; /* Changé de hidden à visible */
            border-radius: 20px;
            padding: 0 60px; /* Ajout d'un padding pour laisser de l'espace aux flèches */
        }
        .carousel-wrapper {
            position: relative;
            width: 100%;
            height: 500px;
            overflow: hidden; /* Garde l'overflow hidden sur le wrapper */
            border-radius: 20px; /* Déplace le border-radius ici */
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
            height: 100%;
        }

        .carousel-slide {
            min-width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 2rem;
        }

        .sae-card {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 3rem;
            box-shadow: var(--shadow);
            height: 100%;
            width: 100%;
            max-width: 800px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .sae-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
        }

        .sae-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .sae-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .sae-number {
            background: var(--primary-color);
            color: var(--text-light);
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            font-weight: 700;
            font-size: 1rem;
        }

        .sae-date {
            color: var(--accent-color);
            font-weight: 500;
            font-size: 0.9rem;
        }

        .sae-title {
            color: var(--secondary-color);
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .sae-description {
            color: var(--text-dark);
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 2rem;
            flex-grow: 1;
        }

        .sae-technologies {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }

        .tech-tag {
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: var(--text-light);
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            border: none;
            opacity: 0.9;
            transition: all 0.3s ease;
        }

        .tech-tag:hover {
            opacity: 1;
            transform: translateY(-2px);
        }

        .sae-button {
            background: var(--accent-color);
            color: var(--secondary-color);
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            align-self: flex-start;
            position: relative;
            overflow: hidden;
        }

        .sae-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(173, 152, 97, 0.3);
        }

        .sae-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
        }

        .sae-button:hover::before {
            left: 100%;
        }

        .sae-button i {
            transition: transform 0.3s ease;
        }

        .sae-button:hover i {
            transform: translateX(5px);
        }

        /* Navigation arrows */
        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(2, 0, 36, 0.8);
            color: var(--accent-color);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            backdrop-filter: blur(10px);
        }


        .carousel-nav:hover {
            background: var(--secondary-color);
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-prev {
            left: -50px; 
        }

        .carousel-next {
            right: -50px; 
        }

        /* Indicators */
        .carousel-indicators {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 2rem;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: none;
            background: rgba(2, 0, 36, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            background: var(--primary-color);
            transform: scale(1.2);
        }

        .indicator:hover {
            background: var(--accent-color);
            transform: scale(1.1);
        }

        /* Responsive carousel */
        @media (max-width: 768px) {
            .carousel-wrapper {
                height: auto;
                min-height: 550px;
            }

            .carousel-slide {
                padding: 0 1rem;
            }

            .sae-card {
                padding: 2rem;
                height: auto;
                min-height: 500px;
            }

            .sae-title {
                font-size: 1.5rem;
            }

            .sae-description {
                font-size: 1rem;
            }

            .carousel-nav {
                width: 40px;
                height: 40px;
            }

            .carousel-prev {
                left: -40px;
            }

            .carousel-next {
                right: -40px;
            }

            .sae-technologies {
                gap: 0.5rem;
            }

            .tech-tag {
                font-size: 0.8rem;
                padding: 0.3rem 0.8rem;
            }
            .carousel-container {
                padding: 0 50px; /* Réduit le padding sur mobile */
            }
        }

        @media (max-width: 480px) {
            .section-header h2 {
                font-size: 2rem;
            }

            .carousel-wrapper {
                min-height: 600px;
            }

            .sae-card {
                padding: 1.5rem;
                min-height: 550px;
            }

            .sae-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
            }

            .sae-title {
                font-size: 1.3rem;
            }

            .carousel-container {
                padding: 0 45px; /* Encore plus réduit sur très petit écran */
            }
            
            .carousel-prev {
                left: -35px;
            }
        
            .carousel-next {
                right: -35px;
            }
        }

        /* CV Section Styles */
        .section-cv {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .cv-highlights {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }

        .highlight-item {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            padding: 1rem;
            background: rgba(23, 133, 130, 0.1);
            border-radius: 10px;
            border-left: 4px solid var(--primary-color);
        }

        .highlight-item i {
            color: var(--primary-color);
            font-size: 1.2rem;
        }

        .highlight-item span {
            font-weight: 500;
            color: var(--text-dark);
        }

        .cv-buttons {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .cv-preview {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100%;
            padding: 2rem;
        }

        .cv-document {
            background: white;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            padding: 2rem;
            max-width: 300px;
            width: 100%;
            border: 1px solid #e0e0e0;
        }

        .cv-header {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
            align-items: flex-start;
        }

        .cv-photo {
            width: 60px;
            height: 60px;
            background: var(--accent-color);
            border-radius: 50%;
            flex-shrink: 0;
        }

        .cv-info {
            flex: 1;
        }

        .cv-line {
            height: 8px;
            background: linear-gradient(90deg, var(--primary-color), transparent);
            border-radius: 4px;
            margin-bottom: 0.5rem;
        }

        .cv-line.short {
            width: 60%;
        }

        .cv-section {
            margin-bottom: 1.5rem;
        }

        .cv-content .cv-line {
            background: linear-gradient(90deg, #ddd, transparent);
            height: 6px;
        }

        /* Contact Section Styles */
        .section-contact {
            background: var(--secondary-color);
            color: var(--text-light);
        }

        .section-contact .section-header h2 {
            color: var(--text-light);
        }

        .section-contact .section-header p {
            color: rgba(255, 255, 255, 0.8);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .contact-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .contact-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .contact-icon {
            width: 80px;
            height: 80px;
            background: var(--accent-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: var(--secondary-color);
        }

        .contact-card h3 {
            color: var(--accent-color);
            font-size: 1.3rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .contact-card p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .contact-link {
            display: inline-block;
            background: var(--accent-color);
            color: var(--secondary-color);
            padding: 0.8rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .contact-link:hover {
            background: var(--text-light);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(173, 152, 97, 0.3);
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .cv-highlights {
                grid-template-columns: 1fr;
            }

            .cv-buttons {
                flex-direction: column;
                align-items: stretch;
            }

            .cv-buttons .btn {
                justify-content: center;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .highlight-item {
                flex-direction: column;
                text-align: center;
                gap: 0.5rem;
            }

            .cv-document {
                max-width: 250px;
                padding: 1.5rem;
            }

            .cv-photo {
                width: 50px;
                height: 50px;
            }
        }

        @media (max-width: 480px) {
            .contact-card {
                padding: 1.5rem;
            }

            .contact-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }

            .cv-preview {
                padding: 1rem;
            }
        }
    