/* Universal Left and Right Margin Rule */
.section-wrapper {
    margin-left: 17%;
    margin-right: 17%;
}

@media (max-width: 768px) {
    .section-wrapper {
        margin-left: 2%;
        margin-right: 2%;
    }
}

.banner {
    background-image: url('/img/ecsbanner.png');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    justify-content: left;
    padding: 20px;
}

.banner-title {
    color: #fff;
    font-size: clamp(2rem, 6vw, 140px);
    font-weight: 400;
    font-family: 'industry';
    text-transform: uppercase;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.7);
    margin-top: 20px;
    margin-left: 17%;
    margin-right: 17%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner {
        height: auto;
        padding: 8px;
    }

    .banner-title {
        font-size: clamp(1.5rem, 5vw, 3rem);
        margin-left: 2%; /* Adjusted margin for smaller screens */
        margin-right: 2%;
    }
}


/* Feature Navigation Section */
.feature-navigation {
    height: auto;
    background-color: #000; /* Black background */
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.feature-item {
    width: 120px;
    padding: 20px; /* Consistent padding */
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center; /* Center align child items */
    height: 180px; /* Fixed height to ensure uniformity */
    margin-left: 0; /* Default margin for all other items */
    text-align: center; /* Center text alignment */
}

.feature-item:first-child {
    margin-left: 13%; /* Margin for the first feature item */
}

.feature-item:last-child {
    margin-right: 13%; /* Margin for the last feature item */
}


/* Feature Icon Styling */
.feature-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

/* Feature Title Styling */
.feature-title p {
    font-size: 16px;
    font-weight: bolder;
    font-family: 'industry';
    color: #fff; /* White text */
    margin: 0;
    text-transform: uppercase;
}

/* Link Styling */
.feature-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Read More Button Styling */
.read-more-button {
    background-color: #d32f2f; /* Red background */
    color: #fff; /* White text */
    font-size: 12px; /* Adjust font size for better visibility */
    font-weight: bolder;
    text-transform: uppercase;
    font-family: unset;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: auto; /* Push the button to the bottom */
    align-self: center; /* Center align the button horizontally */
}

.read-more-button:hover {
    background-color: #b12727; /* Darker red on hover */
}

@media (max-width: 768px) {
    .feature-navigation {
        display: flex;
        flex-wrap: wrap; /* Allow items to wrap into multiple rows */
        justify-content: center; /* Center items horizontally */
        align-items: stretch; /* Stretch items to match row height */
    }

    .feature-item {
        flex: 0 1 calc(50% - 20px); /* Ensure two items per row with spacing */
        margin: 10px; /* Consistent spacing between items */
        box-sizing: border-box; /* Include padding/margin in width calculations */
    }

    /* Remove extra margins for the first and last items */
    .feature-item:first-child,
    .feature-item:last-child {
        margin-left: 0; /* Reset margin-left for smaller screens */
        margin-right: 0; /* Reset margin-right for smaller screens */
    }

    /* Center the last feature-item in the third row */
    .feature-item:nth-child(5) {
        flex: 0 1 100%; /* Take up the full width */
        display: flex;
        justify-content: center; /* Center align the item */
    }

    /* Adjust Feature Icon Styling for smaller screens */
    .feature-icon {
        width: 40px; /* Smaller icon size */
        height: 40px;
        margin-bottom: 10px;
    }
}




.section-divider {
    border: none; /* Remove default border */
    height: 2px; /* Thickness of the line */
    background-color: #333; /* Dark color for the line */
    width: 80%; /* Adjust width */
    margin-left: 20px;
    margin-right: 10px; /* Centers the line */
}

.section-divider-container {
    display: flex;
    align-items: center; /* Aligns the line and icon vertically */
    gap: 2px; /* Adds a small space between the line and the icon */
    margin: 0; /* Adjusts spacing above and below the section */
}


.icon {
    width: 60px !important; /* Forces the icon to be 18px wide */
    height: 60px !important; /* Forces the icon to be 18px high */
    object-fit: contain; /* Ensures the icon maintains its aspect ratio */
    max-width: 60px; /* Ensures the icon cannot grow beyond 18px */
    max-height: 60px; /* Ensures the icon cannot grow beyond 18px */
}


.faq-section .faq-heading,
.customer-support-section .customer-support-heading {
    font-size: 40px;
    font-weight: 1000;
    font-family: 'industry';
    color: #000;
    text-transform: uppercase;
    margin-top: 50px;
}

.customer-support-header-hr {
    border: none;
    height: 7px;
    background-color: #888888;
    width: 90%;
    margin-right: 10px;
    margin-bottom: 20px;
}

.faq-header,
.customer-support-header,
.lmd-support-header {
    font-weight: 1000;
    font-family: 'industry';
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    text-align: left;
}

.faq-header {
    font-size: 20px;
    color: #000;
}

.faq-header:hover p {
    text-decoration: underline;
}

.customer-support-header,
.general-support-button,
.order-status-help-button,
.lrp-redemption-help-button,
.lmd-support-header {
    color: #fff;
    background-color: #d32f2f;
    font-size: 15px;
}

.general-support-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-left: 50px;
    padding-right: 50px;
}

