        :root {
            --primary-color: #2196F3;
            --primary-light: #64B5F6;
            --primary-dark: #1976D2;
            --secondary-color: #03DAC6;
            --background-color: #121212;
            --surface-color: #1E1E1E;
            --error-color: #CF6679;
            --on-primary: #FFFFFF;
            --on-secondary: #000000;
            --on-background: #FFFFFF;
            --on-surface: #FFFFFF;
            --on-error: #000000;
            --elevation-1: rgba(255, 255, 255, 0.05);
            --elevation-2: rgba(255, 255, 255, 0.07);
            --elevation-3: rgba(255, 255, 255, 0.08);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            background-color: var(--background-color);
            color: var(--on-background);
            min-height: 100vh;
            overflow-x: hidden;
        }

        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: var(--surface-color);
            padding: 1rem 2rem;
            z-index: 1000;
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        }

        .nav-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 1rem;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
            margin-right: 2rem;
        }

        .nav-logo .ft {
            color: #FF5722;
            animation: slideIn 1.2s ease-out;
            font-style: italic;
            font-weight: bold;
        }

        .nav-logo .connect {
            color: var(--primary-color);
            position: relative;
            animation: slideIn 1.2s ease-out;
            font-style: italic;
            font-weight: bold;
        }

        .nav-logo .connect::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 255, 255, 0.3),
                transparent
            );
            background-size: 200% 100%;
            animation: shimmer 1.2s infinite;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 2rem;
            margin-left: auto;
        }

        .nav-link {
            color: var(--on-surface);
            text-decoration: none;
            opacity: 0.8;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
        }

        .nav-link:hover {
            color: var(--primary-color);
            opacity: 1;
            background: rgba(33, 150, 243, 0.1);
        }

        .nav-link.active {
            color: var(--primary-color);
            opacity: 1;
            background: rgba(33, 150, 243, 0.1);
        }

        .nav-link.teams-nav-btn {
            background: #464EB8;
            color: var(--on-primary);
            padding: 0.5rem 1rem;
            border-radius: 4px;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 0.2px;
            margin-left: 1rem;
        }

        .nav-link.teams-nav-btn:hover {
            background: #373CA9;
            transform: translateY(-1px);
            color: var(--on-primary);
        }

        @media (max-width: 1024px) {
            .nav-links {
                gap: 1rem;
            }

            .nav-link {
                font-size: 0.85rem;
                padding: 0.4rem 0.6rem;
            }
        }

        @media (max-width: 768px) {
            .nav {
                padding: 0.8rem;
            }

            .menu-button {
                display: block;
                margin-left: auto;
                z-index: 1001;
            }

            .nav-links {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                width: 100%;
                height: 100vh;
                background: var(--background-color);
                padding: 5rem 2rem 2rem 2rem;
                flex-direction: column;
                align-items: center;
                gap: 1.5rem;
                box-shadow: none;
                z-index: 1000;
            }

            .nav-links.active {
                display: flex;
            }

            .nav-link {
                width: 100%;
                text-align: center;
                padding: 1rem;
                font-size: 1.1rem;
                border-radius: 8px;
                transition: all 0.3s ease;
            }

            .nav-link:hover {
                background: var(--elevation-2);
            }

            .nav-link.teams-nav-btn {
                margin: 1rem 0;
                padding: 1rem;
                width: 100%;
            }

            .menu-button {
                z-index: 1001;
                position: relative;
            }

            .menu-overlay.active {
                background: rgba(0, 0, 0, 0.8);
            }
        }

        .header {
            margin-top: 60px;
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background: linear-gradient(45deg, var(--surface-color), var(--background-color));
            position: relative;
            overflow: hidden;
        }

        .header-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
            opacity: 1;
        }

        .header::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(18, 18, 18, 0.9), rgba(30, 30, 30, 0.8));
            z-index: 1;
        }

        .header-content {
            text-align: center;
            max-width: 800px;
            padding: 2rem;
            z-index: 2;
            position: relative;
        }

        .header h1 {
            font-size: 3.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .header p {
            font-size: 1.25rem;
            color: var(--on-surface);
            margin-bottom: 2rem;
            opacity: 0.9;
            animation: fadeIn 1.5s ease-out;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
            color: var(--primary-color);
            cursor: pointer;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-30px);
            }
            60% {
                transform: translateY(-15px);
            }
        }

        .section {
            padding: 6rem 2rem;
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 4rem;
            color: var(--primary-color);
            font-size: 2.5rem;
            font-weight: 500;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background-color: var(--surface-color);
            border-radius: 16px;
            padding: 2rem;
            position: relative;
            overflow: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            height: 100%;
            display: flex;
            flex-direction: column;
            cursor: pointer;
        }

        .feature-card video {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
            margin: 1rem 0;
        }

        .feature-card .video-container {
            position: relative;
            width: 100%;
            height: 200px;
            margin: 1rem 0;
            border-radius: 8px;
            overflow: hidden;
        }

        .feature-card .video-container video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            margin: 0;
        }

        .feature-card .video-container::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(0deg, var(--surface-color) 0%, transparent 100%);
            opacity: 0.3;
            transition: opacity 0.3s ease;
        }

        .feature-card:hover .video-container::after {
            opacity: 0;
        }

        .feature-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--elevation-1);
            pointer-events: none;
        }

        .feature-card:hover {
            transform: translateY(-4px) scale(1.02);
            background-color: var(--elevation-3);
            box-shadow: 0 8px 16px rgba(33, 150, 243, 0.2);
        }

        .feature-card h3 {
            color: var(--primary-color);
            margin-bottom: 1rem;
            font-weight: 500;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .feature-icon {
            font-size: 2rem;
            color: var(--primary-color);
            background: var(--elevation-2);
            width: 64px;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1);
            background: var(--primary-color);
            color: var(--on-primary);
        }

        .feature-card p {
            color: rgba(255, 255, 255, 0.87);
            font-size: 1rem;
            line-height: 1.6;
            flex-grow: 1;
        }

        .feature-details {
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
        }

        @media (max-width: 768px) {
            .header h1 {
                font-size: 2rem;
            }

            .header p {
                font-size: 1rem;
                padding: 0 1rem;
            }

            .section {
                padding: 3rem 1rem;
            }

            .section-title {
                font-size: 2rem;
                margin-bottom: 2rem;
            }

            .feature-card {
                padding: 1.5rem;
            }

            .feature-card h3 {
                font-size: 1.2rem;
            }

            .feature-card .video-container {
                height: 150px;
            }

            .detailed-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .detailed-title {
                font-size: 2rem;
            }

            .detailed-description {
                font-size: 1rem;
            }

            .feature-item {
                margin-bottom: 1rem;
            }

            .feature-item i {
                font-size: 1.2rem;
            }

            .feature-item-content h4 {
                font-size: 1rem;
            }

            .feature-item-content p {
                font-size: 0.9rem;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .contact-info h2 {
                font-size: 2rem;
            }

            .contact-details {
                font-size: 0.9rem;
            }

            .form-control {
                padding: 0.8rem;
            }

            .submit-btn {
                padding: 0.8rem 1.5rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 0 1rem;
            }

            .footer-section h3 {
                font-size: 1.1rem;
            }

            .footer-section p,
            .footer-links a {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .nav-links {
                gap: 0.5rem;
            }

            .nav-link {
                font-size: 0.75rem;
                padding: 0.3rem 0.5rem;
            }

            .header h1 {
                font-size: 1.8rem;
            }

            .feature-card .video-container {
                height: 120px;
            }

            .detailed-section {
                padding: 4rem 1rem;
            }

            .detailed-title {
                font-size: 1.8rem;
            }
        }

        .scroll-reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .scroll-reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        .detailed-section {
            padding: 8rem 2rem;
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .detailed-section:nth-child(odd) {
            background: var(--surface-color);
        }

        .detailed-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .detailed-content.reverse {
            direction: rtl;
        }

        .detailed-content.reverse > * {
            direction: ltr;
        }

        .detailed-text {
            padding: 2rem;
        }

        .detailed-title {
            color: var(--primary-color);
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            font-weight: 500;
        }

        .detailed-description {
            color: var(--on-surface);
            font-size: 1.1rem;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .feature-list {
            list-style: none;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.5rem;
            opacity: 0;
            transform: translateX(-20px);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .feature-item.revealed {
            opacity: 1;
            transform: translateX(0);
        }

        .feature-item i {
            color: var(--primary-color);
            font-size: 1.5rem;
        }

        .feature-item-content h4 {
            color: var(--primary-light);
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .feature-item-content p {
            color: var(--on-surface);
            opacity: 0.8;
            font-size: 0.95rem;
        }

        .detailed-image {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            aspect-ratio: 16/9;
            background: var(--elevation-2);
        }

        .detailed-image video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .detailed-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(0deg, var(--surface-color) 0%, transparent 100%);
            opacity: 0.2;
            transition: opacity 0.3s ease;
        }

        .detailed-image:hover::after {
            opacity: 0;
        }

        .app-name {
            display: flex;
            align-items: center;
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 2rem;
        }

        .app-name .ft {
            color: #FF5722;
            animation: slideIn 1.2s ease-out;
            font-style: italic;
            font-weight: bold;
        }

        .app-name .connect {
            color: var(--primary-color);
        }

        .footer {
            background: var(--surface-color);
            padding: 4rem 2rem;
            margin-top: 4rem;
            border-top: 1px solid var(--elevation-2);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
        }

        .footer-section h3 {
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
            font-weight: 500;
        }

        .footer-section p {
            color: var(--on-surface);
            opacity: 0.8;
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: var(--on-surface);
            text-decoration: none;
            opacity: 0.8;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-links a:hover {
            color: var(--primary-color);
            opacity: 1;
            transform: translateX(5px);
        }

        .footer-links i {
            font-size: 1.1rem;
            color: var(--primary-color);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-links a {
            color: var(--on-surface);
            text-decoration: none;
            opacity: 0.8;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            color: var(--primary-color);
            opacity: 1;
            transform: translateY(-3px);
        }

        .footer-bottom {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid var(--elevation-2);
            text-align: center;
            color: var(--on-surface);
            opacity: 0.6;
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }

        .footer-bottom img {
            height: 70px;
            vertical-align: middle;
        }

        @media (max-width: 968px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }
        }

        @media (max-width: 576px) {
            .footer-content {
                grid-template-columns: 1fr;
            }
        }

        .contact-form-section {
            background: var(--surface-color);
            padding: 6rem 2rem;
            margin-top: 4rem;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-info {
            padding: 2rem;
        }

        .contact-info h2 {
            color: var(--primary-color);
            font-size: 2.5rem;
            margin-bottom: 2rem;
        }

        .contact-details {
            list-style: none;
            margin-bottom: 2rem;
        }

        .contact-details li {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.5rem;
            color: var(--on-surface);
        }

        .contact-details i {
            color: var(--primary-color);
            font-size: 1.5rem;
        }

        .contact-form {
            background: var(--elevation-2);
            padding: 2rem;
            border-radius: 16px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--on-surface);
            font-size: 0.9rem;
        }

        .form-control {
            width: 100%;
            padding: 1rem;
            background: var(--surface-color);
            border: 1px solid var(--elevation-3);
            border-radius: 8px;
            color: var(--on-surface);
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 2px rgba(33, 150, 243, 0.1);
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .submit-btn {
            background: var(--primary-color);
            color: var(--on-primary);
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }

        .submit-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }

        @media (max-width: 768px) {
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        .samsung-logo {
            height: 30px;
            margin-left: 15px;
            vertical-align: middle;
            opacity: 0.9;
        }
        @media (max-width: 768px) {
            .samsung-logo {
                height: 24px;
            }
        }

        .menu-button {
            display: none;
            background: none;
            border: none;
            color: var(--on-surface);
            cursor: pointer;
            padding: 0.5rem;
        }

        .menu-button i {
            font-size: 1.5rem;
        }

        @media (max-width: 768px) {
            .menu-button {
                display: block;
            }

            .nav-content {
                padding: 0.5rem 1rem;
            }

            .nav-links {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                bottom: 0;
                width: 250px;
                background: var(--surface-color);
                padding: 1rem;
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
                box-shadow: 2px 0 8px rgba(0, 0, 0, 0.2);
                z-index: 1000;
                padding-top: 60px;
            }

            .nav-links.active {
                display: flex;
            }

            .nav-link {
                width: 100%;
                text-align: left;
                padding: 0.8rem;
            }
        }

        @keyframes shimmer {
            0% {
                background-position: -100% 0;
            }
            100% {
                background-position: 100% 0;
            }
        }

        @keyframes slideIn {
            from {
                transform: translateX(-20px);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 0.9;
                transform: translateY(0);
            }
        }

        .shimmer-text {
            position: relative;
            display: inline-block;
            background: linear-gradient(
                90deg,
                var(--primary-color) 0%,
                #64B5F6 50%,
                var(--primary-color) 100%
            );
            background-size: 200% auto;
            color: transparent;
            -webkit-background-clip: text;
            background-clip: text;
            font-size: inherit;
            font-weight: inherit;
            font-style: italic;
        }

        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            backdrop-filter: blur(5px);
        }

        .modal-content {
            position: relative;
            background: var(--surface-color);
            max-width: 500px;
            margin: 50px auto;
            padding: 2rem;
            border-radius: 16px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            animation: modalSlideIn 0.3s ease-out;
        }

        @keyframes modalSlideIn {
            from {
                transform: translateY(-20px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            color: var(--on-surface);
            cursor: pointer;
            padding: 0.5rem;
            transition: all 0.3s ease;
        }

        .modal-close:hover {
            color: var(--primary-color);
            transform: scale(1.1);
        }

        .modal-title {
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            font-weight: 500;
        }

        .assistance-info {
            margin-bottom: 1.5rem;
        }

        .assistance-info h4 {
            color: var(--primary-light);
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .assistance-info p {
            color: var(--on-surface);
            opacity: 0.8;
            margin-bottom: 1rem;
        }

        .assistance-contact {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--on-surface);
            text-decoration: none;
            margin-bottom: 0.5rem;
            transition: all 0.3s ease;
        }

        .assistance-contact:hover {
            color: var(--primary-color);
            transform: translateX(5px);
        }

        .assistance-contact i {
            color: var(--primary-color);
        }

        .teams-btn {
            background: #464EB8;
            color: var(--on-primary);
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .teams-btn:hover {
            background: #373CA9;
            transform: translateY(-2px);
        }

        .teams-btn i {
            font-size: 1.2rem;
        }

        /* Ajout du style pour l'overlay */
        .menu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
            backdrop-filter: blur(3px);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .menu-overlay.active {
            display: block;
            opacity: 1;
        }

        @media (max-width: 768px) {
            .detailed-section {
                padding: 4rem 1rem;
                min-height: auto;
            }

            .detailed-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .detailed-text {
                padding: 0;
                order: 2;
            }

            .detailed-image {
                order: 1;
                margin: 0 -1rem;
                border-radius: 0;
                aspect-ratio: 16/9;
            }

            .detailed-title {
                font-size: 2rem;
                margin-bottom: 1rem;
                text-align: center;
            }

            .detailed-description {
                font-size: 1rem;
                text-align: justify;
                margin-bottom: 1.5rem;
            }

            .feature-list {
                padding: 0 0.5rem;
            }

            .feature-item {
                margin-bottom: 1.5rem;
                padding: 1rem;
                background: var(--elevation-1);
                border-radius: 8px;
                transform: none;
            }

            .feature-item.revealed {
                transform: none;
            }

            .feature-item i {
                font-size: 1.8rem;
                padding: 0.5rem;
                background: var(--elevation-2);
                border-radius: 8px;
            }

            .feature-item-content h4 {
                font-size: 1.1rem;
                margin-bottom: 0.3rem;
            }

            .feature-item-content p {
                font-size: 0.9rem;
                line-height: 1.5;
            }

            .detailed-content.reverse {
                direction: ltr;
            }

            .detailed-content.reverse .detailed-text {
                order: 2;
            }

            .detailed-content.reverse .detailed-image {
                order: 1;
            }
        }

        @media (max-width: 480px) {
            .detailed-section {
                padding: 3rem 1rem;
            }

            .detailed-title {
                font-size: 1.8rem;
            }

            .detailed-description {
                font-size: 0.95rem;
            }

            .feature-item {
                margin-bottom: 1rem;
            }

            .feature-item i {
                font-size: 1.5rem;
            }

            .feature-item-content h4 {
                font-size: 1rem;
            }

            .feature-item-content p {
                font-size: 0.85rem;
            }
        }

        /* Language Selector Styles */
        .language-selector {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-right: 20px;
            padding: 0 10px;
            border-right: 1px solid rgba(255, 255, 255, 0.2);
        }

        .language-selector .nav-link {
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 5px 10px;
            border-radius: 4px;
            transition: background-color 0.3s ease;
        }

        .language-selector .nav-link:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        .language-selector .nav-link.active {
            background-color: rgba(255, 255, 255, 0.15);
            font-weight: 500;
        }

        .flag-icon {
            width: 20px;
            height: 15px;
            object-fit: cover;
            border-radius: 2px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
        }

        @media (max-width: 768px) {
            .language-selector {
                margin: 10px 0;
                padding: 10px 0;
                border-right: none;
                border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            }
        }
