/* Universal Styles & Variables */
:root {
    --primary-color: #0056b3; /* A strong blue, often used for links/buttons */
    --secondary-color: #007bff; /* A slightly lighter blue, for accents */
    --accent-color: #28a745; /* Green for success/highlights */
    --dark-text: #333;
    --light-text: #fff;
    --light-bg: #f8f9fa;
    --mid-gray: #e9ecef;
    --border-color: #dee2e6;
    --font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --spacing-unit: 1rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--light-bg);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary-color);
    margin-bottom: calc(var(--spacing-unit) * 1.5);
    line-height: 1.2;
}

h1 {
    font-size: 2.8rem;
    text-align: center;
    color: var(--light-text); /* For hero section */
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-top: calc(var(--spacing-unit) * 3);
    margin-bottom: calc(var(--spacing-unit) * 2);
    color: var(--dark-text);
}

h3 {
    font-size: 1.6rem;
    margin-bottom: var(--spacing-unit);
    color: var(--primary-color);
}

p {
    margin-bottom: var(--spacing-unit);
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

ul {
    list-style: none;
}

/* Buttons */
.button {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    text-decoration: none;
    white-space: nowrap; /* Prevents text from wrapping on smaller buttons */
}

.primary-button {
    background-color: var(--primary-color);
    color: var(--light-text);
    border: 2px solid var(--primary-color);
}

.primary-button:hover {
    background-color: #004494;
    border-color: #004494;
}

.secondary-button {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.secondary-button:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.tertiary-button {
    background-color: var(--light-bg);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.tertiary-button:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.small-button {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

.large-button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background-color: var(--mid-gray);
    color: var(--dark-text) !important;
    border-color: var(--mid-gray) !important;
}

.disabled:hover {
    background-color: var(--mid-gray) !important;
    color: var(--dark-text) !important;
}

.text-center {
    text-align: center;
}

/* Header */
header {
    background-color: var(--light-text);
    padding: var(--spacing-unit) 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
}

.logo {
    height: 50px; /* Adjust as needed */
    width: auto;
}

nav ul {
    display: flex;
    align-items: center;
    gap: calc(var(--spacing-unit) * 1.5);
    flex-wrap: wrap; /* Allows navigation items to wrap on smaller screens */
    justify-content: center;
}

nav ul li a {
    color: var(--dark-text);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    margin-top: 5px;
    right: 0;
    background: var(--primary-color);
    transition: width 0.3s ease, right 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
    right: 0;
    left: auto; /* Ensures it grows from left to right on hover */
}

.contact-info {
    font-weight: 600;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.contact-info a {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('assets/SATHICORP-FACEBOOK-COVER-PHOTO-851x315.png') no-repeat center center/cover;
    color: var(--light-text);
    padding: calc(var(--spacing-unit) * 4) var(--spacing-unit);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px; /* Ensures a good height for the hero section */
    position: relative;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2; /* Ensures content is above potential overlays */
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-unit);
}

.hero-content .tagline {
    font-size: 1.4rem;
    margin-bottom: calc(var(--spacing-unit) * 2);
    opacity: 0.9;
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: var(--spacing-unit);
    flex-wrap: wrap;
}

.hero-image-container {
    display: none; /* Hide the direct image in hero for background effect */
}

/* About Us Brief */
.about-us-brief {
    background-color: var(--light-text);
    padding: calc(var(--spacing-unit) * 3) 0;
    border-bottom: 1px solid var(--border-color);
}

.about-us-brief p {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Our Solutions */
.our-solutions {
    padding: calc(var(--spacing-unit) * 3) 0;
    background-color: var(--light-bg);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: calc(var(--spacing-unit) * 2);
    margin-top: calc(var(--spacing-unit) * 2);
}

.solution-item {
    background-color: var(--light-text);
    padding: calc(var(--spacing-unit) * 2);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.solution-item h3 {
    margin-bottom: var(--spacing-unit);
    color: var(--secondary-color);
}

.solution-item p {
    font-size: 0.95rem;
    flex-grow: 1; /* Ensures paragraphs take up available space */
}

.solution-item ul {
    list-style: disc;
    text-align: left;
    margin: var(--spacing-unit) auto;
    padding-left: var(--spacing-unit) * 1.5;
    font-size: 0.9rem;
    color: #555;
}

.solution-item ul li {
    margin-bottom: 0.5rem;
}

.solution-item .button {
    margin-top: var(--spacing-unit);
}

.solution-item.coming-soon {
    position: relative;
    border: 2px dashed var(--mid-gray);
    opacity: 0.7;
}

.solution-item.coming-soon .coming-soon-tag {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 0.3rem 0.8rem;
    border-radius: 0 0 5px 5px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Why Choose Us */
.why-choose-us {
    background-color: var(--light-text);
    padding: calc(var(--spacing-unit) * 3) 0;
    border-top: 1px solid var(--border-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: calc(var(--spacing-unit) * 2);
    margin-top: calc(var(--spacing-unit) * 2);
}

.feature-item {
    text-align: center;
    padding: var(--spacing-unit) * 1.5;
    background-color: var(--light-bg);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item img {
    height: 60px;
    margin-bottom: var(--spacing-unit);
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.feature-item p {
    font-size: 0.9rem;
    color: #555;
}

/* Latest Insights / Blog */
.latest-insights {
    padding: calc(var(--spacing-unit) * 3) 0;
    background-color: var(--mid-gray);
}

.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: calc(var(--spacing-unit) * 2);
    margin-top: calc(var(--spacing-unit) * 2);
}

.blog-post-card {
    background-color: var(--light-text);
    padding: calc(var(--spacing-unit) * 1.5);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.blog-post-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.blog-post-card h3 a {
    color: var(--primary-color);
}

.blog-post-card p {
    font-size: 0.9rem;
    color: #555;
    flex-grow: 1;
}

.blog-post-card .read-more {
    display: inline-block;
    margin-top: var(--spacing-unit);
    color: var(--accent-color);
    font-weight: 600;
}

.blog-post-card .read-more:hover {
    text-decoration: underline;
}

.view-all-button {
    margin-top: calc(var(--spacing-unit) * 2);
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: calc(var(--spacing-unit) * 4) var(--spacing-unit);
    text-align: center;
}

.cta-section h2 {
    color: var(--light-text);
    margin-bottom: var(--spacing-unit);
    font-size: 2.5rem;
}

.cta-section p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto calc(var(--spacing-unit) * 2);
    opacity: 0.9;
}

/* Footer */
footer {
    background-color: var(--dark-text);
    color: var(--light-text);
    padding: calc(var(--spacing-unit) * 3) 0;
    font-size: 0.9rem;
    margin-top: auto; /* Pushes footer to the bottom */
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
    gap: calc(var(--spacing-unit) * 2);
}

.footer-col {
    flex: 1;
    min-width: 200px; /* Ensures columns don't get too narrow */
    margin-bottom: var(--spacing-unit);
}

.footer-col h3 {
    color: var(--light-text);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-unit);
    text-align: left;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--light-text);
}

.footer-logo {
    height: 40px; /* Adjust as needed */
    margin-bottom: var(--spacing-unit);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.social-media-icons {
    display: flex;
    gap: 1rem;
    margin-top: var(--spacing-unit);
}

.social-media-icons img {
    height: 28px;
    width: 28px;
    transition: transform 0.2s ease;
}

.social-media-icons img:hover {
    transform: scale(1.1);
}

.copyright {
    text-align: center;
    margin-top: calc(var(--spacing-unit) * 2);
    padding-top: var(--spacing-unit);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Callback Widget Styling (from original) */
#callback-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1001;
}

#widget-button {
    background-color: var(--accent-color); /* Green for call to action */
    color: var(--light-text);
    border: none;
    border-radius: 50px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

#widget-button:hover {
    background-color: #218838;
    transform: translateY(-3px);
}

#widget-button svg {
    width: 20px;
    height: 20px;
}

#callback-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1002;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#callback-modal.modal-visible {
    opacity: 1;
    visibility: visible;
}

#callback-modal.modal-hidden {
    opacity: 0;
    visibility: hidden;
}

.modal-content {
    background-color: var(--light-text);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    width: 90%;
    max-width: 400px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#modal-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #888;
    transition: color 0.3s ease;
}

#modal-close-btn:hover {
    color: var(--dark-text);
}

.form-step {
    display: none;
    flex-direction: column;
    gap: 15px;
}

.form-step.active-step {
    display: flex;
}

.form-step h3 {
    margin-bottom: 0;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.form-step p {
    font-size: 0.95rem;
    color: #555;
}

.form-step input[type="tel"],
.form-step input[type="text"],
.form-step input[type="email"] {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-step input[type="tel"]:focus,
.form-step input[type="text"]:focus,
.form-step input[type="email"]:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

.form-step .next-btn {
    background-color: var(--primary-color);
    color: var(--light-text);
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-step .next-btn:hover {
    background-color: #004494;
}

/* Responsive Design */
@media (max-width: 992px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .logo {
        margin-bottom: var(--spacing-unit);
    }

    nav ul {
        gap: var(--spacing-unit);
        justify-content: center;
        margin-top: var(--spacing-unit);
    }

    .contact-info {
        order: -1; /* Puts contact info above main nav on smaller screens */
        width: 100%;
        justify-content: center;
        margin-bottom: var(--spacing-unit);
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content .tagline {
        font-size: 1.2rem;
    }

    .solution-item, .feature-item, .blog-post-card {
        padding: calc(var(--spacing-unit) * 1.2);
    }

    h2 {
        font-size: 2rem;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-col {
        min-width: unset; /* Remove min-width for full column collapse */
        width: 100%;
        text-align: center;
    }

    .footer-col h3 {
        text-align: center;
    }

    .social-media-icons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 400px;
        padding: calc(var(--spacing-unit) * 2) var(--spacing-unit);
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content .tagline {
        font-size: 1rem;
    }

    .hero-ctas {
        flex-direction: column;
        gap: 0.8rem;
    }

    .button {
        width: 100%; /* Full width buttons on mobile */
        padding: 0.7rem 1.5rem;
    }

    h2 {
        font-size: 1.8rem;
        margin-top: calc(var(--spacing-unit) * 2);
        margin-bottom: calc(var(--spacing-unit) * 1.5);
    }

    h3 {
        font-size: 1.4rem;
    }

    .about-us-brief, .our-solutions, .why-choose-us, .latest-insights, .cta-section {
        padding: calc(var(--spacing-unit) * 2) 0;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 0.95rem;
    }

    nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }

    .logo {
        height: 40px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content .tagline {
        font-size: 0.9rem;
    }

    .large-button {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }
    .cta-section p {
        font-size: 1rem;
    }
}


/* --- START: Styles for Environmental Compliance Page (public_html/environmental-compliance/index.html) --- */

/* Hero Section Specifics for Compliance Page */
/* This overrides the general .hero-section background */
.compliance-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../assets/hero-compliance-bg.jpg') no-repeat center center/cover;
    /* The URL path uses ../ to go up one directory from environmental-compliance to public_html, then into assets */
    color: var(--light-text);
    padding: calc(var(--spacing-unit) * 4) var(--spacing-unit);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 550px; /* Slightly taller hero for impact */
    position: relative;
    z-index: 1; /* Ensure content is above background effects if any */
}

/* Ensure the hero content (text, buttons) is clearly visible */
.compliance-hero .hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2; /* Ensures content is above the dark overlay */
    padding: 30px; /* Add some padding to the content block */
    background-color: rgba(0, 0, 0, 0.4); /* Subtle dark background for text readability */
    border-radius: 8px;
}

.compliance-hero h1 {
    font-size: 3.5rem; /* Larger for impact */
    margin-bottom: var(--spacing-unit);
    line-height: 1.2;
    color: var(--light-text);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5); /* Text shadow for readability */
}

.compliance-hero .tagline {
    font-size: 1.4rem;
    margin-bottom: calc(var(--spacing-unit) * 2);
    opacity: 0.95;
}

/* General Description Paragraphs for sections */
.section-description {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 40px; /* Add more space below these descriptions */
    color: #555;
    max-width: 900px; /* Constrain width for better readability */
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Compliance Benefits Grid (replaces flex layout for better control) */
.compliance-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    padding: 25px;
    background-color: var(--light-text);
    border-radius: 10px; /* Slightly more rounded corners */
    box-shadow: 0 6px 20px rgba(0,0,0,0.08); /* More pronounced, modern shadow */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-8px); /* More noticeable lift on hover */
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.benefit-item .benefit-title {
    color: var(--primary-color); /* Use primary color for titles */
    margin-bottom: 15px; /* More space below title */
    font-size: 1.5em;
    font-weight: 600;
}

.benefit-item p {
    font-size: 0.95em;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0; /* Remove default paragraph margin */
}

/* Did You Know Box */
.did-you-know-box {
    background-color: var(--light-bg); /* Use light-bg variable */
    border-left: 5px solid var(--accent-color); /* Use accent color for border */
    padding: 25px;
    margin-top: 50px;
    text-align: left;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    display: flex; /* Use flex for icon alignment */
    align-items: flex-start;
    gap: 15px;
}

.did-you-know-box::before {
    content: "💡"; /* Lightbulb icon */
    font-size: 2.2em;
    line-height: 1;
    color: var(--accent-color);
    flex-shrink: 0;
}

.did-you-know-box .did-you-know-title {
    font-weight: bold;
    margin-bottom: 8px;
    color: var(--accent-color); /* Use accent color for title */
    font-size: 1.2em;
    line-height: 1.2;
}

.did-you-know-box p {
    margin-bottom: 0;
    color: #444;
    font-size: 1em;
}

/* Solution Item List - Bullet Icons */
.solution-item ul {
    list-style: none; /* Remove default list style */
    padding: 0;
    margin: 15px 0 20px 0; /* Adjust margins */
    text-align: left;
}

.solution-item ul li {
    margin-bottom: 8px;
    display: flex;
    align-items: center; /* Vertically align icon and text */
    color: #444;
    font-size: 0.98em;
}

.solution-item ul li .bullet-icon {
    color: var(--accent-color); /* Green checkmark */
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2em;
    line-height: 1;
    flex-shrink: 0; /* Prevent icon from shrinking */
}

/* Why Choose Us Icons - New Icons for compliance page */
/* These assume you've added new specific icon images for this section */
.why-choose-us .feature-item img {
    height: 70px; /* Slightly larger icons */
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.why-choose-us .feature-item:hover img {
    transform: scale(1.1); /* Slight zoom on hover */
}

/* Final Call to Action specific styling for compliance page */
.compliance-cta {
    background-color: var(--primary-color); /* Use primary color variable */
    color: var(--light-text);
    padding: calc(var(--spacing-unit) * 5) var(--spacing-unit); /* More vertical padding */
    text-align: center;
}

.compliance-cta h2 {
    color: var(--light-text); /* Ensure heading color is white on dark background */
    font-size: 2.8em; /* Slightly larger heading */
    margin-bottom: 25px;
}

.compliance-cta p {
    font-size: 1.25em; /* Slightly larger text */
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.compliance-cta .large-button {
    background-color: var(--light-text); /* White background for button */
    color: var(--primary-color); /* Primary color text */
    border: 2px solid var(--light-text); /* White border */
    padding: 15px 40px;
    font-size: 1.3em; /* Larger font size */
    border-radius: 50px; /* Pill shape for CTA */
    font-weight: 700;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.compliance-cta .large-button:hover {
    background-color: var(--secondary-color); /* Change to secondary blue on hover */
    color: var(--light-text);
    border-color: var(--secondary-color);
}

/* Blog Post Card Adjustments for this page (if different from main) */
.latest-insights .blog-post-card h3 {
    font-size: 1.3em; /* Adjust to better fit cards on this page */
}
.latest-insights .blog-post-card p {
    font-size: 0.9em;
}

/* --- END: Styles for Environmental Compliance Page --- */


/* --- Media Queries Specific to Compliance Page (Add to existing media queries or at the end) --- */

@media (max-width: 992px) {
    .compliance-hero h1 {
        font-size: 2.5rem;
    }
    .compliance-hero .tagline {
        font-size: 1.1rem;
    }
    .compliance-benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .compliance-cta h2 {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .compliance-hero {
        min-height: 450px;
        padding: calc(var(--spacing-unit) * 3) var(--spacing-unit);
    }
    .compliance-hero h1 {
        font-size: 2rem;
    }
    .compliance-hero .tagline {
        font-size: 1em;
    }
    .compliance-benefits-grid,
    .solution-grid,
    .features-grid,
    .blog-preview-grid {
        grid-template-columns: 1fr; /* Stack all grids vertically on smaller screens */
    }
    .benefit-item {
        padding: 20px;
    }
    .did-you-know-box {
        flex-direction: column; /* Stack icon and text */
        align-items: center;
        text-align: center;
    }
    .did-you-know-box::before {
        margin-bottom: 10px;
    }
    .compliance-cta h2 {
        font-size: 1.8em;
    }
    .compliance-cta p {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .compliance-hero h1 {
        font-size: 1.8rem;
    }
    .compliance-hero .tagline {
        font-size: 0.9rem;
    }
    .compliance-cta h2 {
        font-size: 1.5em;
    }
    .compliance-cta p {
        font-size: 0.95em;
    }
    .compliance-cta .large-button {
        padding: 12px 30px;
        font-size: 1em;
    }
}