:root {
    --primary-color: #0056b3;      /* Main blue */
    --primary-dark-color: #004494; /* Darker blue for hover/accents */
    --secondary-color: #e9ecef;   /* Light gray for secondary buttons/backgrounds */
    --secondary-dark-color: #dee2e6; /* Darker light gray */
    --light-bg-color: #f8f9fa;     /* Very light gray for alternating backgrounds */
    --white-color: #ffffff;
    --dark-text-color: #212529;    /* Darker text for headings */
    --body-text-color: #495057;     /* Main body text */
    --muted-text-color: #6c757d;    /* Lighter text */
    --border-color: #dee2e6;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.08);
    --font-sans: "Nunito Sans", sans-serif;
}

/* Basic Resets & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px; /* Base font size */
}

body {
    font-family: var(--font-sans);
    line-height: 1.7; /* Slightly increased line-height */
    color: var(--body-text-color);
    background-color: var(--white-color); /* Default background to white */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark-color);
    text-decoration: none; /* Remove underline on hover by default */
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: var(--dark-text-color);
    margin-bottom: 0.75rem;
    line-height: 1.3;
    font-weight: 600; /* Slightly bolder headings */
}

h1 { font-size: 2.8rem; margin-bottom: 1rem; } 
h2 { font-size: 2.2rem; margin-bottom: 1.5rem; font-weight: 700;} 
h3 { font-size: 1.5rem; margin-bottom: 1rem; } 
h4 { font-size: 1.1rem; margin-bottom: 0.5rem; font-weight: 700;}

p {
    margin-bottom: 1.25rem; /* Increased paragraph spacing */
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background-color: var(--white-color);
    padding: 0.8rem 0; /* Adjusted padding */
    border-bottom: 1px solid var(--border-color);
    position: sticky; /* Make header sticky */
    top: 0; /* Stick to the top */
    z-index: 1020; /* Ensure it's above most other content */
    transition: box-shadow 0.3s ease; /* Smooth shadow transition */
}

/* Optional: Add shadow when scrolled (requires JS or can be always on) */
/* For simplicity, let's add a subtle shadow always for now */
header {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); 
}

header nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative; 
}

.logo a {
    /* Removed text styles */
    display: inline-block; /* Ensure link wraps the image correctly */
}

header .logo-img {
    height: 40px; /* Adjust as needed */
    width: auto;
    vertical-align: middle; /* Align image nicely if there's adjacent text/elements */
    /* Experimental filter to approximate primary dark blue - Results may vary! */
    filter: invert(25%) sepia(50%) saturate(3500%) hue-rotate(195deg) brightness(75%) contrast(100%); 
    /* The above filter is complex and might not yield the exact blue. */
    /* Consider editing the SVG directly for precise color control. */
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.8rem; /* Increased gap */
}

nav ul li a {
    color: var(--body-text-color);
    font-weight: 600; /* Slightly bolder nav links */
    padding: 0.5rem 0;
    position: relative;
    text-decoration: none;
    transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary-color);
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    margin-top: 4px; /* Adjusted position */
    right: 0;
    background: var(--primary-color);
    transition: width 0.3s ease;
    -webkit-transition: width 0.3s ease;
}
nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
    left: 0;
}

.language-switcher a {
    margin-left: 0.6rem;
    font-weight: 600;
    color: var(--muted-text-color);
    font-size: 0.95rem;
}

.language-switcher a.active {
    color: var(--primary-color);
    text-decoration: none; /* No underline, use color difference */
}

.language-switcher a:hover {
     color: var(--primary-dark-color);
}

/* Main Content Sections */
main section {
    padding: 80px 20px; /* Increased vertical padding */
    text-align: center;
    overflow: hidden; /* Prevent margin collapse issues */
}

/* Class for alternating background color */
.section-bg-light {
    background-color: var(--light-bg-color);
}

/* Basic Button Styles */
.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 14px 30px; /* Increased padding */
    border-radius: 6px;
    font-weight: 700; /* Bolder button text */
    font-size: 1rem;
    text-transform: none; /* Removed uppercase */
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    margin: 0.5rem;
    border: 1px solid var(--primary-color);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.cta-button:hover {
    background-color: var(--primary-dark-color);
    border-color: var(--primary-dark-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 86, 179, 0.2);
    color: var(--white-color);
}

.cta-button.secondary {
    background-color: var(--secondary-color);
    color: var(--dark-text-color);
    border-color: var(--secondary-dark-color);
    box-shadow: none;
}

.cta-button.secondary:hover {
    background-color: var(--secondary-dark-color);
    border-color: #adb5bd;
    transform: translateY(-2px);
    box-shadow: none;
    color: var(--dark-text-color);
}

