* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-orange: #C7663C;
            --light-orange: #E0855E;
            --dark-orange: #A5552F;
            --text-dark: #333333;
            --text-light: #666666;
            --background-light: #F8F9FA;
            --white: #FFFFFF;
        }

        body {
            font-family: 'Montserrat','Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
        }

        /* Header */
        header {
            background: var(--white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            text-decoration: none;
            color: var(--text-dark);
        }

        .logo-img {
            height: 40px;
            width: auto;
            border-radius: 8px;
        }

        .logo-text {
            font-size: 28px;
            font-weight: 700;
            color: var(--primary-orange);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--primary-orange);
        }

        /* Hero Section */
        .hero, .hero h1, .hero p {
            font-family: 'Montserrat', sans-serif;
        }
        .hero {
            background: linear-gradient(135deg, var(--primary-orange) 0%, var(--light-orange) 100%);
            color: white;
            padding: 140px 20px 80px;
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-logo {
            text-align: center;
        }

        .hero-logo img {
            max-width: 100%;
            height: auto;
            max-height: 300px;
            border-radius: 20px;
            border: 8px solid white;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .hero-text {
            text-align: left;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero .subtitle {
            font-size: 1.3rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .hero .description {
            font-size: 1.1rem;
            margin-bottom: 40px;
            opacity: 0.8;
            max-width: 600px;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn {
            padding: 15px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-primary {
            background: var(--white);
            color: var(--primary-orange);
        }

        .btn-primary:hover {
            background: var(--background-light);
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }

        .btn-secondary:hover {
            background: var(--white);
            color: var(--primary-orange);
        }

        /* SVG Icons */
        .icon {
            width: 1em;
            height: 1em;
            fill: currentColor;
            display: inline-block;
        }

        /* Features Section */
        .features {
            padding: 80px 20px;
            background: var(--background-light);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--text-dark);
            margin-bottom: 15px;
        }

        .section-title p {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .feature-card {
            background: var(--white);
            padding: 32px;
            border-radius: 12px;
            text-align: left;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            display: flex;
            flex-direction: column;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
        }

        .feature-icon {
            width: 46px;
            height: 56px;
            margin-bottom: 20px;
            color: var(--primary-orange);
            flex-shrink: 0;
        }
        .feature-icon svg {
            width: 100%;
            height: 100%;
            stroke: currentColor;
        }
        
        .feature-content {
            display: flex;
            flex-direction: column;
        }
        
        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--text-dark);
            text-align: left;
            line-height: 1.2;
        }

        .feature-card p {
            color: var(--text-light);
            line-height: 1.6;
            text-align: left;
        }

        /* Why Choose Section */
        .why-choose {
            padding: 80px 20px;
            background: var(--white);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .benefit-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }

        .benefit-icon {
            width: 50px;
            height: 50px;
            background: var(--primary-orange);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            flex-shrink: 0;
        }

        .benefit-content h4 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--text-dark);
        }

        .benefit-content p {
            color: var(--text-light);
            font-size: 0.95rem;
        }

        /* Footer */
        footer {
            background: var(--text-dark);
            color: var(--white);
            padding: 50px 20px 30px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .footer-section h3 {
            margin-bottom: 20px;
            color: var(--primary-orange);
        }

        .footer-section p, .footer-section a {
            color: #CCCCCC;
            text-decoration: none;
            line-height: 1.8;
        }

        .footer-section a:hover {
            color: var(--primary-orange);
        }
        .footer-bottom {
            text-align: center;
            color: #999;
        }
        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--text-dark);
            cursor: pointer;
        }

        /* Responsive */
@media (max-width: 768px) {
    .nav-links { 
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        padding: 20px 0;
        gap: 0;  /* Remove the gap between items */
    }
    .nav-links a {
        padding: 15px 20px;  /* Add padding to each link */
        display: block;       /* Make them full width clickable */
        text-align: left;     /* Or center if you prefer */
        border-bottom: 1px solid #f0f0f0;  /* Optional: separator lines */
    }   
    .mobile-menu-btn { display: block; }
    .hero-content { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero-text { text-align: center; }
    .hero h1 { font-size: 2.5rem; }
    .hero .subtitle { font-size: 1.1rem; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .features-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
    .licensing-grid { grid-template-columns: 1fr; }
    .cta-content h2 { font-size: 2rem; }
    .cta-content p { font-size: 1.1rem; }
}
        /* Licensing Section */
.licensing {
    padding: 80px 20px;
    background: var(--white);
}

.licensing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.licensing-card {
    background: var(--background-light);
    padding: 32px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.licensing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.licensing-icon {
    width: 46px;
    height: 56px;
    margin-bottom: 20px;
    color: var(--primary-orange);
    flex-shrink: 0;
}

.licensing-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
}

.licensing-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    line-height: 1.2;
}

.licensing-content p {
    color: var(--text-light);
    line-height: 1.6;
}


/* Call to Action Section */
.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--light-orange) 100%);
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-secondary-dark {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary-dark:hover {
    background: var(--white);
    color: var(--primary-orange);
}


.cta-content .cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
}