        :root {
            --primary-color: #003366; /* Deep Blue */
            --secondary-color: #f0f0f0; /* Light Gray */
            --accent-color: #ffcc00; /* Gold/Yellow */
            --text-color: #333;
            --link-color: #0066cc; /* Royal Blue */
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 0;
            background-color: var(--secondary-color);
            color: var(--text-color);
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        /* Header & Navigation */
        .header {
            background-color: #fff;
            padding: 1px 2px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .cnhslogo {
            vertical-align:middle;
            margin: 0;
            padding: 0;
        }


        .logo {
            font-size: 1.8em;
            font-weight: bold;
            color: var(--primary-color);
        }

        .menu-toggle {
            display: none;
            font-size: 2em;
            cursor: pointer;
            color: var(--primary-color);
        }

        .nav-menu {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
        }
        
        .nav-menu li a {
            text-decoration: none;
            color: var(--primary-color);
            padding: 10px 15px;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-menu li a:hover {
            color: var(--accent-color);
        }

        /* Image Rotator */
        .image-rotator {
            position: relative;
            width: 100%;
            max-width: 900px;
            margin: 20px auto;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .slides-container {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .slide {
            min-width: 100%;
            box-sizing: border-box;
        }

        .slide img {
            width: 100%;
            height: auto;
            display: block;
        }

        .rotator-nav button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 51, 102, 0.5); /* Primary with opacity */
            color: #fff;
            border: none;
            padding: 10px;
            cursor: pointer;
            font-size: 1.5em;
            z-index: 10;
        }

        .rotator-nav .prev { left: 10px; }
        .rotator-nav .next { right: 10px; }

        /* Main Content Grid */
        .main-content {
            display: grid;
            gap: 20px;
            grid-template-columns: 1fr;
        }

        @media (min-width: 768px) {
            .main-content {
                grid-template-columns: 2fr 1fr;
            }
        }

        .section {
            background-color: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .section h2 {
            border-bottom: 2px solid var(--primary-color);
            padding-bottom: 10px;
            color: var(--primary-color);
        }

        /* Forum Preview */
        .forum-posts .post {
            border-bottom: 1px dashed var(--secondary-color);
            padding: 10px 0;
        }

        .forum-posts .post:last-child {
            border-bottom: none;
        }

        .post h3 {
            margin: 0;
            font-size: 1.1em;
            color: var(--link-color);
        }

        .post-meta {
            font-size: 0.9em;
            color: #777;
            margin-top: 5px;
        }

        /* Updates Section */
        .updates-list .update-item {
            padding: 10px 0;
            border-bottom: 1px dashed var(--secondary-color);
        }

        .updates-list .update-item:last-child {
            border-bottom: none;
        }
        
        .update-title {
            font-weight: bold;
            color: var(--primary-color);
        }

        /* Responsive adjustments */
        @media (max-width: 767px) {
            .nav-menu {
                flex-direction: column;
                position: absolute;
                top: 60px;
                right: 0;
                width: 100%;
                background-color: #fff;
                box-shadow: 0 2px 5px rgba(0,0,0,0.1);
                display: none;
                z-index: 99;
            }
            
            .nav-menu.active {
                display: flex;
            }

            .nav-menu li {
                text-align: center;
                border-bottom: 1px solid var(--secondary-color);
            }

            .menu-toggle {
                display: block;
            }
        }


/* Header & Navigation */
.header { /* ... */ }
.logo { /* ... */ }
.menu-toggle { /* ... */ }
.nav-menu { /* ... */ }
.nav-menu li a { /* ... */ }

/* Submenu Styles */
.has-submenu {
    position: relative;
}

.submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 100%; /* Position below the parent item */
    left: 0;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: none; /* Hidden by default */
    z-index: 100;
    min-width: 180px;
}

.submenu li a {
    padding: 10px 15px;
    display: block; /* Makes the entire area clickable */
    white-space: nowrap; /* Prevents text wrapping */
    border-bottom: 1px solid var(--secondary-color);
}

.submenu li:last-child a {
    border-bottom: none;
}

.submenu li a:hover {
    background-color: var(--secondary-color);
}

/* Show submenu on hover */
.has-submenu:hover .submenu {
    display: block;
}

/* ... rest of your CSS ... */

/* Responsive adjustments */
@media (max-width: 767px) {
    /* ... existing responsive styles ... */
    
    /* Ensure submenus are always visible on mobile since there's no hover state */
    .nav-menu.active .submenu {
        display: block;
        position: static; /* Stack on top of each other */
        box-shadow: none;
        border-left: 5px solid var(--accent-color); /* Visual indicator */
        margin-left: 20px;
    }
}