/* Footer */
footer {
    background-color: var(--dark-text-color);
    color: #adb5bd; /* Lighter gray for footer text */
    padding-top: 4rem;
    padding-bottom: 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2.5rem auto; /* Increased bottom margin */
    padding: 0 20px;
}

.footer-content > div {
    flex: 1;
    min-width: 220px; /* Slightly wider min-width */
    margin-bottom: 1.5rem; /* Add margin for better spacing on wrap */
}

.footer-logo {
    /* Removed text styles */
    flex-basis: 100%; 
    margin-bottom: 1rem;
    display: flex; 
    flex-direction: column;
    align-items: center; 
    min-height: 60px; /* Ensure minimum height for the container */
}

.footer-logo-img {
    /* Removed max-height, using fixed height */
    height: 45px; 
    width: auto;
    display: block; /* Ensure block display */
    margin: 0 auto 0.75rem auto; /* Center horizontally, add bottom margin */
    filter: brightness(0) invert(1); /* Make the SVG logo white */
}

@media (min-width: 992px) { /* Apply on larger screens */
    .footer-logo {
        flex-basis: auto; 
        margin-bottom: 0;
        flex: 1.5; 
        align-items: flex-start; 
    }
    .footer-logo-img {
        margin: 0 0 0.75rem 0; /* Reset horizontal margin for left alignment */
    }
    .footer-content > div { /* Reset flex basis for other divs on larger screens */
         flex: 1;
    }
}

.footer-logo p {
    margin-left: 0; /* Ensure text starts at the very left */
    padding-left: 0; /* Ensure no padding affects alignment */
}

.footer-logo p small {
    font-size: 0.9rem;
    color: #889097; /* Slightly adjusted color */
    font-weight: 400; /* Normal weight */
    display: block;
    margin-top: 0.5rem;
    line-height: 1.5;
}

footer h4 {
    color: var(--white-color);
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

footer ul {
    list-style: none;
}

footer ul li {
    margin-bottom: 0.7rem; /* Increased spacing */
}

footer ul li a, footer p, footer a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer ul li a:hover, footer a:hover {
    color: var(--white-color);
    text-decoration: none;
}

footer p {
    margin-bottom: 0.6rem;
}

.footer-language a {
     margin-right: 8px; /* Increased Spacing */
     font-weight: 500;
}

.footer-language a.active {
    font-weight: 700;
    color: var(--white-color);
}

.footer-bottom {
    border-top: 1px solid #495057; /* Slightly darker border */
    padding-top: 1.5rem;
    margin-top: 1rem; /* Add margin above bottom bar */
    text-align: center;
    font-size: 0.9rem;
    color: #889097;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* ===================================
   Section Specific Styling Starts Here 
   ==================================== */

/* Hero Section */
#hero {
    background-color: var(--light-bg-color);
    padding: 100px 20px 120px 20px; /* More padding bottom */
    text-align: center;
}

#hero h1 {
    font-size: 3.5rem; 
    font-weight: 800;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

#hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--muted-text-color);
    max-width: 700px;
}

/* Intro Section */
#intro h2 {
     margin-bottom: 2rem; /* More space after heading */
}

/* Services Summary Cards */
#services-summary {
    background-color: var(--light-bg-color); /* Use variable */
}

.service-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.service-cards .card {
    background-color: var(--white-color);
    padding: 2.5rem 2rem; /* Increased padding */
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    text-align: center;
    flex-basis: 320px; /* Adjusted base width */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.service-cards .card:hover {
    transform: translateY(-8px); /* Increased lift */
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.service-cards .card h3 {
    margin-bottom: 1rem;
    color: var(--primary-dark-color);
}

.service-cards .card p {
     font-size: 1rem;
     color: var(--muted-text-color);
}

.service-cards .card a {
    font-weight: 600; /* Use 600 weight */
    color: var(--primary-color);
    margin-top: 1.5rem;
    display: inline-block;
    font-size: 0.95rem;
}

.service-cards .card a:hover {
     text-decoration: underline;
}

/* Why Evrion Section */
#why-evrion ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem 3rem; /* Row and column gap */
    flex-wrap: wrap;
    margin-top: 3rem;
    padding: 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

#why-evrion li {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-text-color);
    flex-basis: calc(50% - 2rem); /* Roughly 2 columns */
    text-align: left;
    padding-left: 2.5rem; /* Space for icon */
    position: relative;
}

/* Placeholder for icons */
#why-evrion li::before {
    content: "✓"; /* Example icon */
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: bold;
}

