* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
        }

        /* Header */
        .header {
            background: #000;
            color: white;
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            display: flex;
            align-items: center;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-menu a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }

        .nav-menu a:hover {
            color: #ccbc9a;
        }

        .nav-actions {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .language-switcher {
            display: flex;
            gap: 0.5rem;
            align-items: center;
        }

        .language-switcher button {
			height: 30px;
            background: none;
            border: 1px solid white;
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 3px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .language-switcher button:hover,
        .language-switcher button.active {
            background: #ccbc9a;
            border-color: #ccbc9a;
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: white;
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        /* Mobile Menu */
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: #333;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            transform: translateY(-100%);
            transition: transform 0.3s ease;
            opacity: 0;
            visibility: hidden;
        }

        .mobile-nav.active {
            display: block;
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }

        .mobile-nav ul {
            list-style: none;
            padding: 1rem 0;
        }

        .mobile-nav ul li {
            padding: 0.8rem 2rem;
            border-bottom: 1px solid #444;
        }

        .mobile-nav ul li:last-child {
            border-bottom: none;
        }

        .mobile-nav ul li a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            transition: color 0.3s;
        }

        .mobile-nav ul li a:hover {
            color: #e74c3c;
        }

        .mobile-language-switcher {
            padding: 1rem 2rem;
            border-top: 1px solid #444;
            display: flex;
            gap: 0.5rem;
        }

        .mobile-language-switcher button {
            height: 30px;
            background: none;
            border: 1px solid white;
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 3px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .mobile-language-switcher button:hover,
        .mobile-language-switcher button.active {
            background: #e74c3c;
            border-color: #e74c3c;
        }

        .btn {
            padding: 0.5rem 1rem;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-block;
        }

        .btn-primary {
            background: #e74c3c;
            color: white;
        }

        .btn-primary:hover {
            background: #c0392b;
            transform: translateY(-2px);
        }

        /* Carousel Section */
        .carousel {
            height: 100vh;
            position: relative;
            overflow: hidden;
        }

        .carousel-container {
            position: relative;
            height: 100%;
            width: 100%;
        }

        .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-slide.active {
            opacity: 1;
        }



        .carousel-nav {
            display: none;
        }

        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: background 0.3s;
        }

        .carousel-dot.active {
            background: #e74c3c;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            position: relative;
        }

        /*.section-title h2::after {
            content: '';
            width: 50px;
            height: 3px;
            background: #ccbc9a;
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
*/
        /* Brand Section */
        .brand-section {
            padding: 5rem 0;
            background: white;
        }

        .brands-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 0.5rem;
            margin-top: 3rem;
        }

        .brand-card {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            /*padding: 2rem;*/
            /*border-radius: 15px;*/
            transition: transform 0.3s, box-shadow 0.3s;
            /*border: 1px solid #eee;*/
            text-align: left;
            background: white;
            cursor: pointer;
            text-decoration: none;
            color: inherit;
        }

        .brand-card:hover {
            /*transform: translateY(-5px);*/
            /*box-shadow: 0 15px 40px rgba(0,0,0,0.1);*/
            text-decoration: none;
            color: inherit;
        }

        .brand-logo {
            width: 100%;
            height: 373px;
            /*border-radius: 50%;*/
            /*display: flex;*/
            /*align-items: center;*/
            /*justify-content: center;*/
            flex-shrink: 0;
            overflow: hidden;
            border: 3px solid #f0f0f0;
            background: #f8f9fa;
            position: relative;
        }

        .brand-logo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .brand-logo.no-image {
            background: #e74c3c;
            color: white;
            font-size: 1.5rem;
            font-weight: bold;
        }
        
        .brand-popup {
            position: absolute;
            bottom: 30px;
            width: 250px;
            height: 150px;
            background: #fff;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            z-index: 10;
        }
        
        .brand-logo img:first-child {
            z-index: 12;
        }
        
        .brand-logo img:last-child {
            z-index: 10;
        }
        
        .brand-logo:hover img:first-child {
            display: none;
            z-index: 10;
        }
        
        .brand-logo:hover img:last-child {
            transform: scale(1.1);
            z-index: 12;
        }
        
        .brand-popup img {
            width: 150px;
            height: 100px;
            margin-bottom: 10px;
        }

        .brand-content {
            flex: 1;
        }

        .brand-content h4 {
            font-size: 1.4rem;
            margin-bottom: 0.8rem;
            color: #333;
            font-weight: 600;
        }

        .brand-content p {
            color: #666;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        /* Loading State */
        .loading {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 4rem;
            color: #666;
        }

        .spinner {
            width: 40px;
            height: 40px;
            border: 4px solid #f3f3f3;
            border-top: 4px solid #e74c3c;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin-right: 1rem;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Footer */
        .footer {
            background: #000;
            color: white;
            padding: 2rem 0;
            text-align: center;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .footer-copyright {
            flex: 1;
            text-align: center;
            font-size: 0.9rem;
            color: #ccc;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .language-switcher {
                display: none;
            }

            .mobile-menu-toggle {
                display: flex;
            }

            .mobile-nav {
                display: block;
            }

            .brands-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }

            .footer-copyright {
                text-align: center;
            }

            .brand-card {
                min-width: auto;
                flex-direction: column;
                text-align: center;
            }

            .brand-logo {
                width: 100px;
                height: 100px;
            }
        }

        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            animation: fadeInUp 0.6s ease-out;
        }

        /* Scroll animations */
        .section {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease-out;
        }

        .section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Error State */
        .error-message {
            text-align: center;
            color: #e74c3c;
            padding: 2rem;
            font-size: 1.1rem;
        }

        .empty-message {
            text-align: center;
            color: #666;
            padding: 4rem 2rem;
            font-size: 1.1rem;
        }