* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #d2ceeb;
            overflow-x: hidden;
            -webkit-text-size-adjust: 100%;
            -ms-text-size-adjust: 100%;
        }

        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 50px;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 40px;
            width: auto;
            object-fit: contain;
        }

        .nav {
            display: flex;
            gap: 30px;
            align-items: center;
            background: #3b82f6;
            padding: 15px 40px;
            border-radius: 50px;
        }

        .nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: opacity 0.3s;
        }

        .nav a:hover {
            opacity: 0.8;
        }

        .nav a.active {
            background: rgba(255, 255, 255, 0.2);
            padding: 8px 20px;
            border-radius: 25px;
        }

        .icons {
            display: flex;
            gap: 15px;
        }

        .icon {
            width: 40px;
            height: 40px;
            background: #3b82f6;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .icon:hover {
            transform: scale(1.1);
        }

        .hero-section {
            margin: 50px 0;
        }

        .hero {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 80px 50px;
            min-height: 600px;
            position: relative;
        }
        
        .products-section {
            margin: 80px 0;
            height: 400px;
        }

        .hero-content {
            flex: 1;
            z-index: 2;
        }

        .hero-title {
            font-size: 72px;
            font-weight: 900;
            color: #3b82f6;
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .mountain-section {
            position: relative;
            margin: 100px 0 80px 0;
            z-index: 1;
        }

        .promo-banner {
            width: 100%;
            display: block;
        }

        .info-boxes {
            display: flex;
            justify-content: center;
            gap: 30px;
            padding: 40px 50px;
            margin-top: -150px;
            position: relative;
            z-index: 2;
        }

        .info-box {
            text-align: center;
            flex: 1;
            max-width: 300px;
            padding: 20px;
        }

        .info-box img{
        
        width: 100%;}
        
        .hero-subtitle {
            font-size: 36px;
            color: #1e293b;
            margin-bottom: 40px;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .btn-primary {
            background: #3b82f6;
            color: white;
            padding: 15px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
        }

        .btn-link {
            color: #1e293b;
            text-decoration: underline;
            font-weight: 600;
            cursor: pointer;
        }

        .hero-image {
            flex: 1;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .drink-container {
            position: absolute;
            right: -50px;
            top: -200px;
            animation: float 3s ease-in-out infinite;
        }

        .drink {
            width: 350px;
            height: 500px;
            object-fit: contain;
            filter: drop-shadow(0 20px 60px rgba(0,0,0,0.3));
        }

        .blue-text {
            display: none;
        }

        .decorative-shapes {
            position: absolute;
            right: 0px;
            top: 0px;
        }

        .heart {
            width: 120px;
            height: 120px;
            margin: 20px 0;
            animation: pulse 2s ease-in-out infinite;
            filter: drop-shadow(0 10px 30px rgba(59, 130, 246, 0.4));
        }

        .heart img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .tabs {
            display: flex;
            justify-content: center;
            gap: 0;
            margin: 40px 50px;
        }

        .tab {
            flex: 1;
            padding: 20px 40px;
            background: white;
            border: none;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            color: #94a3b8;
            border-bottom: 3px solid transparent;
        }

        .tab:first-child {
            border-radius: 15px 0 0 0;
        }

        .tab:last-child {
            border-radius: 0 15px 0 0;
        }

        .tab.active {
            background: #3b82f6;
            color: white;
        }

        .products {
            display: flex;
            gap: 20px;
            padding: 40px 50px;
            overflow-x: auto;
            scroll-behavior: smooth;
            position: relative;
            z-index: 1;
        }

        .products::-webkit-scrollbar {
            display: none;
        }

        .product-card {
            max-width: 350px;
            border-radius: 20px;
            text-align: center;
            transition: transform 0.3s;
        }

        .product-card:hover {
            transform: translateY(-10px);
        }

        .product-image {
            width: 100%;
            object-fit: contain;
            margin: 0 auto 20px;
        }

        .nav-arrows {
            position: relative;
            display: flex;
            justify-content: space-between;
            padding: 0 30px;
            margin-top: -250px;
            pointer-events: none;
            z-index: 10;
        }

        .arrow {
            width: 50px;
            height: 50px;
            background: #3b82f6;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            cursor: pointer;
            pointer-events: all;
            box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
            transition: transform 0.3s;
        }

        .arrow:hover {
            transform: scale(1.1);
        }

        .contact-section {
            margin: 80px 0;
            padding: 60px 50px;
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-title {
            font-size: 48px;
            font-weight: 900;
            color: #3b82f6;
            text-align: center;
            margin-bottom: 50px;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: start;
        }

        .map-container {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .map-container iframe {
            width: 100%;
            height: 400px;
            border-radius: 15px;
        }

        .contact-info {
            display: flex;
            align-items: center;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            width: 100%;
        }

        .contact-item {
            padding: 15px 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            font-size: 14px;
            line-height: 1.4;
        }

        .contact-item strong {
            color: #1e293b;
        }

        .contact-icon-img {
            width: 20px;
            height: 20px;
            vertical-align: middle;
            margin-right: 8px;
        }

        .icon-img {
            width: 20px;
            height: 20px;
            object-fit: contain;
        }

        .contact-item a {
            color: #3b82f6;
            text-decoration: none;
            transition: color 0.3s;
        }

        .contact-item a:hover {
            color: #1d4ed8;
        }

        .final-section {
            background-image: url('../img/bewarethegoat.png');
            background-size: 75%;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .wifi-container {
            position: relative;
            margin-bottom: 20px;
        }

        .wifi-image {
            max-width: 400px;
            width: auto;
            object-fit: contain;
        }

        .wifi-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #333;
            font-size: 18px;
            font-weight: bold;
            text-align: center;
        }

        .woman-image {
            max-height: 500px;
            width: auto;
            object-fit: contain;
        }

        .footer {
            background: #1e293b;
            color: white;
            text-align: center;
            padding: 30px;
            margin-top: -33px;
            z-index: 999;
        }

        .footer p {
            margin: 0;
            font-size: 14px;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        @media (max-width: 768px) {
            .header {
                padding: 15px 20px;
                flex-direction: column;
                gap: 15px;
            }

            .logo img {
                height: 35px;
            }

            .nav {
                gap: 8px;
                padding: 8px 12px;
                border-radius: 20px;
                flex-wrap: wrap;
                justify-content: center;
                width: 100%;
                order: 2;
            }

            .nav a {
                font-size: 14px;
                padding: 5px 10px;
            }

            .icons {
                gap: 10px;
                display: none;
            }

            .icon {
                width: 35px;
                height: 35px;
                font-size: 14px;
            }

            .hero {
                flex-direction: column;
                padding: 30px 20px;
                min-height: auto;
                text-align: center;
            }

            .hero-title {
                font-size: 36px;
                margin-bottom: 15px;
            }

            .hero-subtitle {
                font-size: 20px;
                margin-bottom: 30px;
            }

            .cta-buttons {
                flex-direction: column;
                gap: 15px;
                align-items: center;
            }
            .footer{
                margin-top: -21px;
            }

            .btn-primary {
                padding: 12px 25px;
                font-size: 14px;
                width: 100%;
                max-width: 250px;
                justify-content: center;
            }

            .hero-image {
                margin-top: 30px;
                order: -1;
                width: 100%;
            }

            .drink-container {
                position: relative;
                right: 0;
                top: 0;
            }

            .info-boxes {
                flex-direction: column;
                gap: 20px;
                padding: 30px 20px;
                margin-top: -30px;
            }

            .info-box {
                max-width: 100%;
            }

          
            .drink {
                width: 90%;
                
            }

            .decorative-shapes {
                display: none;
            }

            .tabs {
                margin: 20px 15px;
                flex-direction: column;
                gap: 0;
            }

            .tab {
                padding: 15px 20px;
                font-size: 16px;
                border-radius: 0;
            }

            .tab:first-child {
                border-radius: 15px 15px 0 0;
            }

            .tab:last-child {
                border-radius: 0 0 15px 15px;
            }

            .products {
                padding: 20px 15px;
                gap: 15px;
            }

            .product-card {
                min-width: 280px;
                max-width: 300px;
            }

            .nav-arrows {
                margin-top: -200px;
                padding: 0 15px;
            }

            .arrow {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }

            .contact-section {
                padding: 40px 20px;
            }

            .contact-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .contact-title {
                font-size: 32px;
                margin-bottom: 30px;
            }

            .map-container iframe {
                height: 300px;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .contact-item {
                padding: 12px 15px;
                font-size: 13px;
            }

            

            .wifi-container .wifi-image {
                max-width: 250px;
            }

            .wifi-text {
                font-size: 14px;
            }

            .woman-image {
                max-height: 300px;
            }
        }

        @media (max-width: 480px) {
            .header {
                padding: 10px 15px;
                gap: 10px;
            }
            .footer{
                margin-top: -17px;
            }

            .logo img {
                height: 30px;
            }

            .nav {
                padding: 6px 10px;
                gap: 6px;
            }

            .nav a {
                font-size: 12px;
                padding: 4px 8px;
            }

            .icons {
                gap: 8px;
                order: 1;
            }

            .icon {
                width: 30px;
                height: 30px;
                font-size: 12px;
            }

            .hero {
                padding: 20px 15px;
            }

            .hero-title {
                font-size: 28px;
            }

            .hero-subtitle {
                font-size: 18px;
            }

            

            .tabs {
                margin: 15px 10px;
            }

            .tab {
                padding: 12px 15px;
                font-size: 14px;
            }

            .products {
                padding: 15px 10px;
            }

            .product-card {
                min-width: 250px;
                max-width: 270px;
            }

            .wifi-container .wifi-image {
                max-width: 200px;
            }

            .wifi-text {
                font-size: 12px;
            }

            .woman-image {
                max-height: 250px;
            }

            .contact-icon-img {
                width: 16px;
                height: 16px;
            }

            .icon-img {
                width: 16px;
                height: 16px;
            }
        }