* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Main container styling */
.container {
    width: 80%;
    max-width: none; /* Remove max-width constraint */
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Override for header, top-bar, main-nav, and footer to retain original max-width */
header .container,
.top-bar .container,
.main-nav .container,
footer .container {
    width: auto;
    max-width: 1200px;
}

/* Header */
.top-bar {
    background: #f8f8f8;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-links a {
    margin-right: 15px;
    text-decoration: none;
    color: #333;
}

.language a {
    color: #0066cc;
    text-decoration: none;
}

.main-nav {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 10px 0; /* Reduced padding to decrease height */
}

.main-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5px; /* Reduced padding from 0 20px */
}

.logo img {
    height: 80px; /* Increased from 50px */
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    position: relative;
    margin-left: 20px; /* Reduced from 30px to fit more items */
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 10px;
    display: block;
}

.nav-links a.active {
    color: #0066cc;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    list-style: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    z-index: 1000;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    padding: 10px 15px;
    font-weight: normal;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu .dropdown {
    position: relative;
}

.dropdown-menu .submenu {
    top: 0;
    left: 100%;
    display: none;
}

.dropdown-menu .dropdown:hover .submenu {
    display: block;
}

.search i {
    font-size: 20px;
    color: #333;
    cursor: pointer;
}

.menu-toggle {
    display: none;
}

.menu-toggle i {
    font-size: 24px;
    cursor: pointer;
}

/* Hero Slider Section (Home Page) */
.hero-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.slider {
    display: flex;
    width: 100%;
    height: 100%;
}

.slide {
    flex: 0 0 100%;
    position: relative;
    display: none;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.slide-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.slider-controls button {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: #fff;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
    transition: background 0.3s;
}

.slider-controls button:hover {
    background: rgba(0, 0, 0, 0.8);
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    opacity: 0.5;
}

.dot.active {
    opacity: 1;
    background: #0066cc;
}

/* Hero Section (Other Pages) */
.hero {
    background: no-repeat center/cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #0066cc;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

/* Home Page Sections */
.about {
    padding: 60px 0;
    background: #f8f8f8;
}

.about h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 36px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-item {
    background: #fff;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.services {
    padding: 60px 0;
}

.services h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 36px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-item {
    text-align: center;
}

.service-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
}

/* About Page Sections */
.about-story,
.vision-mission,
.leadership {
    padding: 60px 0;
}

.about-story h2,
.vision-mission h2,
.leadership h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 36px;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.leader-item {
    text-align: center;
    background: #f8f8f8;
    padding: 20px;
    border-radius: 5px;
}

/* Business Page Sections */
.business-section {
    padding: 60px 0;
}

.business-section.alternate .business-content {
    flex-direction: row-reverse;
}

.business-content {
    display: flex;
    gap: 30px;
    align-items: center;
}

.business-content img {
    width: 50%;
    height: 300px;
    object-fit: cover;
    border-radius: 5px;
}

.business-text {
    width: 50%;
}

.business-text p {
    margin-bottom: 15px;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.business-item {
    background: #fff;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

/* Supplier Page Sections */
.supplier-section {
    padding: 60px 0;
}

.supplier-content {
    display: flex;
    gap: 30px;
    align-items: center;
}

.supplier-content img {
    width: 50%;
    height: 300px;
    object-fit: cover;
    border-radius: 5px;
}

.supplier-text {
    width: 50%;
}

.supplier-text p {
    margin-bottom: 15px;
}

/* Contact Page Sections */
.contact-form {
    padding: 60px 0;
    background: #f8f8f8;
}

.contact-form h2,
.contact-details h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 36px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.form-group textarea {
    resize: vertical;
}

.contact-details {
    padding: 60px 0;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.detail-item {
    text-align: center;
    background: #fff;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.detail-item p {
    margin-bottom: 10px;
}

/* Sustainability Page Sections */
.sustainability-section {
    padding: 60px 0;
}

.sustainability-section.alternate .sustainability-content {
    flex-direction: row-reverse;
}

.sustainability-content {
    display: flex;
    gap: 30px;
    align-items: center;
}

.sustainability-content img {
    width: 50%;
    height: 300px;
    object-fit: cover;
    border-radius: 5px;
}

.sustainability-text {
    width: 50%;
}

.sustainability-text p {
    margin-bottom: 15px;
}

.sustainability-goals {
    padding: 60px 0;
    background: #f8f8f8;
}

.sustainability-goals h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 36px;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.goal-item {
    text-align: center;
    background: #fff;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

/* Innovation Page Sections */
.innovation-section {
    padding: 60px 0;
}

.innovation-section.alternate .innovation-content {
    flex-direction: row-reverse;
}

.innovation-content {
    display: flex;
    gap: 30px;
    align-items: center;
}

.innovation-content img {
    width: 50%;
    height: 300px;
    object-fit: cover;
    border-radius: 5px;
}

.innovation-text {
    width: 50%;
}

.innovation-text p {
    margin-bottom: 15px;
}

.innovation-goals {
    padding: 60px 0;
    background: #f8f8f8;
}

.innovation-goals h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 36px;
}

/* News Page Sections */
.news-section {
    padding: 60px 0;
}

.news-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 36px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.news-item {
    background: #fff;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.news-item h3 {
    margin-bottom: 10px;
}

.news-item .date {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.news-item p {
    margin-bottom: 15px;
}

/* Investors Page Sections */
.investors-section {
    padding: 60px 0;
}

.investors-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 36px;
}

.investors-section.alternate {
    background: #f8f8f8;
}

.financial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.financial-item {
    text-align: center;
    background: #fff;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.resource-item {
    text-align: center;
    background: #fff;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

/* Careers Page Sections */
.careers-section {
    padding: 60px 0;
}

.careers-section.alternate {
    background: #f8f8f8;
}

.careers-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 36px;
}

.careers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.career-item {
    text-align: center;
    background: #fff;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.position-item {
    background: #fff;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.position-item h3 {
    margin-bottom: 10px;
}

.position-item p {
    margin-bottom: 15px;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    padding: 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-col h4 {
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #ccc;
    text-decoration: none;
}

.social a {
    font-size: 24px;
    margin-right: 15px;
    color: #ccc;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #555;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px; /* Adjusted for reduced nav height */
        left: 0;
        width: 100%;
        background: #fff;
        padding: 20px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        display: none;
    }

    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu .submenu {
        position: static;
        padding-left: 20px;
    }

    .slide-content h1,
    .hero h1 {
        font-size: 32px;
    }

    .about-grid,
    .services-grid,
    .vision-mission-grid,
    .leadership-grid,
    .details-grid,
    .goals-grid,
    .news-grid,
    .financial-grid,
    .resources-grid,
    .careers-grid,
    .positions-grid,
    .business-grid {
        grid-template-columns: 1fr;
    }

    .business-content,
    .sustainability-content,
    .innovation-content,
    .supplier-content {
        flex-direction: column;
    }

    .business-content img,
    .business-text,
    .sustainability-content img,
    .sustainability-text,
    .innovation-content img,
    .innovation-text,
    .supplier-content img,
    .supplier-text {
        width: 100%;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    /* Site Map Placeholder */
    .site-map-placeholder {
        background: #f8f8f8;
        padding: 20px;
        border-radius: 5px;
        margin-top: 20px;
    }

    .site-map-placeholder h3 {
        font-size: 24px;
        margin-bottom: 15px;
        color: #333;
    }

    .site-map-list {
        list-style: none;
        font-size: 16px;
        color: #333;
    }

    .site-map-list > li {
        margin-bottom: 10px;
        font-weight: bold;
    }

    .site-map-list ul {
        list-style: none;
        padding-left: 20px;
        margin-top: 5px;
    }

    .site-map-list ul li {
        margin-bottom: 5px;
        font-weight: normal;
    }

    .site-map-list a {
        color: #0066cc;
        text-decoration: none;
    }

    .site-map-list a:hover {
        text-decoration: underline;
    }
}

/* About Page Enhanced Styles */
.about-content {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 40px;
}

.about-content.alternate {
    flex-direction: row-reverse;
}

.about-content img {
    width: 50%;
    height: 300px;
    object-fit: cover;
    border-radius: 5px;
}

.about-text {
    width: 50%;
}

.about-text h3 {
    margin-bottom: 15px;
    font-size: 24px;
}

.about-text p {
    margin-bottom: 15px;
}

.about-text ul {
    list-style: none;
    margin-bottom: 15px;
}

.about-text ul li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }

    .about-content img,
    .about-text {
        width: 100%;
    }
}

/* Leadership Section Enhanced Styles */
.leadership-intro,
.leadership-content {
    margin-bottom: 30px;
}

.leadership-intro p,
.leadership-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.leadership-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

@media (max-width: 768px) {
    .leadership-intro,
    .leadership-content {
        margin-bottom: 20px;
    }

    .leadership-content h3 {
        font-size: 20px;
    }
}

/* Overview Section Enhanced Styles */
.overview-content {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 40px;
}

.overview-content.alternate {
    flex-direction: row-reverse;
}

.overview-content img {
    width: 50%;
    height: 300px;
    object-fit: cover;
    border-radius: 5px;
}

.overview-text {
    width: 50%;
}

.overview-text p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .overview-content {
        flex-direction: column;
    }

    .overview-content img,
    .overview-text {
        width: 100%;
    }
}