/* Icon Styles */
#why-evrion li i {
    margin-right: 8px; /* Add space between icon and text */
    /* Optional: Set a color consistent with the theme */
    /* color: #0056b3; */
}

.service-icon {
    font-size: 3em; /* Increase icon size */
    color: #0056b3; /* Use theme color */
    margin-bottom: 15px; /* Add space below icon */
    text-align: center; /* Center the icon within its div */
    display: block; /* Ensure block display for centering */
}

/* Target Audience Section */
#target-audience {
     background-color: var(--light-bg-color); /* Use variable */
}

.audience-split {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.audience-split > div {
    flex: 1;
    min-width: 320px;
    padding: 2.5rem;
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.audience-split h3 {
    color: var(--primary-dark-color);
    margin-bottom: 1rem;
}

.audience-split p {
     color: var(--body-text-color);
     margin-bottom: 1.5rem;
}

.audience-split a {
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-color);
}

.audience-split a:hover {
     text-decoration: underline;
}

/* Contact CTA Section */
#contact-cta {
    background-color: var(--primary-dark-color);
    color: var(--white-color);
    padding: 80px 20px;
}

#contact-cta h2 {
    color: var(--white-color);
    font-size: 2.5rem;
}

#contact-cta p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
}

#contact-cta .cta-button {
    background-color: var(--white-color);
    color: var(--primary-dark-color);
    border-color: var(--white-color);
}

#contact-cta .cta-button:hover {
    background-color: var(--secondary-color);
    color: var(--primary-dark-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
}

/* --- About Us Page Specifics --- */
#mission-vision .flex-container {
     display: flex; 
     flex-wrap: wrap; 
     gap: 2rem; 
     justify-content: center; 
     text-align: left; 
     max-width: 900px; 
     margin: 2rem auto 0 auto;
}

#mission-vision .flex-item {
     flex: 1; 
     min-width: 300px;
}

#mission-vision .flex-item h3 i { /* Style for Mission/Vision icons */
    margin-right: 0.5rem; /* Add space between icon and text */
    color: var(--primary-color); /* Set icon color to primary */
}

#values ul {
    list-style: none; 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 1.5rem 2rem; /* Row and column gap */
    margin-top: 2rem;
    padding: 0;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
}
#values li {
    flex-basis: 220px; /* Adjust basis */
    text-align: center;
    padding: 1rem;
}

#values li strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-dark-color);
}

/* About Page Specific Styles */
.values-list {
    list-style: none; /* Remove default bullets */
    padding-left: 0; /* Remove default padding */
}

.values-list li {
    margin-bottom: 1.5rem; /* Increased space between cards */
    display: flex; /* Align icon and text */
    align-items: flex-start; /* Align items to the top */
    background-color: var(--white-color); /* Card background */
    padding: 1.5rem; /* Padding inside the card */
    border: 1px solid var(--border-color); /* Card border */
    border-radius: 8px; /* Rounded corners */
    box-shadow: var(--shadow-sm); /* Subtle shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Hover effect */
    flex-basis: calc(33.333% - 2rem); /* Aim for 3 columns, adjust gap as needed */
    min-width: 280px; /* Minimum width before wrapping */
    text-align: left; /* Ensure text aligns left */
}

.values-list li:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.values-list li i {
    margin-right: 0.75rem; /* Space for side-by-side */
    color: var(--primary-color);
    font-size: 1.1em;
    margin-top: 0.2em;
    min-width: 1.2em;
    text-align: center;
}

/* --- Services Page Specifics --- */
.service-detail-section {
    /* General styling for detailed service sections if needed */
    padding-top: 60px;
    padding-bottom: 60px;
}

.service-detail-section h2 {
    margin-bottom: 1.5rem;
}

.service-detail-section h3 {
     margin-top: 2rem; 
     margin-bottom: 1rem;
     font-size: 1.3rem;
     color: var(--primary-dark-color);
}

.service-detail-section ul {
     list-style: disc; 
     margin-left: 25px; /* Indent list */
     text-align: left; 
     max-width: 650px; 
     margin-left:auto; 
     margin-right:auto;
}

.service-detail-section li {
     margin-bottom: 0.6rem;
}

/* --- Products/Sectors Page Specifics --- */
.categories-grid {
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 1.5rem; 
    margin-top: 2rem; 
    max-width: 1000px; 
    margin-left: auto; 
    margin-right: auto;
}