.general-support-buttons:first-child {
    margin-top: 20px;
}

.general-support-buttons:last-child {
    margin-bottom: 40px;
}

.general-support-button,
.order-status-help-button,
.lrp-redemption-help-button {
    text-align: center;
    font-weight: 1000;
    font-family: 'industry';
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none !important;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-top: 20px;
}

.cs-header-text,
.faq-header-text {
    width: 90%;
}

.customer-support-header .header-button,
.lmd-support-header .header-button {
    padding: 5px;
    font-weight: 1000;
    font-family: 'industry';
    font-size: xx-large;
    vertical-align: middle;
    width: 10%;
    text-align: right;
    background-color: #d32f2f;
    border: none;
    color: #fff;
    cursor: pointer;
}

.customer-support-header:hover,
.customer-support-header:hover .header-button,
.general-support-button:hover,
.lmd-support-header:hover,
.lmd-support-header:hover .header-button {
    background-color: #b12727;
}

.faq-header .header-button {
    padding: 5px;
    font-weight: 1000;
    font-family: 'industry';
    font-size: xx-large;
    vertical-align: middle;
    width: 10%;
    text-align: right;
    background-color: #fff;
    border: none;
    color: #000;
    cursor: pointer;
}

.customer-support-header p,
.lmd-support-header p {
    padding: 15px;
}

.faq-inner,
.customer-support-inner,
.lmd-support-inner {
    display: none;
    font-size: 15px;
    font-family: 'industry';
    color: #000;
}

.faq-inner a:link {
    text-decoration: underline;
}

.customer-support-inner,
.lmd-support-inner {
    background-color: #ebebeb;
    width: 100%;
    margin-top: 0px;

    a:link,
    a:visited {
        text-decoration: underline;
        color: #439aed;
    }
}

.faq-inner.opened,
.customer-support-inner.opened,
.lmd-support-inner.opened {
    display: inline-block;
}

.customer-support-inner-contents,
.returns-inner-contents,
.lmd-inner-contents {
    padding: 15px;

    h1 {
        font-size: 1.5rem;
    }
}

.faq-button,
.customer-support-button,
.lmd-support-button,
.lmd-order-form-package-delivered {
    margin-bottom: 25px;
}

.sales-contact-info,
.billing-contact-info {
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    grid-template-rows: repeat(2, 2fr);
    column-gap: 20px;
}

.wholesale-contact-info {
    display: grid;
    grid-template-columns: repeat(1, 2fr);
    grid-template-rows: repeat(1, 2fr);
    column-gap: 20px;
}

.general-support-buttons a,
.general-support-buttons a:link,
.general-support-buttons a:visited,
.lmd-delivered-form a,
.lmd-delivered-form a:link,
.lmd-delivered-form a:visited {
    text-decoration: none;
    color: #fff;
    padding: 10px;
}

