/* ----- Page Specific tweaks ----- */

:root {
    --background-color: #111111;
    --accent-color: #ad0000;
    --text-color: #ebebeb;
}

/* ==========================================================================
   Global Layout Helpers
   ========================================================================== */
:root {
    /* Ensuring these match your existing header variables */
    --bg-dark: #2b2b2b;
    --text-light: #f4f4f4;
    --text-dark: #1a1a1a;
}

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

/* ==========================================================================
   1. Hero Video Section
   ========================================================================== */
.hero-section {
    position: relative;
    height: 70vh; /* Takes up 70% of the screen height */
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-align: center;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55); /* Darkens video so text is readable */
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff; /* Explicit white header text */
}

.hero-content p {
    font-size: 1.25rem;
    color: #cccccc; /* Slightly cleaner light grey readability over video */
}

.hero-about-btn {
    display: inline-block;
    margin-top: 20px;
    background: transparent;       /* Explicitly keeps any background boxes away */
    color: var(--accent-color);    /* Pulls your red accent color automatically */
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 0;
    transition: color 0.2s ease, transform 0.2s ease;
}

/* Subtle interactive slide and brightness pop when hovered */
.hero-about-btn:hover {
    color: #ff3333;               /* Brighter red on hover so the user knows it's clickable */
    transform: translateX(4px);   /* Gently nudges the arrow forward slightly */
}


/* ==========================================================================
   2. Flat Text Brief Section
   ========================================================================== */
.flat-text-section {
    padding: 80px 0;
    background-color: #1a1a1a; /* Swapped from #f9f9f9 to dark mode background */
    color: #ffffff;            /* Changed text from var(--text-dark) to bright white */
}

.flat-text-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.flat-text-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #aaaaaa; /* Softened paragraph text from dark grey to light grey */
}

/* ==========================================================================
   3. Dual Card Navigation Section
   ========================================================================== */
.cards-section {
    padding: 80px 0;
    background-color: #151515; /* Sits slightly darker than the page background for depth */
}

.card-grid {
    display: flex;
    gap: 40px;
}

.nav-card {
    flex: 1;
    background: #242424; /* Swapped from crisp white to deep charcoal (matches pricing table) */
    padding: 40px;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); /* Darkened shadow signature */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.nav-card h3 {
    font-size: 1.75rem;
    margin-bottom: 15px;
    color: #ffffff; /* Material names / titles pop in white */
}

.nav-card p {
    font-size: 1rem;
    line-height: 1.5;
    color: #aaaaaa; /* Readable secondary text spacing */
    margin-bottom: 25px;
    flex-grow: 1;
}

.card-btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--text-color);
    padding: 12px 24px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.card-btn:hover {
    background-color: var(--accent-color-highlight);
}

/* ==========================================================================
   4. Image & Text Split Feature Section
   ========================================================================== */
.feature-section {
    padding: 80px 0;
    background-color: #1a1a1a; /* Swapped from #ffffff to match dark canvas */
}

.feature-grid {
    display: flex;
    align-items: center;
    gap: 50px;
}

.feature-image-wrapper,
.feature-text-wrapper {
    flex: 1;
}

.feature-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

.feature-text-wrapper h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #ffffff; /* Inverted header text */
}

.feature-text-wrapper p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #aaaaaa; /* Lightened descriptive paragraphs */
    margin-bottom: 30px;
}

