
        /* CSS Reset and Base Styles */
html, body, div, span, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, img, strong, em, table, tr, th, td, form, input, textarea, button {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Keep default list behavior */
ul, ol {
    box-sizing: border-box;
    margin: 1rem 0;
    padding-left: 2rem;
}
        
        :root {
            --primary-black: #000000;
            --primary-orange: #ff6b35;
            --light-gray: #f5f5f5;
            --medium-gray: #e0e0e0;
            --text-gray: #666;
            --white: #ffffff;
            --shadow: 0 2px 10px rgba(0,0,0,0.1);
            --max-width: 1200px;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--primary-black);
            background-color: var(--white);
        }
        
        /* Container */
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            background-color: var(--primary-black);
            color: var(--white);
            padding: 1rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
.logo img {
    height: 125px; /* default desktop size */
}

@media (max-width: 768px) {
    .logo img {
        height: 80px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 60px;
    }
}

        .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary-orange) 0%, #ff8c57 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .logo h1 {
            font-size: 1.8rem;
            font-weight: 700;
            letter-spacing: 1px;
        }
        
        .logo h1 span {
            color: var(--primary-orange);
            font-weight: 400;
            font-size: 0.9rem;
            display: block;
            letter-spacing: 2px;
            margin-top: -5px;
        }
        
        /* Navigation */
        nav ul {
            list-style: none;
            display: flex;
            gap: 2rem;
        }
        
        /* Language Switcher */
        .lang-switcher {
            display: flex;
            gap: 0.5rem;
            margin-left: 2rem;
        }
        
        .lang-btn {
            background: transparent;
            border: 1px solid var(--primary-orange);
            color: var(--white);
            padding: 5px 10px;
            border-radius: 3px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            text-decoration: none;
        }
        
        .lang-btn:hover {
            background-color: var(--primary-orange);
        }
        
        .lang-btn.active {
            background-color: var(--primary-orange);
            border-color: var(--primary-orange);
        }
        
        nav a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
            padding: 5px 0;
        }
        
        nav a:hover {
            color: var(--primary-orange);
        }
        
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-orange);
            transition: width 0.3s ease;
        }
        
        nav a:hover::after {
            width: 100%;
        }
        
        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary-black) 0%, #2a2a2a 100%);
            color: var(--white);
            padding: 4rem 0;
            text-align: center;
        }
        
        .hero h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }
        
        .hero .highlight {
            color: var(--primary-orange);
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: var(--medium-gray);
        }
        
        .cta-button {
            display: inline-block;
            background-color: var(--primary-orange);
            color: var(--white);
            padding: 12px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(255, 107, 53, 0.3);
        }
        
        .cta-button:hover {
            background-color: #ff8c57;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(255, 107, 53, 0.4);
        }
        
        /* Main Content Area */
        main {
            padding: 3rem 0;
            min-height: 400px;
        }
        
        .content-placeholder {
            background-color: var(--light-gray);
            border: 2px dashed var(--medium-gray);
            border-radius: 8px;
            padding: 3rem;

            color: var(--text-gray);
        }
        
        .content-placeholder h3 {
            color: var(--primary-black);
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }
        
        .content-placeholder p {
            font-size: 1rem;
            line-height: 1.8;
        }
        
        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .service-card {
            background: var(--white);
            border-radius: 8px;
            padding: 2rem;
            text-align: center;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        }
        
        .service-icon {
            width: 60px;
            height: 60px;
            background: var(--primary-orange);
            border-radius: 50%;
            margin: 0 auto 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--white);
        }
        
        .service-card h4 {
            color: var(--primary-black);
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
        }
        
        .service-card p {
            color: var(--text-gray);
            font-size: 0.95rem;
        }
        
        /* Footer */
        footer {
            background-color: var(--primary-black);
            color: var(--white);
            padding: 2rem 0;
            margin-top: 4rem;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
        }
        
        .footer-info h3 {
            color: var(--primary-orange);
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
        }
        
        .footer-contact {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        
        .footer-contact a {
            color: var(--white);
            text-decoration: none;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .footer-contact a:hover {
            color: var(--primary-orange);
        }
        
        .footer-bottom {
            text-align: center;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid #333;
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            
            nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: var(--primary-black);
                border-top: 1px solid #333;
            }
            
            nav.active {
                display: block;
            }
            
            nav ul {
                flex-direction: column;
                padding: 1rem;
                gap: 1rem;
            }
            
            .hero h2 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-contact {
                align-items: center;
            }
        }
        
        @media (max-width: 480px) {
            .logo h1 {
                font-size: 1.4rem;
            }
            
            .hero h2 {
                font-size: 1.5rem;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
        }
    