.lmd-delivered-form a {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.order-status-lookup-form,
.lrp-redemption-inner-contents,
.returns-lookup-form,
.lmd-lookup-form,
.unreceived-item-form,
.lmd-delivered-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    
    label {
        color: #000;
    }

    div {
        width: 100%;
        display: flex;
        gap: 10px;
        font-size: x-large;
        justify-content: center;

        label {
            width: 25rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        input,
        select {
            height: 2.5rem;
            width: 50rem;
            font-size: x-large;
            text-transform: uppercase;
            font-family: 'industry';
            font-weight: bold;
            padding: 0;
            width: 75%;
        }

        select option:checked[disabled][selected] {
            color: gray;
        }
    }

    .order-status-form-email,
    .lrp-redemption-form-email,
    .order-status-form-order-number,
    .lrp-redemption-form-order-number,
    .lrp-redemption-form-password,
    .returns-form-order-number,
    .returns-form-email,
    .lmd-form-order-number,
    .lmd-form-email {
        width: 75%;
    }

    #lrp-redemption-form-password-input {
        text-transform: none !important;
    }
}

[hidden] {
    display: none !important;
}

.order-status-lookup-form,
.lrp-redemption-inner-contents,
.returns-lookup-form,
.lmd-lookup-form,
.lmd-order-form {
    .order-status-button,
    .lrp-redemption-button,
    .returns-button,
    .lmd-button {
        cursor: pointer;
        background-color: #d32f2f;
        color: #fff;
        text-transform: uppercase;
        font-family: 'industry';
        font-weight: bold;
        font-size: large;
        border: none;
        height: 2.5rem;
        width: 300px;
    }

    .order-status-button:hover,
    .lrp-redemption-button:hover,
    .returns-button:hover,
    .lmd-button:hover {
        background-color: #b12727;
    }
}


.order-status-error,
.lrp-redemption-error,
.returns-error,
.lmd-error,
.lmd-unreceived-error {
    display: flex;
    justify-content: center;
    margin: 15px 0 -35px 0;
    background-color: #ffcec6;
    text-transform: none;
    font-size: 15px !important;

    p {
        margin: 15px;
    }
}

.returns-error,
.lmd-error,
.lmd-unreceived-error {
    margin: 15px 0 0 0;
}

.lrp-redemption-error {
    text-transform: none;
    font-size: 15px !important;
}

.order-status-error.hidden,
.order-status-order.hidden,
.order-status-cancel.hidden,
.lrp-redemption-error.hidden,
.returns-error.hidden {
    display: none;
}

.order-status-order,
.order-status-cancel {
    display: flex;
}

.order-status-cancel {
    flex-direction: column;
    align-items: center;
    font-weight: bold;
    font-size: large;
}

.order-status-inner-contents,
.lrp-redemption-inner-contents,
.lmd-inner-contents,
.damaged-inner-contents,
.missing-inner-contents,
.stolen-inner-contents,
.unreceived-inner-contents {
    padding: 15px 30px 15px 30px;
}

.left-align {
    text-align: left;
}

.order-status-help-button,
.lrp-redemption-help-button {
    display: inline-block;
    margin-top: 50px;
}

a.order-status-help-button,
a.order-status-help-button:link,
a.lrp-redemption-help-button,
a.lrp-redemption-help-button:link {
    text-decoration: none !important;
    color: #fff !important;
}

.order-status-help-button:hover {
    background-color: #b12727;
}

.lmd-unreceived-message {
    text-transform: none;
    margin-top: 20px;
    flex-direction: column;
}

@media (max-width: 550px) {
    .order-status-lookup-form,
    .lrp-redemption-inner-contents,
    .returns-inner-contents,
    .lmd-inner-contents {
        .order-status-form-order-number,
        .order-status-form-email,
        .order-status-form-button,
        .lrp-redemption-form-order-number,
        .lrp-redemption-form-email,
        .lrp-redemption-form-button,
        .lrp-redemption-form-password,
        .returns-form-order-number,
        .returns-form-email,
        .returns-form-button,
        .lmd-form-order-number,
        .lmd-form-email,
        .lmd-form-button,
        .mobile-shrink-input {
            width: 100%;
            font-size: large;

            input, select {
                width: 12rem;
            }
        }

        .mobile-shrink-input {
            display: grid;
            gap: 3px;
            column-gap: 5px;

            label {
                grid-column: 1;
                width: 7rem;
            }

            input, select {
                grid-column: 2;
            }
        }

        .radio-div {
            text-align: unset !important;
        }

        .lmd-order-form .lmd-button {
            width: 150px;
        }
    }
}

.icon-question-sign {
    display: inline-block;
    background-position: -96px -96px;
    width: 14px !important;
    height: 14px !important;
    vertical-align: text-bottom;
}

.rm-btn-red {
    color: #E82C2A;
}

