/* Root variables */
        :root {
            --primary: #318a82;
            --primary-light: #4fada5;
            --secondary: #ff6b6b;
            --light: #f8f5f2;
            --dark: #2b2b2b;
            --transition: all 0.3s ease;
            --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            --radius: 12px;
        }

        /* Reset and base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: var(--light);
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: var(--primary);
            color: white;
            border-radius: var(--radius);
            font-weight: 600;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-size: 16px;
        }

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

        .btn-secondary {
            background: var(--secondary);
        }

        .btn-secondary:hover {
            background: #ff5252;
        }

        /* Header styles */
        header {
            background-color: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
            display: flex;
            align-items: center;
        }

        .logo i {
            margin-right: 10px;
            font-size: 28px;
        }

        .nav-menu {
            display: flex;
            gap: 30px;
        }

        .nav-menu a {
            position: relative;
            font-weight: 500;
        }

        .nav-menu a:hover {
            color: var(--primary);
        }

        .nav-menu a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--primary);
            transition: var(--transition);
        }

        .nav-menu a:hover:after {
            width: 100%;
        }

        .mobile-toggle {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            height: 90vh;
            background: linear-gradient(rgba(49, 138, 130, 0.85), rgba(255, 107, 107, 0.2)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23318a82"/><circle cx="50" cy="50" r="40" fill="%234fada5" opacity="0.5"/></svg>') center/cover;
            display: flex;
            align-items: center;
            color: white;
            position: relative;
        }

        .hero-content {
            max-width: 700px;
            position: relative;
            z-index: 2;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        .hero-btns {
            display: flex;
            gap: 15px;
        }

        /* About Section */
        .about {
            padding: 100px 0;
            background-color: white;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 60px;
            color: var(--primary);
            position: relative;
        }

        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background-color: var(--secondary);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }

        .about-content {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .about-text {
            flex: 1;
        }

        .about-text h2 {
            font-size: 2rem;
            color: var(--dark);
            margin-bottom: 20px;
        }

        .about-text p {
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .about-image {
            flex: 1;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            height: 500px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23318a82"/><circle cx="50" cy="50" r="40" fill="%234fada5" opacity="0.7"/></svg>') center/cover;
        }

        /* Gallery */
        .gallery {
            padding: 100px 0;
            background-color: var(--light);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }

        .gallery-item {
            position: relative;
            height: 300px;
            overflow: hidden;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }

        .gallery-img {
            height: 100%;
            background: var(--primary);
            transition: var(--transition);
        }

        .gallery-item:hover .gallery-img {
            transform: scale(1.1);
        }

        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 15px;
            transform: translateY(100%);
            transition: var(--transition);
        }

        .gallery-item:hover .gallery-caption {
            transform: translateY(0);
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 60px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-logo {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--light);
        }

        .footer-about p {
            color: #ccc;
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .footer-links h3,
        .footer-contact h3 {
            font-size: 20px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-links h3:after,
        .footer-contact h3:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 2px;
            background-color: var(--primary);
            bottom: 0;
            left: 0;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #ccc;
            transition: var(--transition);
            display: block;
            padding: 8px 0;
        }

        .footer-links a:hover {
            color: var(--primary);
            transform: translateX(5px);
        }

        .footer-contact p {
            margin-bottom: 10px;
            color: #ccc;
            display: flex;
            align-items: center;
        }

        .footer-contact i {
            margin-right: 10px;
            color: var(--primary);
            min-width: 24px;
        }

        .footer-bottom {
            border-top: 1px solid #444;
            padding-top: 20px;
            text-align: center;
            color: #aaa;
            font-size: 14px;
        }

        /* Pages */
        .page-container {
            padding: 40px 0;
            min-height: 70vh;
        }

        .page-content {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            padding: 40px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }

        .page-content h1 {
            color: var(--primary);
            font-size: 2.5rem;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }

        .page-content h1:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background-color: var(--secondary);
            bottom: 0;
            left: 0;
        }

        .page-content h2 {
            color: var(--primary);
            font-size: 1.8rem;
            margin: 25px 0 15px;
        }

        .page-content p {
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .page-content ul {
            margin-left: 30px;
            margin-bottom: 30px;
        }

        .page-content li {
            margin-bottom: 10px;
            line-height: 1.6;
        }

        /* Cookie Consent */
        #cookie-consent {
            position: fixed;
            bottom: 20px;
            right: 20px;
            max-width: 400px;
            background: white;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 25px;
            z-index: 1000;
            transform: translateY(200%);
            transition: transform 0.5s ease;
        }

        #cookie-consent.show {
            transform: translateY(0);
        }

        #cookie-consent h3 {
            margin-bottom: 15px;
            color: var(--primary);
        }

        #cookie-consent p {
            margin-bottom: 20px;
            color: #666;
        }

        #cookie-consent .consent-btns {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        /* Contact Form Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 40px 0;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}



        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 3rem;
            }

            .about-content {
                flex-direction: column;
            }

            .about-image {
                width: 100%;
                max-width: 500px;
                margin-top: 30px;
            }
        }

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: white;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* Центрування кнопок по горизонталі */
    gap: 40px;
    transition: var(--transition);
    z-index: 1000;
  }

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

  .nav-menu a {
    font-size: 20px;
    text-align: center;
    width: 100%;
    padding: 10px 0;
  }

  .mobile-toggle {
    display: block;
  }



            .hero h1 {
                font-size: 2.3rem;
            }

            .hero-btns {
                flex-direction: column;
                gap: 10px;
            }

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

            .gallery-item {
                height: 250px;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .btn {
                width: 100%;
                text-align: center;
            }
            
            .page-content {
                padding: 30px 20px;
            }
            
            #cookie-consent {
                width: calc(100% - 40px);
                left: 20px;
                right: 20px;
                max-width: unset;
            }
            
            #cookie-consent .consent-btns {
                flex-direction: column;
            }
        }