
        :root {
            --primary-dark: #1A2634;
            --primary-medium: #26334D;
            --primary-light: #3C4C77;
            --accent-blue: #4DB3F9;
            --accent-purple: #9178EC;
            --text-light: #F1F4FF;
            --text-gray: #A3B1CC;
            --transition: all 0.3s ease;
            --section-padding: 80px 20px;
            --border-radius: 16px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Raleway', sans-serif;
            background: linear-gradient(135deg, var(--primary-dark), #1e2a40);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
            position: relative;
            min-height: 100vh;
        }
        
        body::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 10% 20%, rgba(74, 108, 187, 0.1) 0%, rgba(0, 0, 0, 0) 40%),
                        radial-gradient(circle at 90% 60%, rgba(147, 119, 236, 0.1) 0%, rgba(0, 0, 0, 0) 40%);
            z-index: -1;
        }
        
        h1, h2, h3, h4 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            line-height: 1.2;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        /* Header */
        header {
            padding: 20px 0;
            background-color: rgba(26, 38, 52, 0.9);
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
            border-bottom: 1px solid rgba(100, 130, 180, 0.3);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }
        
        .logo-icon {
            font-size: 28px;
            color: var(--accent-blue);
            position: relative;
        }
        
        .logo-icon::after {
            content: "";
            position: absolute;
            width: 16px;
            height: 16px;
            border: 3px solid var(--accent-purple);
            border-radius: 50%;
            right: -8px;
            top: 4px;
        }
        
        .logo-text {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 28px;
            background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 40px;
        }
        
        .nav-link {
            text-decoration: none;
            color: var(--text-light);
            font-weight: 500;
            font-size: 18px;
            transition: var(--transition);
            position: relative;
            padding: 5px 0;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
            transition: var(--transition);
        }
        
        .nav-link:hover {
            color: var(--accent-blue);
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 28px;
            color: var(--text-light);
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            padding: var(--section-padding);
            min-height: 90vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            max-width: 700px;
            z-index: 2;
        }
        
        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 25px;
            line-height: 1.1;
        }
        
        .hero-accent {
            background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero p {
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            margin-bottom: 40px;
            color: var(--text-gray);
            max-width: 600px;
        }
        
        .hero-cta {
            display: inline-block;
            padding: 16px 40px;
            background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 18px;
            transition: var(--transition);
            box-shadow: 0 5px 20px rgba(77, 179, 249, 0.4);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }
        
        .hero-cta:hover {
            transform: translateY(-5px);
            box-shadow: 0 7px 25px rgba(77, 179, 249, 0.6);
        }
        
        .hero-cta::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(-100%);
            transition: var(--transition);
        }
        
        .hero-cta:hover::after {
            transform: translateX(0);
        }
        
        .hero-image {
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 50%;
            max-width: 700px;
            height: 70%;
            background: radial-gradient(circle, var(--accent-blue) 0%, transparent 70%);
            opacity: 0.2;
            border-radius: 50%;
            filter: blur(40px);
            z-index: 1;
        }
        
        /* About Section */
        .about {
            padding: var(--section-padding);
            background-color: rgba(26, 38, 52, 0.6);
            position: relative;
        }
        
        .section-title {
            text-align: center;
            font-size: clamp(2rem, 3.5vw, 2.5rem);
            margin-bottom: 50px;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
            border-radius: 10px;
        }
        
        .about-content {
            display: flex;
            gap: 60px;
            align-items: center;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text p {
            margin-bottom: 20px;
            font-size: 18px;
            color: var(--text-gray);
        }
        
        .about-image {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        } 
        
        .art-circle {
            width: 320px;
            height: 320px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
        }
        
        .art-circle::before {
            content: '';
            position: absolute;
            top: -60px;
            left: -60px;
            right: -60px;
            bottom: -60px;
            background: 
                radial-gradient(circle at 30% 30%, var(--accent-blue) 0%, transparent 40%),
                radial-gradient(circle at 70% 70%, var(--accent-purple) 0%, transparent 40%);
            animation: rotate 20s linear infinite;
        }
        
        .art-circle::after {
            content: '';
            position: absolute;
            inset: 8px;
            background: var(--primary-medium);
            border-radius: 50%;
        }
        
        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }
        
        /* Gallery Section */
        .gallery {
            padding: var(--section-padding);
            position: relative;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .gallery-item {
            border-radius: var(--border-radius);
            overflow: hidden;
            position: relative;
            height: 300px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            transition: var(--transition);
            cursor: pointer;
        }
        
        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(77, 179, 249, 0.2);
        }
        
        .gallery-img {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
            position: relative;
            overflow: hidden;
        }
        
        .gallery-item:nth-child(1) .gallery-img::before {
            background: 
                radial-gradient(circle at 30% 30%, #4DB3F9 0%, transparent 40%),
                radial-gradient(circle at 70% 70%, #7D5FFF 0%, transparent 40%);
        }
        
        .gallery-item:nth-child(2) .gallery-img::before {
            background: 
                radial-gradient(circle at 20% 50%, #FF6B9A 0%, transparent 40%),
                radial-gradient(circle at 80% 30%, #9D5CFF 0%, transparent 40%);
        }
        
        .gallery-item:nth-child(3) .gallery-img::before {
            background: 
                radial-gradient(circle at 40% 70%, #5FFBF1 0%, transparent 40%),
                radial-gradient(circle at 60% 20%, #FFA07A 0%, transparent 40%);
        }
        
        .gallery-img::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            animation: rotate 25s linear infinite;
        }
        
        .gallery-img::after {
            content: '';
            position: absolute;
            inset: 5px;
            background: rgba(26, 38, 52, 0.7);
            border-radius: var(--border-radius);
        }
        
        .gallery-title {
            position: absolute;
            bottom: 20px;
            left: 20px;
            font-weight: 600;
            font-size: 22px;
            z-index: 2;
        }
        
        .gallery-btn {
            display: block;
            margin: 50px auto 0;
            padding: 14px 40px;
            background: transparent;
            border: 2px solid var(--accent-blue);
            color: var(--accent-blue);
            font-size: 18px;
            border-radius: 50px;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 500;
        }
        
        .gallery-btn:hover {
            background: var(--accent-blue);
            color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(77, 179, 249, 0.4);
        }
        
        /* Footer */
        footer {
            background-color: rgba(15, 23, 35, 0.95);
            padding: 60px 0 30px;
            border-top: 1px solid rgba(100, 130, 180, 0.2);
        }
        
        .footer-container {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
        }
        
        .footer-info {
            flex: 1;
            min-width: 300px;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 25px;
        }
        
        .footer-logo-icon {
            font-size: 24px;
            color: var(--accent-blue);
        }
        
        .footer-logo-text {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 24px;
            background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .footer-info p {
            color: var(--text-gray);
            max-width: 350px;
            font-size: 16px;
            line-height: 1.7;
        }
        
        .footer-links {
            flex: 1;
            min-width: 200px;
        }
        
        .footer-title {
            font-size: 20px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
            border-radius: 10px;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            text-decoration: none;
            color: var(--text-gray);
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: var(--accent-blue);
            transform: translateX(5px);
        }
        
        .copyright {
            text-align: center;
            margin-top: 60px;
            padding-top: 30px;
            border-top: 1px solid rgba(163, 177, 204, 0.1);
            color: var(--text-gray);
            font-size: 15px;
        }
        
        /* Cookie Popup */
        .cookie-popup {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            max-width: 600px;
            background: rgba(38, 51, 77, 0.95);
            border-radius: var(--border-radius);
            padding: 25px;
            display: flex;
            flex-direction: column;
            gap: 20px;
            z-index: 1000;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(100, 130, 180, 0.4);
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }
        
        .cookie-popup.show {
            opacity: 1;
            visibility: visible;
            bottom: 40px;
        }
        
        .cookie-title {
            font-size: 20px;
            color: var(--accent-blue);
        }
        
        .cookie-text {
            color: var(--text-gray);
            font-size: 16px;
            line-height: 1.6;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 15px;
        }
        
        .cookie-btn {
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            font-size: 16px;
        }
        
        .cookie-accept {
            background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
            color: white;
            border: none;
        }
        
        .cookie-accept:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(77, 179, 249, 0.4);
        }
        
        .cookie-settings {
            background: transparent;
            border: 1px solid var(--accent-blue);
            color: var(--accent-blue);
        }
        
        .cookie-settings:hover {
            background-color: rgba(77, 179, 249, 0.1);
        }

        /* Contact Form Styles */
.contact-form {
    background: rgba(26, 38, 52, 0.6);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.contact-form label {
    font-size: 16px;
    color: var(--text-light);
    display: block;
    margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 2px solid var(--primary-medium);
    border-radius: 8px;
    background: #fff;
    color: var(--primary-dark);
    font-size: 16px;
}

.contact-form button {
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    color: white;
    font-size: 18px;
    padding: 12px 20px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-form button:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(77, 179, 249, 0.4);
}

/* Contact Info Styles */
.contact-info {
    padding: 50px;
}

.contact-info a {
    color: var(--accent-blue); /* Колір акценту */
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--accent-purple); /* Колір при наведенні */
}

.contact-info h3 {
    font-size: 22px;
    color: var(--accent-blue);
    margin-bottom: 10px;
}

.contact-info p {
    font-size: 16px;
    color: var(--text-gray);
}

.contact-info .contact-map {
    margin-top: 20px;
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
}

/* General Styles for Terms, Privacy Policy, and Cookie Policy */
section {
    padding: 80px 20px;
    background-color: rgba(26, 38, 52, 0.8);
    color: var(--text-light);
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    border-radius: 10px;
}

.content {
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 1.1rem;
    color: var(--text-light);
}

.content h3 {
    font-size: 1.8rem;
    color: var(--accent-blue);
    margin-top: 30px;
    margin-bottom: 20px;
}

.content p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

.content ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 30px;
}

.content ul li {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.content a {
    color: var(--accent-blue);
    text-decoration: none;
}

.content a:hover {
    text-decoration: underline;
}

.content .contact-info {
    margin-top: 40px;
}

.content .contact-info h3 {
    font-size: 1.8rem;
    color: var(--accent-blue);
    margin-bottom: 10px;
}

.content .contact-info p {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.content .contact-info a {
    font-size: 1.1rem;
    color: var(--accent-blue);
}

@media (max-width: 768px) {
    .content {
        padding: 0 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .content h3 {
        font-size: 1.6rem;
    }

    .content p {
        font-size: 1rem;
    }

    .content ul li {
        font-size: 1rem;
    }
}



/* Responsive Design for Contact Form */
@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
        text-align: center;
    }

    .contact-form {
        width: 100%;
        margin-bottom: 20px;
    }

    .contact-info {
        width: 100%;
    }
}

        
        /* Responsive Design */
        @media (max-width: 991px) {
            .about-content {
                flex-direction: column;
                text-align: center;
            }
            
            .section-title::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .about-text p {
                text-align: center;
            }
        }
        
        @media (max-width: 768px) {
            .main-nav {
                position: fixed;
                top: 0;
                right: -300px;
                width: 280px;
                height: 100vh;
                background: rgba(26, 38, 52, 0.95);
                backdrop-filter: blur(10px);
                padding: 80px 30px;
                z-index: 99;
                transition: var(--transition);
                border-left: 1px solid rgba(100, 130, 180, 0.2);
            }
            
            .main-nav.active {
                right: 0;
            }
            
            .main-nav ul {
                flex-direction: column;
                gap: 30px;
            }
            
            .mobile-toggle {
                display: block;
                z-index: 100;
            }
            
            .hero-content {
                text-align: center;
                margin: 0 auto;
            }
            
            .hero p {
                margin: 0 auto 40px;
            }
            
            .hero-image {
                width: 100%;
                top: 20%;
                left: 0;
                transform: none;
                opacity: 0.15;
            }
            
            .cookie-buttons {
                flex-direction: column;
            }
            
            .cookie-btn {
                width: 100%;
                text-align: center;
            }
        }
        
        @media (max-width: 480px) {
            :root {
                --section-padding: 60px 20px;
            }
            
            .hero {
                min-height: 80vh;
            }
            
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-container {
                flex-direction: column;
            }
            
            .footer-info {
                min-width: 100%;
            }
        }
    