#order-table table {
    td, tr {
        background-color: #fff;
    }
}

@media only screen and (max-width: 1260px) {
    #order-table .responsive td {
        display: block;
        float: right;
        width: 50%;
        position: relative;
    }

    #order-table thead {
        display: none;
    }

    #order-table .responsive td:before {
        content: attr(data-heading) ':';
        font-size: .9em;
        position: absolute;
        left: -100%;
        text-align: right;
        width: 100%;
        top: 0;
        border-bottom: 1px solid #ddd;
        height: 100%;
        padding: .3em;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
}

#order-status-order-cancel-modal {
    font-weight: bold;
    font-family: 'industry';
    color: #000;
    text-transform: uppercase;
    border-color: #d32f2f;
    background-color: #ebebeb;

    h2,
    select {
        margin-bottom: 15px;
        font-weight: bold;
    }

    button {
        cursor: pointer;
        background-color: #d32f2f;
        color: #fff;
        text-transform: uppercase;
        font-family: 'industry';
        font-weight: bold;
        font-size: large;
        border: none;
        height: 2.5rem;
        width: 10rem;
    }

    button:disabled {
        background-color: #666;
        cursor: auto;
    }

    #order-status-order-cancel-error-box {
        background-color: #ffcec6;
        margin-bottom: 5px;

        p {
            padding: 5px;
        }
    }
}

.lmd-order-form {
    text-align: center;
    margin-top: 30px;

    h1 {
        font-weight: bold !important;
        margin-bottom: 15px;
    }

    .package-delivered-label,
    .package-damaged-label,
    .package-missing-label,
    .damaged-resolution-label,
    .missing-resolution-label {
        font-size: 1.5rem;
        color: #000;
        font-weight: normal;
    }
    
    .two-radio-div {
        display: grid;
        column-gap: 40px;

        .first-radio-div {
            grid-column: 1;
            text-align: right;
        }

        .second-radio-div {
            grid-column: 2;
            text-align: left;
        }
    }

    input[type='radio'],
    input[type='checkbox'] {
        box-sizing: border-box;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        background: white;
        outline: 2px solid black;
        border: 3px solid white;
        width: 16px;
        height: 16px;
        cursor: pointer;
    }

    input[type='radio']:checked,
    input[type='checkbox']:checked {
        background: #d32f2f;
    }

    #damaged-radio-div,
    #missing-radio-div {
        margin-bottom: 20px;
    }

    .resolution-header {
        margin-top: 50px;
    }
}

/* Flexbox layout for the information section */
/* Main container for the information section */
.information-section {
    padding: 20px;
    margin-top: 20px;
}

/* Top Heading Styling for INFORMATION */
.information-section .topHeading {
    background-color: #d32f2f; /* Red background */
    color: #fff; /* White text */
    font-size: 27px;
    font-weight: 825;
    font-family: 'industry';
    text-transform: uppercase;
    text-align: left; /* Align heading to the left */
    display: inline-block;
    margin-bottom: 10px; /* Space below heading */
    padding: 5px 10px;
}

