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

        :root {
            --primary: #6366f1;
            --primary-light: #818cf8;
            --primary-dark: #4f46e5;
            --accent: #f59e0b;
            --dark: #0f172a;
            --dark-light: #1e293b;
            --light: #f1f5f9;
            --white: #ffffff;
            --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: var(--white);
            background: var(--dark);
            overflow-x: hidden;
        }

		
a:link, a:visited {
    text-decoration: none;
}		
		
		
        /* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.3); /* Зменшив непрозорість для більшої прозорості */
    backdrop-filter: blur(10px);       /* Розмиття фону */
    -webkit-backdrop-filter: blur(10px); /* Підтримка для Safari */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transform: translateY(0);
    transition: all 0.3s ease;
}


        nav.hidden {
            transform: translateY(-100%);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: clamp(1.5rem, 3vw, 1.8rem);
            font-weight: 800;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: var(--gradient);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-10px) rotate(10deg); }
        }

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px; /* Відстань між пунктами меню */
    margin: 0;
    padding: 0;
}

.nav-links li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    color: var(--light, #fff);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    font-size: clamp(0.9rem, 2vw, 1rem);
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

/* Іконки */
.nav-links li i {
    font-size: 16px;
}

/* Градієнтна підкреслена лінія */
.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient, linear-gradient(90deg, #38bdf8, #3b82f6));
    transition: width 0.3s ease;
    border-radius: 2px;
}

/* Hover ефект */
.nav-links a:hover {
    color: var(--primary-light, #38bdf8);
}
.nav-links a:hover::before {
    width: 100%;
}

/* Активне посилання — таке саме як hover */
.nav-links a.active {
    color: var(--primary-light, #38bdf8);
}
.nav-links a.active::before {
    width: 100%;
}

        /* Hero Section */
        #home {
            min-height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: radial-gradient(ellipse at center, var(--dark-light) 0%, var(--dark) 100%);
            padding: 0 1rem;
        }

        .particles {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--primary);
            border-radius: 50%;
            opacity: 0.5;
            animation: float-particle 20s infinite linear;
        }

        @keyframes float-particle {
            from {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.5;
            }
            90% {
                opacity: 0.5;
            }
            to {
                transform: translateY(-100vh) rotate(360deg);
                opacity: 0;
            }
        }

        .hero-content {
            text-align: center;
            z-index: 2;
            max-width: 1000px;
            padding: 2rem;
        }

.hero-title {
    font-size: clamp(1.5rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--white) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
}


        @keyframes gradient-shift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .hero-subtitle {
            font-size: clamp(1rem, 3vw, 1.5rem);
            color: var(--light);
            margin-bottom: 3rem;
            opacity: 0.8;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: clamp(0.8rem, 2vw, 1.2rem) clamp(1.5rem, 4vw, 2.5rem);
            font-size: clamp(0.9rem, 2vw, 1.1rem);
            font-weight: 600;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            min-width: 150px;
            justify-content: center;
        }

        .btn-primary {
            background: var(--gradient);
            color: var(--white);
            box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--primary);
            backdrop-filter: blur(10px);
        }

        .btn-secondary:hover {
            background: var(--primary);
            border-color: var(--primary);
            transform: translateY(-3px);
        }

        /* 3D Cards Effect */
        .floating-cards {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .card-3d {
            position: absolute;
            width: clamp(200px, 30vw, 300px);
            height: clamp(130px, 20vw, 200px);
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
            border: 1px solid rgba(99, 102, 241, 0.2);
            border-radius: 20px;
            backdrop-filter: blur(10px);
            transform: perspective(1000px) rotateY(20deg) rotateX(10deg);
            animation: float-card 20s ease-in-out infinite;
        }

        .card-3d:nth-child(1) {
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }

        .card-3d:nth-child(2) {
            top: 20%;
            right: 10%;
            animation-delay: 5s;
        }

        .card-3d:nth-child(3) {
            bottom: 20%;
            left: 10%;
            animation-delay: 10s;
        }

        @keyframes float-card {
            0%, 100% {
                transform: perspective(1000px) rotateY(20deg) rotateX(10deg) translateZ(0);
            }
            50% {
                transform: perspective(1000px) rotateY(-20deg) rotateX(-10deg) translateZ(50px);
            }
        }

        /* Services Section */
        #services {
            padding: clamp(2.5rem, 8vw, 6rem) 2rem;
            background: var(--dark);
            position: relative;
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 4rem;
        }

        .section-title {
            font-size: clamp(1.2rem, 6vw, 4rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            font-size: clamp(1rem, 3vw, 1.2rem);
            color: var(--light);
            opacity: 0.8;
        }

        .services-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: linear-gradient(135deg, var(--dark-light) 0%, rgba(30, 41, 59, 0.5) 100%);
            border: 1px solid rgba(99, 102, 241, 0.2);
            border-radius: 24px;
            padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2rem);
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
            box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
        }

        .service-icon {
            width: clamp(60px, 10vw, 80px);
            height: clamp(60px, 10vw, 80px);
            background: var(--gradient);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: clamp(1.5rem, 4vw, 2.5rem);
            margin-bottom: 2rem;
            animation: icon-pulse 2s ease-in-out infinite;
        }

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

        .service-card h3 {
            font-size: clamp(1.3rem, 3vw, 1.8rem);
            margin-bottom: 1rem;
            color: var(--white);
        }

        .service-card p {
            color: var(--light);
            margin-bottom: 2rem;
            opacity: 0.8;
            font-size: clamp(0.9rem, 2vw, 1rem);
        }

        .service-features {
            list-style: none;
        }

        .service-features li {
            color: var(--light);
            padding: 0.75rem 0;
            padding-left: 2rem;
            position: relative;
            opacity: 0.8;
            font-size: clamp(0.8rem, 2vw, 0.9rem);
        }

        .service-features li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
        }

        /* Contact Section */
        #contact {
            padding: clamp(3rem, 8vw, 6rem) 2rem;
            background: linear-gradient(180deg, var(--dark) 0%, var(--dark-light) 100%);
            position: relative;
            overflow: hidden;
        }

       .contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: start;
}


        .contact-info {
            background: rgba(30, 41, 59, 0.5);
            border: 1px solid rgba(99, 102, 241, 0.2);
            border-radius: 24px;
            padding: clamp(2rem, 4vw, 3rem);
            backdrop-filter: blur(10px);
        }

        .contact-info h3 {
            font-size: clamp(1.5rem, 4vw, 2rem);
            margin-bottom: 2rem;
            color: var(--white);
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
            padding: 1.5rem;
            background: rgba(99, 102, 241, 0.1);
            border-radius: 16px;
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            background: rgba(99, 102, 241, 0.2);
            transform: translateX(10px);
        }

        .contact-icon {
    width: 50px;
    height: 50px;
	padding: 10px;
        background: rgba(69,106,193, 0.3); /* Зменшив непрозорість для більшої прозорості */
    backdrop-filter: blur(10px);       /* Розмиття фону */
    -webkit-backdrop-filter: blur(10px); /* Підтримка для Safari */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    color: var(--white); /* ← оце додай, якщо ще не було */
}


        .contact-item div {
            flex: 1;
        }

        .contact-item p {
            margin: 0 0 0.5rem 0;
            color: var(--light);
            opacity: 0.8;
            font-size: clamp(0.8rem, 2vw, 0.9rem);
        }

        .contact-item a, .contact-item span {
            color: var(--white);
            text-decoration: none;
            font-size: clamp(0.9rem, 2vw, 1.1rem);
            transition: color 0.3s ease;
        }

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

        .contact-form {
            background: rgba(30, 41, 59, 0.5);
            border: 1px solid rgba(99, 102, 241, 0.2);
            border-radius: 24px;
            padding: clamp(2rem, 4vw, 3rem);
            backdrop-filter: blur(10px);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.75rem;
            color: var(--light);
            font-weight: 600;
            font-size: clamp(0.9rem, 2vw, 1rem);
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem 1.5rem;
            background: rgba(15, 23, 42, 0.5);
            border: 1px solid rgba(99, 102, 241, 0.3);
            border-radius: 12px;
            color: var(--white);
            font-size: clamp(0.9rem, 2vw, 1rem);
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            background: rgba(15, 23, 42, 0.8);
            box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .btn-submit {
            width: 100%;
            padding: 1.2rem;
            background: var(--gradient);
            color: var(--white);
            border: none;
            border-radius: 12px;
            font-size: clamp(1rem, 2vw, 1.1rem);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
        }

        .btn-submit::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn-submit:active::after {
            width: 300px;
            height: 300px;
        }

        /* Mobile Menu */
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            z-index: 1001;
        }

        .menu-toggle span {
            width: 30px;
            height: 3px;
            background: var(--white);
            margin: 4px 0;
            transition: 0.3s;
            border-radius: 3px;
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        /* Footer */
        footer {
            background: var(--dark);
            padding: 3rem 2rem;
            text-align: center;
            border-top: 1px solid rgba(99, 102, 241, 0.2);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .social-link {
            width: 50px;
            height: 50px;
            background: rgba(99, 102, 241, 0.1);
            border: 1px solid rgba(99, 102, 241, 0.3);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--primary);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
        }

        .footer-text {
            color: var(--light);
            opacity: 0.8;
            font-size: clamp(0.8rem, 2vw, 1rem);
        }

        /* Scroll Progress */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 3px;
            background: var(--gradient);
            z-index: 1001;
            transition: width 0.3s ease;
        }

        /* Loading Animation */
        .loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--dark);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }

        .loader.hide {
            opacity: 0;
            pointer-events: none;
        }

        .loader-inner {
            width: 80px;
            height: 80px;
            border: 3px solid rgba(99, 102, 241, 0.3);
            border-top-color: var(--primary);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .contact-container {
                grid-template-columns: 1fr;
            }
            
            .services-container {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                left: -100%;
                top: 0;
                flex-direction: column;
                background: var(--dark);
                width: 100%;
                height: 100vh;
                justify-content: center;
                transition: 0.3s;
                gap: 2rem;
            }

            .nav-links.active {
                left: 0;
            }

            .menu-toggle {
                display: flex;
            }

            .floating-cards {
                display: none;
            }

            .services-container {
                grid-template-columns: 1fr;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 300px;
            }
        }

        @media (max-width: 480px) {
            .nav-container {
                padding: 1rem 1rem;
            }
            
            .hero-content {
                padding: 1rem;
            }
            
            .service-card,
            .contact-info,
            .contact-form {
                padding: 1.5rem;
            }
            
            .contact-item {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }
        }

        /* Accessibility improvements */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* Focus styles for better accessibility */
