* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Noto Sans Devanagari', sans-serif;
        }
        
        body {
            background-color: #0a0e27;
            color: #e0e6ed;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(10, 14, 39, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            border-bottom: 1px solid rgba(79, 172, 254, 0.3);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #4facfe;
            text-decoration: none;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        
        .logo span {
            color: #00f2fe;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 30px;
        }
        
        .nav-menu a {
            color: #e0e6ed;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-menu a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #00f2fe;
            transition: width 0.3s ease;
        }
        
        .nav-menu a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
            width: 30px;
            height: 25px;
            position: relative;
        }
        
        .burger span {
            display: block;
            position: absolute;
            height: 3px;
            width: 100%;
            background: #4facfe;
            border-radius: 3px;
            opacity: 1;
            left: 0;
            transform: rotate(0deg);
            transition: .25s ease-in-out;
        }
        
        .burger span:nth-child(1) {
            top: 0px;
        }
        
        .burger span:nth-child(2) {
            top: 8px;
        }
        
        .burger span:nth-child(3) {
            top: 16px;
        }
        
        .burger.active span:nth-child(1) {
            top: 8px;
            transform: rotate(135deg);
        }
        
        .burger.active span:nth-child(2) {
            opacity: 0;
            left: -60px;
        }
        
        .burger.active span:nth-child(3) {
            top: 8px;
            transform: rotate(-135deg);
        }
        
        /* Hero Section */
        .hero {
            padding: 150px 0 100px;
            position: relative;
            overflow: hidden;
        }
        
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(79, 172, 254, 0.1) 0%, rgba(0, 242, 254, 0.1) 100%);
            z-index: -1;
        }
        
        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .hero-text {
            width: 50%;
            animation: fadeInLeft 1s ease;
        }
        
        .hero-text h1 {
            font-size: 48px;
            margin-bottom: 20px;
            color: #4facfe;
            line-height: 1.2;
        }
        
        .hero-text p {
            font-size: 18px;
            margin-bottom: 30px;
            color: #a0b0c0;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            color: #0a0e27;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(79, 172, 254, 0.4);
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(79, 172, 254, 0.6);
        }
        
        .hero-image {
            width: 45%;
            position: relative;
            animation: fadeInRight 1s ease;
        }
        
        .hero-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }
        
        /* About Section */
        .about {
            padding: 100px 0;
            position: relative;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 36px;
            color: #4facfe;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            width: 60%;
            height: 3px;
            background: linear-gradient(90deg, transparent, #00f2fe, transparent);
            bottom: -10px;
            left: 20%;
        }
        
        .section-title p {
            color: #a0b0c0;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .about-text {
            width: 48%;
        }
        
        .about-text h3 {
            font-size: 24px;
            color: #00f2fe;
            margin-bottom: 20px;
        }
        
        .about-text p {
            margin-bottom: 20px;
            color: #c0cfe0;
        }
        
        .about-image {
            width: 48%;
        }
        
        .about-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            transition: transform 0.5s ease;
        }
        
        .about-image img:hover {
            transform: scale(1.03);
        }
        
        /* Product Description */
        .product {
            padding: 100px 0;
            background: rgba(15, 20, 45, 0.5);
            position: relative;
        }
        
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .product-card {
            background: rgba(20, 25, 55, 0.7);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            border: 1px solid rgba(79, 172, 254, 0.2);
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            border-color: rgba(79, 172, 254, 0.5);
        }
        
        .product-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .product-card-content {
            padding: 20px;
        }
        
        .product-card-content h3 {
            color: #4facfe;
            margin-bottom: 15px;
            font-size: 20px;
        }
        
        .product-card-content p {
            color: #a0b0c0;
            margin-bottom: 15px;
        }
        
        /* Prices Section */
        .prices {
            padding: 100px 0;
            position: relative;
        }
        
        .price-cards {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin-top: 50px;
        }
        
        .price-card {
            background: rgba(20, 25, 55, 0.7);
            border-radius: 10px;
            padding: 30px;
            width: 300px;
            text-align: center;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            border: 1px solid rgba(79, 172, 254, 0.2);
            position: relative;
            overflow: hidden;
        }
        
        .price-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #4facfe, #00f2fe);
        }
        
        .price-card.featured {
            transform: scale(1.05);
            border-color: rgba(79, 172, 254, 0.5);
        }
        
        .price-card.featured::after {
            content: 'सबसे लोकप्रिय';
            position: absolute;
            top: 15px;
            right: -30px;
            background: #00f2fe;
            color: #0a0e27;
            padding: 5px 40px;
            font-size: 12px;
            font-weight: bold;
            transform: rotate(45deg);
        }
        
        .price-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }
        
        .price-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }
        
        .price-card h3 {
            color: #4facfe;
            margin-bottom: 15px;
            font-size: 22px;
        }
        
        .price {
            font-size: 36px;
            color: #00f2fe;
            margin-bottom: 20px;
        }
        
        .price span {
            font-size: 16px;
            color: #a0b0c0;
        }
        
        .price-card ul {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .price-card ul li {
            padding: 10px 0;
            color: #c0cfe0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .price-card ul li:last-child {
            border-bottom: none;
        }
        
        /* Gallery Section */
        .gallery {
            padding: 100px 0;
            background: rgba(15, 20, 45, 0.5);
            position: relative;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 50px;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            height: 250px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(to top, rgba(10, 14, 39, 0.9), transparent);
            padding: 20px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }
        
        .gallery-overlay h3 {
            color: #4facfe;
            margin-bottom: 5px;
        }
        
        .gallery-overlay p {
            color: #a0b0c0;
            font-size: 14px;
        }
        
        /* Reviews Section */
        .reviews {
            padding: 100px 0;
            position: relative;
        }
        
        .reviews-slider {
            margin-top: 50px;
            position: relative;
            overflow: hidden;
        }
        
        .reviews-container {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .review-card {
            min-width: 350px;
            background: rgba(20, 25, 55, 0.7);
            border-radius: 10px;
            padding: 30px;
            margin-right: 30px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(79, 172, 254, 0.2);
        }
        
        .review-card p {
            color: #c0cfe0;
            margin-bottom: 20px;
            font-style: italic;
        }
        
        .review-author {
            display: flex;
            align-items: center;
        }
        
        .review-author img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
        }
        
        .review-author h4 {
            color: #4facfe;
            margin-bottom: 5px;
        }
        
        .review-author p {
            color: #a0b0c0;
            margin: 0;
            font-style: normal;
            font-size: 14px;
        }
        
        .reviews-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }
        
        .reviews-nav button {
            background: rgba(79, 172, 254, 0.2);
            border: none;
            color: #4facfe;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin: 0 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .reviews-nav button:hover {
            background: rgba(79, 172, 254, 0.4);
        }
        
        /* FAQ Section */
        .faq {
            padding: 100px 0;
            background: rgba(15, 20, 45, 0.5);
            position: relative;
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: rgba(20, 25, 55, 0.7);
            border-radius: 10px;
            margin-bottom: 20px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(79, 172, 254, 0.2);
        }
        
        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-question h3 {
            color: #4facfe;
            font-size: 18px;
        }
        
        .faq-icon {
            width: 24px;
            height: 24px;
            background: rgba(79, 172, 254, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }
        
        .faq-icon::before {
            content: '+';
            color: #4facfe;
            font-weight: bold;
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .faq-answer p {
            padding: 0 20px 20px;
            color: #c0cfe0;
        }
        
        .faq-item.active .faq-answer {
            max-height: 200px;
        }
        
        /* Why Us Section */
        .why-us {
            padding: 100px 0;
            position: relative;
        }
        
        .why-us-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .why-us-card {
            text-align: center;
            padding: 30px;
            background: rgba(20, 25, 55, 0.7);
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            border: 1px solid rgba(79, 172, 254, 0.2);
        }
        
        .why-us-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }
        
        .why-us-icon {
            width: 70px;
            height: 70px;
            background: rgba(79, 172, 254, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 30px;
            color: #4facfe;
        }
        
        .why-us-card h3 {
            color: #00f2fe;
            margin-bottom: 15px;
            font-size: 20px;
        }
        
        .why-us-card p {
            color: #a0b0c0;
        }
        
        /* Team Section */
        .team {
            padding: 100px 0;
            background: rgba(15, 20, 45, 0.5);
            position: relative;
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .team-card {
            background: rgba(20, 25, 55, 0.7);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            border: 1px solid rgba(79, 172, 254, 0.2);
        }
        
        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }
        
        .team-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }
        
        .team-card-content {
            padding: 20px;
            text-align: center;
        }
        
        .team-card-content h3 {
            color: #4facfe;
            margin-bottom: 5px;
        }
        
        .team-card-content p {
            color: #00f2fe;
            margin-bottom: 15px;
            font-size: 14px;
        }
        
        .team-card-content .team-desc {
            color: #a0b0c0;
            font-size: 14px;
        }
        
        /* Contact Section */
        .contact {
            padding: 100px 0;
            position: relative;
        }
        
        .contact-container {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 50px;
        }
        
        .contact-form {
            width: 60%;
            background: rgba(20, 25, 55, 0.7);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(79, 172, 254, 0.2);
        }
        
        .contact-form h3 {
            color: #4facfe;
            margin-bottom: 20px;
            font-size: 24px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #a0b0c0;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            background: rgba(10, 14, 39, 0.5);
            border: 1px solid rgba(79, 172, 254, 0.3);
            border-radius: 5px;
            color: #e0e6ed;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #4facfe;
            box-shadow: 0 0 0 2px rgba(79, 172, 254, 0.2);
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        .contact-info {
            width: 35%;
        }
        
        .contact-info-card {
            background: rgba(20, 25, 55, 0.7);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(79, 172, 254, 0.2);
            margin-bottom: 20px;
        }
        
        .contact-info-card h3 {
            color: #4facfe;
            margin-bottom: 20px;
            font-size: 20px;
        }
        
        .contact-info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }
        
        .contact-info-icon {
            color: #00f2fe;
            margin-right: 15px;
            font-size: 20px;
        }
        
        .contact-info-text {
            color: #c0cfe0;
        }
        
        /* Disclaimer Section */
        .disclaimer {
            padding: 50px 0;
            background: rgba(10, 14, 39, 0.8);
            border-top: 1px solid rgba(79, 172, 254, 0.2);
        }
        
        .disclaimer-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        
        .disclaimer-content p {
            color: #a0b0c0;
            font-size: 14px;
        }
        
        /* Footer */
        footer {
            background: #0a0e27;
            padding: 50px 0 20px;
            border-top: 1px solid rgba(79, 172, 254, 0.2);
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }
        
        .footer-column {
            width: 30%;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            color: #4facfe;
            margin-bottom: 20px;
            font-size: 18px;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: #a0b0c0;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-column ul li a:hover {
            color: #00f2fe;
        }
        
        .footer-contact {
            color: #a0b0c0;
            margin-bottom: 10px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(79, 172, 254, 0.1);
        }
        
        .footer-bottom p {
            color: #a0b0c0;
            font-size: 14px;
        }
        
        /* Cookie Popup */
        .cookie-popup {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background: rgba(20, 25, 55, 0.95);
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(79, 172, 254, 0.3);
            z-index: 1001;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transform: translateY(150%);
            transition: transform 0.5s ease;
        }
        
        .cookie-popup.show {
            transform: translateY(0);
        }
        
        .cookie-text {
            width: 70%;
        }
        
        .cookie-text h3 {
            color: #4facfe;
            margin-bottom: 10px;
            font-size: 18px;
        }
        
        .cookie-text p {
            color: #a0b0c0;
            font-size: 14px;
            line-height: 1.4;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
        }
        
        .cookie-btn {
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        
        .cookie-accept {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            color: #0a0e27;
        }
        
        .cookie-accept:hover {
            box-shadow: 0 5px 15px rgba(79, 172, 254, 0.4);
        }
        
        .cookie-decline {
            background: transparent;
            color: #a0b0c0;
            border: 1px solid rgba(79, 172, 254, 0.3);
        }
        
        .cookie-decline:hover {
            background: rgba(79, 172, 254, 0.1);
        }
        
        /* Contact Popup */
        .contact-popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1002;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .contact-popup.show {
            opacity: 1;
            visibility: visible;
        }
        
        .contact-popup-content {
            background: rgba(20, 25, 55, 0.95);
            border-radius: 10px;
            padding: 40px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(79, 172, 254, 0.3);
            transform: scale(0.8);
            transition: transform 0.3s ease;
        }
        
        .contact-popup.show .contact-popup-content {
            transform: scale(1);
        }
        
        .contact-popup-icon {
            width: 70px;
            height: 70px;
            background: rgba(79, 172, 254, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 30px;
            color: #4facfe;
        }
        
        .contact-popup h3 {
            color: #4facfe;
            margin-bottom: 15px;
            font-size: 24px;
        }
        
        .contact-popup p {
            color: #a0b0c0;
            margin-bottom: 30px;
        }
        
        .contact-popup-btn {
            padding: 12px 30px;
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            color: #0a0e27;
            border: none;
            border-radius: 30px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .contact-popup-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(79, 172, 254, 0.6);
        }
        
        /* Marquee */
        .marquee {
            background: rgba(15, 20, 45, 0.5);
            padding: 15px 0;
            overflow: hidden;
            position: relative;
            white-space: nowrap;
        }
        
        .marquee-content {
            display: inline-block;
            animation: marquee 20s linear infinite;
            color: #00f2fe;
            font-weight: bold;
        }
        
        /* Animations */
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes marquee {
            0% {
                transform: translateX(100%);
            }
            100% {
                transform: translateX(-100%);
            }
        }
        
        /* Parallax Effect */
        .parallax {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background-image: url('../img/02.webp');
            background-size: cover;
            background-position: center;
            will-change: transform;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .hero-content {
                flex-direction: column;
            }
            
            .hero-text {
                width: 100%;
                margin-bottom: 40px;
            }
            
            .hero-image {
                width: 100%;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .about-text,
            .about-image {
                width: 100%;
            }
            
            .about-image {
                margin-top: 30px;
            }
            
            .contact-container {
                flex-direction: column;
            }
            
            .contact-form,
            .contact-info {
                width: 100%;
            }
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                height: calc(100vh - 70px);
                background: rgba(10, 14, 39, 0.95);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 50px;
                transform: translateX(-100%);
                transition: transform 0.5s ease;
            }
            
            .nav-menu.active {
                transform: translateX(0);
            }
            
            .nav-menu li {
                margin: 0 0 30px 0;
            }
            
            .burger {
                display: block;
            }
            
            .hero-text h1 {
                font-size: 36px;
            }
            
            .section-title h2 {
                font-size: 28px;
            }
            
            .price-cards {
                flex-direction: column;
                align-items: center;
            }
            
            .price-card {
                width: 100%;
                max-width: 350px;
            }
            
            .price-card.featured {
                transform: scale(1);
            }
            
            .footer-column {
                width: 100%;
            }
            
            .cookie-popup {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .cookie-text {
                width: 100%;
                margin-bottom: 20px;
            }
        }
        
        @media (max-width: 576px) {
            .hero {
                padding: 120px 0 80px;
            }
            
            .hero-text h1 {
                font-size: 28px;
            }
            
            .section-title h2 {
                font-size: 24px;
            }
            
            .review-card {
                min-width: 100%;
            }
            
            .footer-bottom {
                text-align: left;
            }
        }