.category-item {
    flex-basis: 280px; /* Adjust width */
    border: 1px solid var(--border-color);
    padding: 2rem 1.5rem; 
    border-radius: 8px; 
    text-align: left;
    background-color: var(--white-color);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.category-item h3 {
    margin-bottom: 0.75rem; 
    font-size: 1.3rem;
    color: var(--primary-dark-color);
}

.category-item p {
    font-size: 0.95rem; 
    color: var(--muted-text-color);
    margin-bottom: 0;
    line-height: 1.6;
}

/* --- For Producers Page Specifics --- */
#producer-benefits ul {
    list-style: none; 
    padding: 0; 
    margin-top: 2rem; 
    max-width: 800px; 
    margin-left: auto; 
    margin-right: auto; 
    text-align: left;
}
#producer-benefits li {
    margin-bottom: 1.2rem; /* Increased spacing */
    padding-left: 2.5rem; /* Space for potential icon */
    position: relative;
    line-height: 1.6;
}

#producer-benefits li::before {
     content: "→"; /* Example icon */
     position: absolute;
     left: 0;
     top: 0;
     color: var(--primary-color);
     font-size: 1.3rem;
     font-weight: bold;
     line-height: 1.6;
}

#producer-benefits li strong {
     color: var(--dark-text-color);
}

#partnership-process ol {
    list-style-position: outside; /* Numbers outside */
    margin: 2rem auto 0 auto; 
    text-align: left;
    max-width: 750px; 
    padding-left: 2rem; /* Space for numbers */
}

#partnership-process li {
    margin-bottom: 1rem; 
    padding-left: 0.5rem; /* Space after number */
    line-height: 1.7;
}

#partnership-process li strong {
    display: block;
    color: var(--dark-text-color);
    margin-bottom: 0.25rem;
}

/* --- Global Network Page Specifics --- */
#network-visualization .region-info {
     margin-top: 2rem; 
     padding: 2rem; 
     background-color: var(--secondary-color); 
     border-radius: 8px; 
     max-width: 800px; 
     margin-left: auto; 
     margin-right: auto;
     border: 1px solid var(--border-color);
}

#network-visualization .region-info strong {
    color: var(--dark-text-color);
}

#network-visualization .region-info em {
     color: var(--muted-text-color);
     font-size: 0.9rem;
     display: block;
     margin-top: 1rem;
}

/* --- Contact Page Specifics --- */
.contact-container {
    display: flex; 
    flex-wrap: wrap; 
    gap: 3rem; /* Increased gap */
    max-width: 1100px; 
    margin: 0 auto;
    align-items: flex-start; /* Align items top */
}

.contact-form {
    flex: 1.5; /* Give form more space */
    min-width: 320px;
    text-align: left;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.contact-form h2, .contact-info h2 {
     margin-bottom: 1.5rem;
     text-align: left;
}

/* Basic Form Styling */
.contact-form form div {
    margin-bottom: 1.25rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-text-color);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px; /* Adjusted padding */
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--body-text-color);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.15);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form select {
     appearance: none; /* Basic style reset for select */
     background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
     background-repeat: no-repeat;
     background-position: right 0.75rem center;
     background-size: 16px 12px;
}

.contact-form button[type="submit"] {
     width: auto; /* Don't force full width */
     padding-left: 40px; /* Wider padding */
     padding-right: 40px;
}

.contact-form label[for*="consent"] {
     font-size: 0.9rem;
     font-weight: 400;
     color: var(--muted-text-color);
}
.contact-form input[type="checkbox"] {
     margin-right: 0.5rem;
     vertical-align: middle;
}

.contact-info p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.contact-info strong {
    color: var(--dark-text-color);
    min-width: 70px; /* Align text */
    display: inline-block;
}

.contact-info a {
     text-decoration: underline;
}
.contact-info a:hover {
     color: var(--primary-dark-color);
}

#map-placeholder {
    width: 100%;
    height: 350px; /* Increased height */
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted-text-color);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    font-style: italic;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    h1 { font-size: 2.5rem; }
    #hero h1 { font-size: 3rem; }
    h2 { font-size: 2rem; }
    /* nav ul { gap: 1.2rem; } */ /* Let's keep the increased nav gap from previous edits */
    .footer-logo { flex: 1; } /* Adjust footer logo flex */
}