/* Inverting the dark layout button into a high-visibility light contrast design */
.feature-btn {
    display: inline-block;
    background-color:  #aaaaaa; /* Swapped from #1a1a1a to pop off dark background */
    color: #1a1a1a;            /* Text becomes dark charcoal inside white button */
    padding: 12px 24px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.feature-btn:hover {
    background-color: #e0e0e0; /* Clean light gray hover shift */
    color: #1a1a1a;
}

/* ==========================================================================
   Footer Layout & Columns
   ========================================================================== */
.main-footer {
    background-color: var(--bg-dark);
    color: #a5a5a5;
    padding: 40px 0;
    border-top: 1px solid #3d3d3d;
    font-family: sans-serif;
    font-size: 0.9rem;
    position: relative; /* Keeps the logo anchored inside the footer */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Base style for all 3 columns */
.footer-section {
    display: flex;
    flex-direction: column;
}

/* Explicitly target the right side where your text resides */
.footer-container .footer-section:last-child {
    align-items: flex-end;
    min-width: 22em;
    margin-top: 1em; /* Reset this so Flexbox handles the centering cleanly */
}

/* Left Column Styling */
.footer-left {
    width: 12em;
    height: 50px;
    position: relative;
}

/* Force the copyright text to stay on one line */
.footer-left .copyright,
.footer-container .footer-section:last-child .copyright {
    margin: 0;
    font-weight: 500;
    color: #f4f4f4;

    /* Prevents line breaks entirely */
    white-space: nowrap;
}

/* Force the designer credits text to stay on one line */
.footer-left .credits,
.footer-container .footer-section:last-child .credits {
    margin: 0;
    font-size: 0.8rem;
    color: #777777;

    /* Prevents line breaks entirely */
    white-space: nowrap;
}

/* Center Column Styling (Contact Info) */
.footer-center {
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px; /* Spacing between numbers and email */
}

.footer-link {
    color: #a5a5a5;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--accent-color); /* Glows with your brand accent color on hover */
}

.email-link {
    margin-top: 2px; /* Slight extra gap to visually separate phone from email */
}

/* Right Column Styling (Logo) */
.footer-right {
    align-items: flex-end;
}

.FooterLogoWrapper {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.FooterLogo {
    /* Scale this width up or down as much as you want!
       The footer thickness will remain completely unaffected. */
    width: 15em;
    height: auto;
    display: block;
}

/* ==========================================================================
   Responsive Mobile View for Footer
   ========================================================================== */
@media (max-width: 768px) {
    /* ... keep your existing mobile nav / header styles here ... */

    /* 1. Stack the containers vertically and center everything */
    .footer-container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0; /* Clears all default spacing between the blocks */
        text-align: center;
        padding: 25px 0;
    }

    /* 2. Completely collapse the desktop height constraints on the logo section */
    .footer-left {
        width: auto;
        height: auto;
        position: static;
        display: flex;
        justify-content: center;
        margin-bottom: 0; /* Ensures absolutely zero space beneath the logo box */
    }

    /* 3. Ensure the image wrapper takes up zero extra space */
    .FooterLogoWrapper {
        position: static;
        transform: none;
        line-height: 0;     /* Prevents default text-line padding under images */
    }

    /* 4. Keep the image size crisp and clear */
    .FooterLogo {
        width: 15em;
        height: auto;
    }

    /* 4. Reset the copyright text section so it returns to the normal stack */
    .footer-container .footer-section:last-child {
        position: static;      /* Strips absolute behavior */
        transform: none;       /* Removes the translateY centering shift */
        min-width: 100%;       /* Allows it to span smoothly across the mobile width */
        align-items: center;   /* Centers the text lines horizontally */
        margin: 0;
    }

    /* 1. Tighten the footer padding to bring the top border down */
    .main-footer {
        /* 12px padding on top to pull the border down close to the logo,
           25px padding on the bottom to keep the copyright text perfectly balanced */
        padding: 0 0 25px 0;
    }

    /* 2. Strip standard browser text padding */
    .footer-container p,
    .footer-container h2,
    .footer-container h3,
    .contact-info a {
        margin: 0;
    }

    /* 4. Isolating the middle block to space out the bottom half */
    .footer-center {
        /* Logo sits directly on top of this block, then this pushes the
           copyright text down exactly 12px */
        margin-bottom: 12px;
    }

    /* Tighten spacing between stacked phone number and email if needed */
    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
}

/* ==========================================================================
   Mobile Responsive Adjustments
   ========================================================================== */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    /* Stack the dual cards vertically on phone screens */
    .card-grid {
        flex-direction: column;
        gap: 25px;
    }

    /* Stack the image and text layout vertically on phone screens */
    .feature-grid {
        flex-direction: column;
        gap: 30px;
    }

    .feature-text-wrapper {
        text-align: center;
    }
}


/* ==========================================================================
   Pricing Page Layout
   ========================================================================== */
.pricing-page {
    padding: 60px 0;
    /* Matching the page container to the new dark body background */
    background-color: #1a1a1a;
    min-height: 60vh;
}

.pricing-container {
    max-width: 900px; /* Kept slightly narrower than the main site for clean text lines */
    margin: 0 auto;
    padding: 0 20px;
}

.pricing-hero {
    text-align: center;
    margin-bottom: 40px;

}

.pricing-hero h1 {
    font-size: 2.5rem;
    color: #ffffff; /* Bright white for primary headers */
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-hero p {
    font-size: 1.1rem;
    color: #aaaaaa; /* Muted silver for descriptions */
}

/* Table Wrapper for Mobile Scrolling Safeguards */
.table-wrapper {
    width: 100%;
    overflow-x: auto;
    /* Swapping the pricing table card background from white to deep charcoal */
    background: #242424;
    border-radius: 6px;
    /* Softened the shadow so it blends cleanly with the dark backdrop */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
}

/* The Data Table */
/* The Data Table Styling */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-family: sans-serif;
}

/* Header Row (Stays identical since it matched your footer background variables) */
.pricing-table thead tr {
    background-color: var(--bg-dark);
    color: #ffffff;
}

.pricing-table th {
    padding: 16px 24px;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

/* Data Cells Dark Mode Adjustments */
.pricing-table td {
    padding: 20px 24px;
    /* Darkened border separators so they remain subtle */
    border-bottom: 1px solid #333333;
    vertical-align: middle;
}

/* Subtle descriptions underneath the item titles */
/* Text styles within table rows */
.pricing-table td strong {
    display: block;
    font-size: 1.1rem;
    color: #ffffff; /* Bright white for material names */
    margin-bottom: 4px;
}

.pricing-table td span {
    display: block;
    font-size: 0.85rem;
    color: #999999; /* Higher contrast silver for descriptions */
}

/* 1. Make the right-hand header text white */
.pricing-table th.price-column {
    color: #ffffff;  /* Forces "Price per Ton" text to be white */
}

/* Aligning prices neatly to the right */
/* 2. Update the price values row style */
.price-column {
    text-align: right;
    font-weight: bold;
    font-size: 1.2rem;
    color: #ffffff;        /* Forces the numerical prices ($28.50, etc.) to be white */
    white-space: nowrap;
}

/* Zebra striping rows for clean readability on dark themes */
.pricing-table tbody tr:nth-of-type(even) {
    /* Alternating row uses a slightly lighter charcoal shade */
    background-color: #2b2b2b;
}

/* Highlight the row slightly on hover */
.pricing-table tbody tr:hover {
    /* Gently highlights the row you are hovering over */
    background-color: #333333;
}

/* Bottom Call to Action Text Block */
.pricing-note {
    text-align: center;
    font-size: 1rem;
    color: #aaaaaa;
    margin-top: 20px;
}

.inline-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: bold;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.inline-link:hover {
    border-bottom-color: var(--accent-color);
}

/* ==========================================================================
   Mobile Responsive Tweak
   ========================================================================== */
@media (max-width: 600px) {
    .pricing-hero h1 {
        font-size: 2rem;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 14px 16px; /* Shrinks cell padding on phones to optimize real estate */
    }
}





/* ==========================================================================
   Contact Page Layout (Dark Mode Style)
   ========================================================================== */
.contact-page {
    padding: 60px 0;
    background-color: #1a1a1a;
    min-height: 70vh;
}

.contact-container {
    max-width: 750px; /* Slimmer focus wrapper for inputs */
    margin: 0 auto;
    padding: 0 20px;
}

.contact-hero {
    text-align: center;
    margin-bottom: 40px;
}

.contact-hero h1 {
    font-size: 2.5rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.contact-hero p {
    color: #aaaaaa;
}

/* Card Form Background Wrapper */
.form-wrapper {
    background: #242424;
    padding: 40px;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Structural Grid Rules */
.form-group {
    margin-bottom: 22px;
    display: flex;
    flex-direction: column;
}

.form-grid {
    display: flex;
    gap: 20px;
}

.form-grid .form-group {
    flex: 1;
}

/* Form Inputs, Select boxes, and Textareas */
.form-wrapper label {
    font-size: 0.9rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-wrapper input[type="text"],
.form-wrapper input[type="email"],
.form-wrapper input[type="tel"],
.form-wrapper textarea,
.form-wrapper select {
    background-color: #1a1a1a;
    border: 1px solid #444444;
    border-radius: 4px;
    padding: 12px 16px;
    color: #ffffff;
    font-size: 1rem;
    font-family: sans-serif;
    transition: border-color 0.2s ease;
}

.form-wrapper input:focus,
.form-wrapper textarea:focus,
.form-wrapper select:focus {
    outline: none;
    border-color: var(--accent-color); /* Glows with your core brand red on focus */
}

/* Styled File Inputs */
.form-wrapper input[type="file"] {
    color: #aaaaaa;
    padding: 8px 0;
}

/* Handling Visibility Transitions */
.conditional-fields {
    max-height: 500px;
    opacity: 1;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    margin-bottom: 10px;
}

.conditional-fields.hidden {
    max-height: 0;
    opacity: 0;
    margin-bottom: 0;
    pointer-events: none;
}

/* Main Submission Button */
.submit-btn {
    width: 100%;
    background-color: var(--accent-color);
    color: var(--text-color);
    border: none;
    padding: 14px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #900000; /* Subtle deeper red hover transition */
}

/* Responsive optimization on mobile */
@media (max-width: 600px) {
    .form-grid {
        flex-direction: column;
        gap: 0;
    }
    .form-wrapper {
        padding: 25px 20px;
    }
}




/* ==========================================================================
   Careers / Join Us Page Styling
   ========================================================================== */
.careers-page {
    padding: 60px 0;
    background-color: #1a1a1a;
    min-height: 70vh;
}

.careers-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.careers-hero {
    text-align: center;
    margin-bottom: 40px;
}

.careers-hero h1 {
    font-size: 2.5rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.careers-hero p {
    color: #aaaaaa;
}

/* Table Custom Interactive Rows */
.jobs-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-family: sans-serif;
}

.jobs-table thead tr {
    background-color: var(--bg-dark);
    color: #ffffff;
}

.jobs-table th,
.jobs-table td {
    padding: 18px 24px;
}

.job-header-row {
    cursor: pointer;
    background-color: #242424;
    border-bottom: 1px solid #333333;
    transition: background-color 0.2s ease;
}

.job-header-row:hover {
    background-color: #2d2d2d; /* Slight lighting glow on row hover */
}

.job-header-row td strong {
    color: #ffffff;
    font-size: 1.1rem;
}

.job-header-row td {
    color: #e0e0e0;
}

/* Arrow indicator configuration */
.action-column {
    text-align: right;
    width: 60px;
}

.toggle-arrow {
    display: inline-block;
    color: var(--accent-color);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

/* Rotates arrow upward when active class is triggered */
.job-header-row.active .toggle-arrow {
    transform: rotate(180deg);
}

/* Accordion Hidden Details Drawer Row */
.job-details-row {
    background-color: #1d1d1d;
    border-bottom: 1px solid #333333;
}

.job-details-row.hidden {
    display: none; /* Keeps drawer tucked away natively */
}

/* Smooth expansion container inside the table cell */
.details-content {
    padding: 10px 24px 25px 24px;
    animation: slideDown 0.25s ease-out;
}

.details-content h4 {
    color: #ffffff;
    margin: 15px 0 8px 0;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.details-content p {
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

.details-content ul {
    margin: 5px 0 0 0;
    padding-left: 20px;
    color: #cccccc;
}

.details-content li {
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Animation sequence for reveal */
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Bottom Download Unit */
.download-section {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background-color: #242424;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.download-section h3 {
    font-size: 1.75rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.download-section p {
    color: #aaaaaa;
    margin-bottom: 25px;
}

/* Core application action layout button */
.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--accent-color);
    color: var(--text-color);
    padding: 14px 28px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    font-size: 1.1rem;
    transition: background-color 0.2s ease, transform 0.1s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.download-btn:hover {
    background-color: #900000;
}

.download-btn:active {
    transform: scale(0.98);
}

/* Responsive adjustment on mobile devices */
@media (max-width: 650px) {
    .jobs-table thead {
        display: none; /* Hide header text descriptors on narrow devices */
    }

    .jobs-table td {
        display: block;
        padding: 10px 20px;
        border: none;
    }

    .job-header-row {
        padding: 15px 0;
        border-bottom: 1px solid #333333;
    }

    .job-header-row td:first-child {
        padding-top: 15px;
    }

    .job-header-row td:nth-child(2),
    .job-header-row td:nth-child(3) {
        font-size: 0.9rem;
        color: #888888;
    }

    .action-column {
        text-align: left;
        padding-bottom: 15px;
    }
}




/* ==========================================================================
   Who We Are / About Page Layout
   ========================================================================== */
.about-page {
    padding: 60px 0;
    background-color: #1a1a1a;
    min-height: 70vh;
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-hero {
    text-align: center;
    margin-bottom: 60px;
}

.about-hero h1 {
    font-size: 2.5rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.about-hero p {
    color: #aaaaaa;
    font-size: 1.1rem;
}

/* 1. Our Story Split Layout */
.about-split-section {
    margin-bottom: 80px;
}

.about-split-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text-block,
.about-image-block {
    flex: 1;
}

.about-text-block h2 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about-text-block p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 20px;
}

/* Image Placeholder Box */
.about-image-placeholder {
    width: 100%;
    height: 350px;
    background-color: #242424;
    border-radius: 6px;
    border: 1px dashed #444444;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #666666;
    font-weight: bold;
}

/* 2. Core Pillars / Values Grid */
.values-section {
    margin-bottom: 80px;
}

.values-title {
    text-align: center;
    margin-bottom: 40px;
}

.values-title h2 {
    font-size: 2rem;
    color: #ffffff;
    text-transform: uppercase;
}

.values-grid {
    display: flex;
    gap: 30px;
}

.value-card {
    flex: 1;
    background-color: #242424;
    padding: 35px 25px;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.2s ease;
}

.value-card:hover {
    transform: translateY(-5px); /* Gentle float effect when inspecting cards */
}

.value-icon {
    font-size: 2rem;
    color: var(--accent-color); /* Employs your custom red accent color */
    margin-bottom: 15px;
}

.value-card h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.value-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #aaaaaa;
}

/* 3. Safety Full-Width Banner */
.safety-banner {
    background-color: #151515; /* Deeper contrast background */
    border-left: 4px solid var(--accent-color); /* Accent marker highlight bar */
    padding: 40px;
    border-radius: 0 6px 6px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.safety-content h2 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.safety-content p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #cccccc;
}

/* ==========================================================================
   Mobile Responsive Adjustments
   ========================================================================== */
@media (max-width: 768px) {
    .about-split-grid {
        flex-direction: column;
        gap: 30px;
    }

    .about-text-block {
        text-align: center;
    }

    .values-grid {
        flex-direction: column;
        gap: 25px;
    }

    .about-image-placeholder {
        height: 250px;
    }

    .safety-banner {
        padding: 30px 20px;
        text-align: center;
        border-left: none;
        border-top: 4px solid var(--accent-color);
        border-radius: 6px;
    }
}