/* Base Styles */
        :root {
            --primary: #1a73e8;
            --primary-dark: #0d47a1;
            --secondary: #34a853;
            --accent: #fbbc05;
            --text: #202124;
            --light-text: #5f6368;
            --background: #ffffff;
            --light-gray: #f8f9fa;
            --border: #dadce0;
            --shadow: 0 4px 12px rgba(0,0,0,0.08);
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text);
            background-color: var(--background);
            overflow-x: hidden;
        }
        
        img {
            max-width: 100%;
            height: auto;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .section {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 0.5em;
            color: var(--primary);
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -10px;
            width: 60px;
            height: 4px;
            background-color: var(--accent);
            border-radius: 2px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--primary);
            color: white;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .btn-secondary {
            background-color: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }
        
        .btn-secondary:hover {
            background-color: var(--primary);
            color: white;
        }
        
        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow);
            z-index: 1000;
            padding: 15px 0;
            transition: var(--transition);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
        }
        
        .logo i {
            font-size: 2rem;
            margin-right: 10px;
            color: var(--secondary);
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 30px;
        }
        
        .nav-menu a {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            position: relative;
            transition: var(--transition);
        }
        
        .nav-menu a:hover {
            color: var(--primary);
        }
        
        .nav-menu a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--primary);
            bottom: -5px;
            left: 0;
            transition: var(--transition);
        }
        
        .nav-menu a:hover::after {
            width: 100%;
        }
        
        .menu-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* Hero Section */
     .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(250, 250, 250, 0.9) 0%, rgba(240, 248, 255, 0.295) 100%), 
                url('images/header.png');
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

        .hero_legal {
           height: 300px;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, rgba(250, 250, 250, 0.9) 0%, rgba(240, 248, 255, 0.9) 100%);
            background-position: bottom;
            background-size: cover;
            position: relative;
            overflow: hidden;
            padding-top: 80px;
        }
        
        .hero-content {
            max-width: 600px;
            z-index: 2;
        }
        
        .hero-title {
            font-size: 3.5rem;
            line-height: 1.2;
            margin-bottom: 20px;
            color: var(--text);
        }
        
        .hero-title span {
            color: var(--primary);
        }
        
        .hero-text {
            font-size: 1.2rem;
            margin-bottom: 40px;
            color: var(--light-text);
        }
        
        .hero-btns {
            display: flex;
            gap: 15px;
        }
        
        .hero-image {
            position: absolute;
            right: 0;
            bottom: 0;
            width: 45%;
            max-width: 600px;
            z-index: 1;
        }
        
        /* About Section */
        .about {
            background-color: var(--light-gray);
            position: relative;
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .about-image {
            width: 100%;
            height: auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            object-fit: cover;  
        }

         .about-image img {
            width: 100%;
            height: auto;
            
            object-fit: cover;  
        }
        
        .about-text {
            font-size: 1.1rem;
            margin-bottom: 20px;
            color: var(--light-text);
        }
        
        .features {
            margin-top: 30px;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        
        .feature-box {
            display: flex;
            align-items: flex-start;
        }
        
        .feature-icon {
            background: var(--primary);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .feature-content h3 {
            margin-bottom: 5px;
            font-size: 1.2rem;
        }
        
        /* Gallery Section */
        .gallery {
            position: relative;
            overflow: hidden;
        }
        
        .gallery-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .gallery-title::after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .gallery-item {
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            height: 250px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(26, 115, 232, 0.9);
            color: white;
            padding: 15px;
            transform: translateY(100%);
            transition: var(--transition);
        }
        
        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }
        
        /* Footer */
        footer {
            background: var(--text);
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-col h3 {
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
            font-size: 1.3rem;
        }
        
        .footer-col h3::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background: var(--accent);
            left: 0;
            bottom: 0;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #e0e0e0;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: var(--accent);
            padding-left: 5px;
        }
        
        .company-description {
            color: #bdbdbd;
            margin-top: 15px;
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            margin-top: 30px;
            border-top: 1px solid #444;
            color: #bdbdbd;
        }
        /* Newsletter */
        .newsletter {
            background: var(--card-bg);
            padding: 3rem;
            border-radius: var(--border-radius);
            text-align: center;
            margin-bottom: 4rem;
            box-shadow: var(--shadow);
        }

        .newsletter h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .newsletter p {
            color: var(--gray);
            margin-bottom: 1.5rem;
        }

        .newsletter-form {
            max-width: 500px;
            margin: 0 auto;
            display: flex;
            gap: 10px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 12px 18px;
            border: 1px solid #ddd;
            border-radius: 50px;
            font-size: 1rem;
        }

        .newsletter-form button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 500;
            transition: var(--transition);
        }

        .newsletter-form button:hover {
            background: var(--secondary);
        }
        /* Cookie Popup */
        #cookie-popup {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            max-width: 400px;
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.15);
            z-index: 1000;
            transform: translateY(150%);
            transition: var(--transition);
        }
        
        #cookie-popup.active {
            transform: translateY(0);
        }
        
        .cookie-content {
            margin-bottom: 20px;
            color: var(--light-text);
        }
        
        .cookie-btns {
            display: flex;
            gap: 15px;
        }
        
        /* Responsive Styles */
        @media screen and (max-width: 992px) {
            .section {
                padding: 60px 0;
            }
            
            .hero-title {
                font-size: 2.8rem;
            }
            
            .hero-image {
                width: 40%;
            }
            
            .about-content {
                grid-template-columns: 1fr;
            }
        }
        
        @media screen and (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 80px;
                left: 0;
                background: white;
                height: calc(100vh - 80px);
                width: 100%;
                flex-direction: column;
                padding: 50px 20px;
                clip-path: circle(0px at top right);
                transition: var(--transition);
                z-index: 999;
            }
            
            .nav-menu.active {
                clip-path: circle(1200px at top right);
            }
            
            .nav-menu li {
                margin: 20px 0;
                text-align: center;
            }
            
            .hero-title {
                font-size: 2.3rem;
            }
            
            .hero-content {
                text-align: center;
                margin: 0 auto;
            }
            
            .hero-btns {
                justify-content: center;
            }
            
            .hero-image {
                display: none;
            }
            
            .features {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        
        @media screen and (max-width: 576px) {
            .section-title {
                font-size: 2rem;
            }
            
            .hero-btns {
                flex-direction: column;
                align-items: center;
            }
            
            .cookie-btns {
                flex-direction: column;
            }
        }