@media (max-width: 768px) {
    html { font-size: 15px; } /* Slightly smaller base font */
    nav {
        flex-direction: row;
        align-items: flex-start;
        padding: 0.5rem 20px; /* Adjust padding */
    }
    nav .logo {
         margin-bottom: 0.5rem; /* Space below logo */
    }
    nav ul {
        flex-direction: column;
        gap: 0.3rem; /* Reduced gap */
        margin-top: 0.8rem;
        width: 100%;
        align-items: flex-start;
    }
    nav ul li {
        width: 100%;
        padding: 0.3rem 0;
    }
    nav ul li a::after { /* Hide underline on mobile nav */
         display: none;
    }
    .language-switcher {
        margin-top: 0.8rem;
        align-self: flex-start;
    }

    main section {
         padding: 60px 15px; /* Reduce padding */
    }

    #hero {
         padding: 80px 15px 100px 15px;
    }

    .service-cards, .audience-split, .categories-grid {
        gap: 1.5rem;
    }

    #why-evrion li {
        flex-basis: 100%; /* Stack items */
        text-align: left;
    }

    .audience-split > div {
        flex-basis: 100%; 
        text-align: center;
        padding: 2rem;
    }

    /* Add styles for .values-list on mobile */
    .values-list {
        gap: 1rem; /* Slightly reduce gap on mobile */
    }

    .values-list li {
        flex-direction: column; /* Stack icon and text */
        align-items: center;   /* Center items horizontally */
        text-align: center;    /* Center text */
        flex-basis: calc(50% - 1rem); /* Aim for 2 columns on medium screens */
        min-width: 180px; /* Adjust min-width */
        padding: 1.25rem; /* Slightly adjust padding */
    }

    .values-list li i {
        margin-right: 0;      /* Remove side margin */
        margin-bottom: 0.75rem; /* Add space below icon */
        font-size: 1.5em; /* Optional: Make icon slightly larger */
    }
    /* End added styles for .values-list */

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

    .footer-content > div {
         min-width: auto;
         margin-bottom: 2rem;
    }

    .contact-container {
         gap: 2rem;
    }
    .contact-form {
         order: 2; /* Put form below info on mobile */
    }
    .contact-info {
         order: 1;
    }
}

@media (max-width: 576px) {
    h1 { font-size: 2rem; }
    #hero h1 { font-size: 2.5rem; }
    #hero p { font-size: 1.1rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.3rem; }
    .cta-button {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    main section {
         padding: 50px 15px;
    }
    #hero {
         padding: 60px 15px 80px 15px;
    }
    .service-cards .card, .category-item {
        flex-basis: 100%; /* Full width cards */
    }

    /* Stack values list items in a single column */
    .values-list li {
        flex-basis: 100%;
    }
}

/* Navbar Styles */
header nav {
    /* ... existing nav styles ... */
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative; /* Needed for absolute positioning of mobile menu */
}

header nav ul#nav-links {
    /* ... existing ul styles ... */
    display: flex;
    gap: 2.5rem; /* Slightly increased gap */
    margin: 0; /* Reset margin */
    padding: 0; /* Reset padding */
    list-style: none;
}

header nav ul#nav-links li a {
    text-decoration: none;
    color: var(--dark-text-color); /* Slightly darker default color */
    font-weight: 500; /* Medium weight */
    padding: 0.5rem 0; /* Add some vertical padding for click area */
    transition: color 0.3s ease;
    position: relative; /* For potential hover effects */
}

header nav ul#nav-links li a:hover {
    color: var(--primary-color); /* Theme color on hover */
    /* Optional: Add underline effect */
    /* &::after { ... } */
}

header nav ul#nav-links li a.active-link {
    color: var(--primary-color); /* Theme color for active link */
    font-weight: 700; /* Bold weight for active link */
    /* Optional: Add a subtle underline or indicator */
}

.nav-toggle {
    display: none; /* Hidden by default */
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.5rem; /* Added padding for easier clicking */
    margin-right: -0.5rem; /* Compensate padding visually */
    z-index: 1050; /* Ensure button is above menu */
    position: relative;
}

/* Mobile Navigation Styles */
@media (max-width: 991.98px) {
    header nav {
        justify-content: flex-start; /* Align items to the start */
    }

    header nav ul#nav-links {
        display: flex; /* Changed from none to flex for transition */
        visibility: hidden; /* Hide initially */
        opacity: 0; /* Start fully transparent */
        max-height: 0; /* Start with zero height */
        overflow: hidden; /* Hide content initially */
        flex-direction: column;
        position: absolute;
        top: 100%; 
        left: 0;
        width: 100%;
        background-color: var(--white-color);
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        padding: 0; /* Remove padding, handled by links */
        border-top: 1px solid var(--border-color);
        z-index: 1000; 
        gap: 0; 
        transition: max-height 0.4s ease-out, opacity 0.4s ease-out, visibility 0.4s ease-out; /* Smooth transitions */
    }

    nav.mobile-nav-active ul#nav-links {
        visibility: visible; /* Make visible when active */
        opacity: 1; /* Fully opaque when active */
        max-height: 80vh; /* Allow significant height, adjust as needed */
        overflow-y: auto; /* Add scroll if needed */
        padding: 1rem 0; /* Add padding back when active */
    }

    header nav ul#nav-links li {
        text-align: center;
        margin: 0;
        width: 100%;
    }

    header nav ul#nav-links li a {
        display: block;
        padding: 1rem;
        width: 100%;
        border-bottom: 1px solid var(--light-bg-color);
    }
    
    header nav ul#nav-links li:last-child a {
        border-bottom: none;
    }

    .nav-toggle {
        display: block; /* Make the hamburger icon visible */
        cursor: pointer;
        z-index: 1041; /* Ensure it's above the nav links */
        /* Add margin to push it to the right */
        margin-left: auto; 
    }

    .language-switcher {
        /* Optional: Adjust language switcher position/style for mobile */
        /* Example: position: absolute; top: 15px; right: 60px; */
    }
} 