/* Прибрати обводку фокусу з посилань у навігації */
.nav-links a:focus {
    outline: none;
    box-shadow: none;
}

/* Можна залишити фокус для кнопок і форм (для доступності) */
.btn:focus,
.social-link:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}


   .custom-select {
            position: relative;
            width: 100%;
            max-width: 300px;
            margin: 20px 0;
        }

        /* Основні стилі для select з Firefox сумісністю */
        .custom-select select {
            width: 100%;
            padding: 15px 40px 15px 20px;
            background: rgba(139, 127, 245, 0.1);
            border: 2px solid rgba(139, 127, 245, 0.2);
            border-radius: 15px;
            color: #fff;
            font-size: 16px;
            font-family: inherit;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            
            /* Firefox специфічні властивості */
            -moz-appearance: none;
            -webkit-appearance: none;
            appearance: none;
            
            /* Додаткові стилі для Firefox */
            background-image: none;
            text-indent: 0.01px;
            text-overflow: '';
        }

        /* Firefox специфічні стилі */
        @-moz-document url-prefix() {
            .custom-select select {
                background: rgba(139, 127, 245, 0.1);
                color: #fff;
                text-shadow: 0 0 0 #fff;
                padding-right: 40px;
            }
        }

        .custom-select select:hover {
            background: rgba(139, 127, 245, 0.15);
            border-color: rgba(139, 127, 245, 0.4);
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(139, 127, 245, 0.3);
        }

        .custom-select select:focus {
            outline: none;
            background: rgba(139, 127, 245, 0.2);
            border-color: #8b7ff5;
            box-shadow: 0 0 0 3px rgba(139, 127, 245, 0.2);
        }

        /* Покращена стрілка для всіх браузерів */
        .custom-select::after {
            content: "▼";
            position: absolute;
            top: 50%;
            right: 20px;
            transform: translateY(-50%);
            color: #8b7ff5;
            pointer-events: none;
            font-size: 14px;
            transition: all 0.3s ease;
            z-index: 1;
        }

        .custom-select:hover::after {
            color: #a599ff;
            transform: translateY(-50%) scale(1.1);
        }

        /* Стилі для option - обмежені у Firefox */
        .custom-select select option {
            background: #2a1f4a;
            color: #fff;
            padding: 12px;
        }

        .custom-select select option:checked {
            background: #8b7ff5;
        }

        /* Альтернативний підхід - кастомний dropdown */
        .custom-dropdown {
            position: relative;
            width: 100%;
            max-width: 300px;
            margin: 20px 0;
        }

        .dropdown-selected {
            padding: 15px 40px 15px 20px;
            background: rgba(139, 127, 245, 0.1);
            border: 2px solid rgba(139, 127, 245, 0.2);
            border-radius: 15px;
            color: #fff;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            user-select: none;
        }

        .dropdown-selected:hover {
            background: rgba(139, 127, 245, 0.15);
            border-color: rgba(139, 127, 245, 0.4);
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(139, 127, 245, 0.3);
        }

        .dropdown-selected::after {
            content: "▼";
            position: absolute;
            top: 50%;
            right: 20px;
            transform: translateY(-50%);
            color: #8b7ff5;
            transition: all 0.3s ease;
        }

        .dropdown-selected.active::after {
            transform: translateY(-50%) rotate(180deg);
        }

        .dropdown-options {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: rgba(42, 31, 74, 0.95);
            border: 2px solid rgba(139, 127, 245, 0.2);
            border-radius: 15px;
            margin-top: 5px;
            max-height: 200px;
            overflow-y: auto;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .dropdown-options.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-option {
            padding: 12px 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(139, 127, 245, 0.1);
        }

        .dropdown-option:last-child {
            border-bottom: none;
        }

        .dropdown-option:hover {
            background: rgba(139, 127, 245, 0.2);
            color: #a599ff;
        }

        .dropdown-option.selected {
            background: rgba(139, 127, 245, 0.3);
            color: #8b7ff5;
        }

        /* Стилі для інпута */
        #contact_value {
            background: rgba(139, 127, 245, 0.1);
            border: 2px solid rgba(139, 127, 245, 0.2);
            border-radius: 15px;
            color: #fff;
            padding: 15px 20px;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            width: 100%;
            max-width: 300px;
            margin: 20px 0;
        }

        #contact_value:hover {
            background: rgba(139, 127, 245, 0.15);
            border-color: rgba(139, 127, 245, 0.4);
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(139, 127, 245, 0.3);
        }

        #contact_value:focus {
            outline: none;
            background: rgba(139, 127, 245, 0.2);
            border-color: #8b7ff5;
            box-shadow: 0 0 0 3px rgba(139, 127, 245, 0.2);
        }

        #contact_value::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        h3 {
            color: #8b7ff5;
            margin-bottom: 10px;
        }