/* Flexbox layout for the information columns */
.information {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* Styling for the ECS Support Center (left column) */
.info-column.left {
    width: 48%;
    color: #333;
}

/* Styling for the Curbside Pickup (right column) */
.info-column.right {
    width: 48%;
    text-align: left; /* Ensures text aligns left within the right column */
}

/* Styling for ECS Support Center heading */
.info-column.left h3 {
    font-size: 24px;
    font-weight: 700;
    font-family: 'industry';
    color: #000; /* Black color for "ECS Support Center Hours of Operation" */
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Styling for Curbside Pickup heading */
.curbside-heading {
    font-size: 24px;
    font-weight: 700;
    font-family: 'industry';
    color: #000; /* Black color for "CURBSIDE PICKUP HOURS OF OPERATION" */
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Styling for "CURBSIDE PICKUP HOURS OF OPERATION" text */
.curbside-title {
    color: #000;
}

/* Styling for "MONDAY - FRIDAY" text */
.monday-friday {
    color: #d32f2f; /* Red color for "MONDAY - FRIDAY" */
}

/* Basic text styling for hours */
.info-column p {
    color: #666;
    font-size: 18px;
    font-family: 'industry';
    margin-bottom: 20px;
}

/* Styling for strong elements in both columns */
.info-column .hours strong {
    color: #333;
}

/* Red headings for specific days */
.saturdays, .sundays {
    color: #d32f2f;/* Red color for Saturdays and Sundays headings */
    text-transform: uppercase;
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .information {
        flex-direction: column;
        margin-left: opx;
        margin-right: opx;
    }
    .info-column {
        width: 100% !important;
    }
}


/* Styling for the Questions section */
.questions-section {
    padding: 20px;
    margin-top: 5px;
}

/* Heading Styling */
.questions-heading {
    font-size: 27px;
    font-weight: 825;
    font-family: 'industry';
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: left;
}

/* Custom color for "HAVE QUESTIONS ABOUT" */
.questions-heading .black-text {
    color: #000;

}

/* Custom color for "YOUR ORDER?" */
.questions-heading .red-text {
    color: #d32f2f; /* Red color */
}

/* Flexbox container for paragraphs */
.questions-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

/* Paragraph blocks */
.order-ques {
    width: 48%; /* Each paragraph takes up half of the available space */
}

/* Styling for text inside paragraphs */
.order-ques p {
    font-size: 18px;
    font-family: 'industry';
    color: #333;
    line-height: 1.5;
}


/* Link styling */
.order-ques a {
    color: #d32f2f; /* Red color for links */
    text-decoration: none;
}

.highlight-red {
    color: #b12727; /* Blue color */  
}

.order-ques a:hover {
    text-decoration: underline; /* Adds underline on hover */
}

/* Horizontal line styling */
.questions-section hr {
    border: none;
    border-top: 1px solid #ddd;
    margin-top: 20px;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .questions-content {
        flex-direction: column;
    }
    .order-ques {
        width: 100%; /* Full width for each paragraph on smaller screens */
    }
}


/* Main Section Styling */
.pickup-section {
    padding: 20px;
    margin-top: 5px;
}

/* Main Heading Styling */
.pickup-heading {
    text-align: left;
    margin-bottom: 20px;
    font-size: 27px;
    font-weight: 825;
    font-family: 'industry';
}

.pickup-heading .black-text {
    color: #000; /* Black color for "CURBSIDE PICKUP" */
}

.pickup-heading .red-text {
    color: #d32f2f; /* Red color for "PROCESS" */
}

/* Flex container for introductory paragraphs */
.pickup-intro {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

/* Left and Right Paragraphs */
.pickup-left, .pickup-right {
    width: 48%;
    font-size: 18px;
    font-family: 'industry';
    color: #333;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Subheading for Steps */
.steps-heading {
    font-size: 24px;
    font-weight: 700;
    font-family: 'industry';
    color: #000;
    text-transform: uppercase;
    text-align: left;
    margin: 20px 0;
}

/* Steps Container */
.steps-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Individual Step Box */
.step {
    width: 48%; /* Two steps per row */
    margin-bottom: 20px;
}

/* Red Background for Step Headings */
.step-heading {
    background-color: #d32f2f; /* Red background */
    color: #fff; /* White text */
    font-size: 21px;
    font-weight: 575;
    font-family: 'industry';
    padding: 5px 10px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-block;
}

/* Step Paragraph Styling */
.step p {
    font-size: 18px;
    font-family: 'industry';
    color: #333;
    line-height: 1.5;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .pickup-intro {
        flex-direction: column;
    }
    .pickup-left, .pickup-right, .step {
        width: 100%;
    }
}


/* Wholesale Inquiries Section */
.inquiries-section {
    padding: 20px;
    margin-top: 0px;
    text-align: left;
}

/* Section Heading Styling */
.inquiries-heading {
    font-size: 27px;
    font-weight: 825;
    font-family: 'industry';
    text-align: left;
    margin-bottom: 20px;
}

.inquiries-heading .black-text {
    color: #000; /* Black color for "WHOLESALE" */
}

.inquiries-heading .red-text {
    color: #d32f2f; /* Red color for "INQUIRIES" */
}

/* Flex container for paragraphs */
.inquiries-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

/* Left Paragraph Styling */
.inquiries-left, .inquiries-right {
    width: 48%; /* Each paragraph takes up half of the available space */
    font-size: 18px;
    font-family: 'industry';
    color: #333;
    line-height: 1.6;
}


/* Centered Button Styling */
.button-container {
    text-align: center;
    margin-top: 20px;
}

.inquiries-button {
    background-color: #d32f2f; /* Red background */
    color: #fff; /* White text */
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 24px;
    font-family: unset;
    border-radius: 4px;
    margin-bottom: 20px;
}

.inquiries-button:hover {
    background-color: #b12727; /* Darker red on hover */
}

/* Horizontal Line Styling */
.inquiries-section hr {
    border: none;
    border-top: 1px solid #ddd;
    margin-top: 20px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .inquiries-content {
        flex-direction: column;
    }
    .inquiries-left, .inquiries-right {
        width: 100%;
    }
}


/* CTA Section Styling */
.cta-section {
    background-color: #000; /* Black background */
    color: #fff; /* White text for heading */
    padding: 20px;
    text-align: center;
    margin-top: 50px;
}

/* Main Heading Styling */
.cta-heading {
    font-size: 27px;
    font-weight: bolder;
    font-family: 'industry';
    margin-bottom: 20px;
    color: #fff; /* White text for heading */
}

/* Button Container Styling */
.cta-buttons {
    display: flex;
    gap: 15px;
}

/* Button Styling */
.cta-button {
    background-color: #d32f2f; /* Red background */
    color: #fff !important; /* White text */
    font-size: 24px;
    padding: 15px 0;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bolder;
    font-family: 'industry';
    border-radius: 4px;
    flex: 1; /* Make buttons take equal width */
    text-align: center;
    text-decoration: none !important;;
}

.cta-button:first-child {
    margin-left: 0%;
}

.cta-button:last-child {
    margin-right: 0%;
}

.cta-button:hover {
    background-color: #b12727; /* Darker red on hover */
}

@media (max-width: 768px) {
    /* Button Container Styling */
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-button:first-child {
        margin-left: 0%;
    }
    
    .cta-button:last-child {
        margin-right: 0%;
    }
}

.call-wrapper {
	position: relative;
	text-align: center;
}

.call-wrapper .call-tooltip {
	background: #d32f2f;
	cursor: pointer;
	bottom: 100%;
	color: #fff;
	display: none;
	left: -20px;
	margin-bottom: 15px;
	opacity: 0;
	padding: 20px;
	position: absolute;
	width: 100%;
	-webkit-transform: translateY(10px);
	  -moz-transform: translateY(10px);
	  -ms-transform: translateY(10px);
	   -o-transform: translateY(10px);
		transform: translateY(10px);
	-webkit-transition: all .25s ease-out;
	  -moz-transition: all .25s ease-out;
	  -ms-transition: all .25s ease-out;
	   -o-transition: all .25s ease-out;
		transition: all .25s ease-out;
	-webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
	  -moz-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
	  -ms-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
	   -o-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
		box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
}

/* This bridges the gap so you can mouse into the tooltip without it disappearing */
.call-wrapper .call-tooltip:before {
	bottom: -20px;
	content: " ";
	display: block;
	height: 20px;
	left: 0;
	position: absolute;
	width: 100%;
}

.call-wrapper .call-tooltip:after {
	border-left: solid transparent 10px;
	border-right: solid transparent 10px;
	border-top: solid #b12727 10px;
	bottom: -10px;
	content: " ";
	height: 0;
	left: 50%;
	margin-left: -13px;
	position: absolute;
	width: 0;
}

.call-wrapper:hover .call-tooltip {
    display: block;
	opacity: 1;
	-webkit-transform: translateY(0px);
	  -moz-transform: translateY(0px);
	  -ms-transform: translateY(0px);
	   -o-transform: translateY(0px);
		transform: translateY(0px);
}

.call-wrapper:hover .cta-button {
	background-color: #b12727;
}

/* IE can just show/hide with no transition */
.lte8 .call-wrapper .call-tooltip {
	display: none;
}

.lte8 .call-wrapper:hover .call-tooltip {
	display: block;
}

.image-container {
    display: grid;
    grid-template-columns: repeat(4, minmax(150px, 1fr));
    /* gap: 10px; */
    /* max-width: 500px; */
    max-width: 1200px;
    margin: 0 auto;
}
.pickup-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

@media (max-width: 768px) {
    .image-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        max-width: 500px;
    }
}