/* Product/Brands Page Specific Styles */
.brands-grid {
    /* Styles are inline for now, can move here */
}

.brand-card {
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow-sm);
    flex-basis: calc(33.333% - 2rem); /* Adjust gap if needed */
    min-width: 250px;
    display: flex; /* To center content vertically */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 150px; /* Give some initial height */
}

.brand-card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: var(--shadow-md);
}

.brand-card h3 {
    margin-bottom: 0; /* Remove default margin */
    color: var(--dark-text-color);
}

/* Modal Styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1050; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.6); /* Black w/ opacity */
    padding-top: 60px; /* Location of the box */
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto; /* 5% from the top and centered */
    padding: 30px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
    max-width: 700px; /* Maximum width */
    border-radius: 8px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.modal-close {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.modal-close:hover,
.modal-close:focus {
    color: black;
    text-decoration: none;
}

.modal-content h2 {
    margin-top: 0;
    color: var(--primary-color);
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

/* Remove old list/gallery styles */
/* .modal-product-list, .modal-product-heading, .modal-gallery { display: none; } */ 

/* New Product Item Styles */
.modal-product-item {
    display: flex; /* Arrange image and details side-by-side */
    align-items: flex-start; /* Align items to the top */
    margin-bottom: 1.8rem; /* Space between product items */
    padding-bottom: 1.5rem; /* Space below item before border */
    border-bottom: 1px solid var(--secondary-color); /* Separator line */
}

.modal-product-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none; /* No border for the last item */
}

.modal-product-item img {
    width: 80px; /* Fixed width for image */
    height: auto;
    margin-right: 15px; /* Space between image and details */
    border: 1px solid var(--border-color);
    border-radius: 4px;
    object-fit: contain; /* Ensure image fits without distortion */
    flex-shrink: 0; /* Prevent image from shrinking */
}

.modal-product-details {
    flex-grow: 1; /* Allow details to take remaining space */
}

.modal-product-name {
    display: block; /* Name on its own line */
    font-weight: 600;
    color: var(--dark-text-color);
    margin-bottom: 0.3rem;
}

.modal-product-name a {
    text-decoration: underline;
}

.modal-product-description {
    display: block; /* Description below name */
    font-size: 0.9em;
    color: var(--muted-text-color);
    line-height: 1.5;
}

/* Style for Title Items (like Shreas divisions) */
.modal-product-heading-item {
    border-bottom: none; /* No border for heading items */
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.modal-product-heading-item strong {
    font-weight: 700; /* Bold heading */
    color: var(--dark-text-color);
    font-size: 1.1em;
    display: block;
}

/* --- Services Page Specifics --- */
.service-detail-section {
    /* General styling for detailed service sections if needed */
    padding-top: 60px;
    padding-bottom: 60px;
}

.service-detail-section h2 {
    margin-bottom: 1.5rem;
}

.service-detail-section h3 {
     margin-top: 2rem; 
     margin-bottom: 1rem;
     font-size: 1.3rem;
     color: var(--primary-dark-color);
}

.service-detail-section ul {
     list-style: disc; 
     margin-left: 25px; /* Indent list */
     text-align: left; 
     max-width: 650px; 
     margin-left:auto; 
     margin-right:auto;
}

.service-detail-section li {
     margin-bottom: 0.6rem;
}

/* --- Products/Sectors Page Specifics --- */
.categories-grid {
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 1.5rem; 
    margin-top: 2rem; 
    max-width: 1000px; 
    margin-left: auto; 
    margin-right: auto;
}

.category-item {
    flex-basis: 280px; /* Adjust width */
    border: 1px solid var(--border-color);
    padding: 2rem 1.5rem; 
    border-radius: 8px; 
    text-align: left;
    background-color: var(--white-color);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.category-item h3 {
    margin-bottom: 0.75rem; 
    font-size: 1.3rem;
    color: var(--primary-dark-color);
}

.category-item p {
    font-size: 0.95rem; 
    color: var(--muted-text-color);
    margin-bottom: 0;
    line-height: 1.6;
}

/* --- For Producers Page Specifics --- */
#producer-benefits ul {
    list-style: none; 
    padding: 0; 
    margin-top: 2rem; 
    max-width: 800px; 
    margin-left: auto; 
    margin-right: auto; 
    text-align: left;
}
#producer-benefits li {
    margin-bottom: 1.2rem; /* Increased spacing */
    padding-left: 2.5rem; /* Space for potential icon */
    position: relative;
    line-height: 1.6;
}

#producer-benefits li::before {
     content: "→"; /* Example icon */
     position: absolute;
     left: 0;
     top: 0;
     color: var(--primary-color);
     font-size: 1.3rem;
     font-weight: bold;
     line-height: 1.6;
}

#producer-benefits li strong {
     color: var(--dark-text-color);
}

#partnership-process ol {
    list-style-position: outside; /* Numbers outside */
    margin: 2rem auto 0 auto; 
    text-align: left;
    max-width: 750px; 
    padding-left: 2rem; /* Space for numbers */
}

#partnership-process li {
    margin-bottom: 1rem; 
    padding-left: 0.5rem; /* Space after number */
    line-height: 1.7;
}

#partnership-process li strong {
    display: block;
    color: var(--dark-text-color);
    margin-bottom: 0.25rem;
}

/* --- Global Network Page Specifics --- */
#network-visualization .region-info {
     margin-top: 2rem; 
     padding: 2rem; 
     background-color: var(--secondary-color); 
     border-radius: 8px; 
     max-width: 800px; 
     margin-left: auto; 
     margin-right: auto;
     border: 1px solid var(--border-color);
}

#network-visualization .region-info strong {
    color: var(--dark-text-color);
}

#network-visualization .region-info em {
     color: var(--muted-text-color);
     font-size: 0.9rem;
     display: block;
     margin-top: 1rem;
}

/* --- Contact Page Specifics --- */
.contact-container {
    display: flex; 
    flex-wrap: wrap; 
    gap: 3rem; /* Increased gap */
    max-width: 1100px; 
    margin: 0 auto;
    align-items: flex-start; /* Align items top */
}

.contact-form {
    flex: 1.5; /* Give form more space */
    min-width: 320px;
    text-align: left;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.contact-form h2, .contact-info h2 {
     margin-bottom: 1.5rem;
     text-align: left;
}

/* Basic Form Styling */
.contact-form form div {
    margin-bottom: 1.25rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-text-color);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px; /* Adjusted padding */
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--body-text-color);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.15);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form select {
     appearance: none; /* Basic style reset for select */
     background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
     background-repeat: no-repeat;
     background-position: right 0.75rem center;
     background-size: 16px 12px;
}

.contact-form button[type="submit"] {
     width: auto; /* Don't force full width */
     padding-left: 40px; /* Wider padding */
     padding-right: 40px;
}

.contact-form label[for*="consent"] {
     font-size: 0.9rem;
     font-weight: 400;
     color: var(--muted-text-color);
}
.contact-form input[type="checkbox"] {
     margin-right: 0.5rem;
     vertical-align: middle;
}

.contact-info p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.contact-info strong {
    color: var(--dark-text-color);
    min-width: 70px; /* Align text */
    display: inline-block;
}

.contact-info a {
     text-decoration: underline;
}
.contact-info a:hover {
     color: var(--primary-dark-color);
}

#map-placeholder {
    width: 100%;
    height: 350px; /* Increased height */
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted-text-color);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    font-style: italic;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    h1 { font-size: 2.5rem; }
    #hero h1 { font-size: 3rem; }
    h2 { font-size: 2rem; }
    /* nav ul { gap: 1.2rem; } */ /* Let's keep the increased nav gap from previous edits */
    .footer-logo { flex: 1; } /* Adjust footer logo flex */
}

@media (max-width: 768px) {
    html { font-size: 15px; } /* Slightly smaller base font */
    /* Keep existing mobile nav adjustments */

    main section {
         padding: 60px 15px; /* Reduce padding */
    }

    #hero {
         padding: 80px 15px 100px 15px;
    }

    .service-cards, .audience-split, .categories-grid {
        gap: 1.5rem;
    }

    #why-evrion li {
        flex-basis: 100%; /* Stack items */
        text-align: left;
    }

    .audience-split > div {
        flex-basis: 100%; 
        text-align: center;
        padding: 2rem;
    }

    /* Add styles for .values-list on mobile */
    .values-list {
        gap: 1rem; /* Slightly reduce gap on mobile */
    }

    .values-list li {
        flex-direction: column; /* Stack icon and text */
        align-items: center;   /* Center items horizontally */
        text-align: center;    /* Center text */
        flex-basis: calc(50% - 1rem); /* Aim for 2 columns on medium screens */
        min-width: 180px; /* Adjust min-width */
        padding: 1.25rem; /* Slightly adjust padding */
    }

    .values-list li i {
        margin-right: 0;      /* Remove side margin */
        margin-bottom: 0.75rem; /* Add space below icon */
        font-size: 1.5em; /* Optional: Make icon slightly larger */
    }
    /* End added styles for .values-list */

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

    .footer-content > div {
         min-width: auto;
         margin-bottom: 2rem;
    }

    .contact-container {
         gap: 2rem;
    }
    .contact-form {
         order: 2; /* Put form below info on mobile */
    }
    .contact-info {
         order: 1;
    }
}

@media (max-width: 576px) {
    h1 { font-size: 2rem; }
    #hero h1 { font-size: 2.5rem; }
    #hero p { font-size: 1.1rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.3rem; }
    .cta-button {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    main section {
         padding: 50px 15px;
    }
    #hero {
         padding: 60px 15px 80px 15px;
    }
    .service-cards .card, .category-item {
        flex-basis: 100%; /* Full width cards */
    }

    /* Stack values list items in a single column */
    .values-list li {
        flex-basis: 100%;
    }
}

/* Navbar Styles */
header nav {
    /* ... existing nav styles ... */
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative; /* Needed for absolute positioning of mobile menu */
}

header nav ul#nav-links {
    /* ... existing ul styles ... */
    display: flex;
    gap: 2.5rem; /* Slightly increased gap */
    margin: 0; /* Reset margin */
    padding: 0; /* Reset padding */
    list-style: none;
}

header nav ul#nav-links li a {
    text-decoration: none;
    color: var(--dark-text-color); /* Slightly darker default color */
    font-weight: 500; /* Medium weight */
    padding: 0.5rem 0; /* Add some vertical padding for click area */
    transition: color 0.3s ease;
    position: relative; /* For potential hover effects */
}

header nav ul#nav-links li a:hover {
    color: var(--primary-color); /* Theme color on hover */
    /* Optional: Add underline effect */
    /* &::after { ... } */
}

header nav ul#nav-links li a.active-link {
    color: var(--primary-color); /* Theme color for active link */
    font-weight: 700; /* Bold weight for active link */
    /* Optional: Add a subtle underline or indicator */
}

.nav-toggle {
    display: none; /* Hidden by default */
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.5rem; /* Added padding for easier clicking */
    margin-right: -0.5rem; /* Compensate padding visually */
    z-index: 1050; /* Ensure button is above menu */
    position: relative;
}

/* Mobile Navigation Styles */
@media (max-width: 991.98px) {
    header nav {
        justify-content: flex-start; /* Align items to the start */
    }

    header nav ul#nav-links {
        display: flex; /* Changed from none to flex for transition */
        visibility: hidden; /* Hide initially */
        opacity: 0; /* Start fully transparent */
        max-height: 0; /* Start with zero height */
        overflow: hidden; /* Hide content initially */
        flex-direction: column;
        position: absolute;
        top: 100%; 
        left: 0;
        width: 100%;
        background-color: var(--white-color);
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        padding: 0; /* Remove padding, handled by links */
        border-top: 1px solid var(--border-color);
        z-index: 1000; 
        gap: 0; 
        transition: max-height 0.4s ease-out, opacity 0.4s ease-out, visibility 0.4s ease-out; /* Smooth transitions */
    }

    nav.mobile-nav-active ul#nav-links {
        visibility: visible; /* Make visible when active */
        opacity: 1; /* Fully opaque when active */
        max-height: 80vh; /* Allow significant height, adjust as needed */
        overflow-y: auto; /* Add scroll if needed */
        padding: 1rem 0; /* Add padding back when active */
    }

    header nav ul#nav-links li {
        text-align: center;
        margin: 0;
        width: 100%;
    }

    header nav ul#nav-links li a {
        display: block;
        padding: 1rem;
        width: 100%;
        border-bottom: 1px solid var(--light-bg-color);
    }
    
    header nav ul#nav-links li:last-child a {
        border-bottom: none;
    }

    .nav-toggle {
        display: block; /* Make the hamburger icon visible */
        cursor: pointer;
        z-index: 1041; /* Ensure it's above the nav links */
        /* Add margin to push it to the right */
        margin-left: auto; 
    }

    .language-switcher {
        /* Optional: Adjust language switcher position/style for mobile */
        /* Example: position: absolute; top: 15px; right: 60px; */
    }
} 