/* General Styles */
body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff; /* Cleaner white background */
    color: #333333;
    line-height: 1.7;
    font-size: 16px;
}

.container {
    width: 90%;
    max-width: 1280px; /* Slightly wider for a more modern feel */
    margin: 0 auto;
    padding: 20px 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block; /* Remove extra space below images */
}

a {
    text-decoration: none;
    color: #0056A0; /* Swoosh Dark Blue from logo */
}

a:hover {
    color: #F38B00; /* Primary Orange from logo */
    text-decoration: none;
}

/* Header & Navigation */
header {
    background-color: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky; /* Keep header at top */
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#logo {
    max-height: 80px; /* Slightly larger logo */
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    margin-left: 25px; /* More spacing */
}

nav ul li a {
    font-weight: bold;
    color: #0056A0; 
    font-size: 0.95em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

nav ul li a.active,
nav ul li a:hover {
    color: #F38B00;
}

/* Main Content General */
main h1, main h2, main h3, main h4 {
    color: #003A6A; /* Deeper blue for headings */
}

main h2 {
    font-size: 2.2em;
    margin-bottom: 25px;
}

main h3 {
    font-size: 1.8em;
}

main h4 {
    font-size: 0.9em;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

/* Home Page: Hero Banner & Price Inquiry */
#hero-banner {
    position: relative;
    text-align: center;
    color: white;
    background-color: #003A6A; /* Fallback if image fails */
}

.hero-image {
    width: 100%;
    height: 550px; /* Increased height */
    object-fit: cover;
    opacity: 0.8; /* Slightly dim image to make text pop */
}

.price-inquiry-overlay {
    position: absolute;
    top: calc(50% + 70px); /* Increased offset to move it further down; adjust as needed */
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(40, 40, 40, 0.85);
    padding: 30px 35px;
    border-radius: 10px;
    width: 90%;
    max-width: 480px; /* Adjusted width for new form */
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.price-inquiry-overlay h3 {
    margin-top: 0;
    margin-bottom: 25px;
    color: #fff;
    font-size: 1.7em;
    font-weight: 600;
    border-bottom: 1px solid #F38B00;
    padding-bottom: 10px;
    text-align: left;
}

#price-inquiry-form .form-group {
    margin-bottom: 18px;
    text-align: left;
}

#price-inquiry-form label {
    display: block;
    color: #F38B00; /* Orange label */
    font-weight: bold;
    margin-bottom: 6px;
    font-size: 0.9em;
}

#price-inquiry-form input[type="text"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #555;
    background-color: #f0f0f0;
    color: #333;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 1em;
}

#price-inquiry-form input[type="text"]::placeholder {
    color: #777;
}

#price-inquiry-form button {
    background-color: #F38B00;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    width: 100%;
    transition: background-color 0.3s ease;
}

#price-inquiry-form button:hover {
    background-color: #d97700; /* Darker orange on hover */
}

/* Home Page: Text Section (Who We Empower) */
.text-section {
    padding: 60px 0;
    text-align: center;
    background-color: #f9f9f9; /* Light grey background for separation */
}

.text-section h2 {
    color: #003A6A;
}

.text-section p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1em;
    color: #555;
}

/* Home Page: Content Rich Section (Industry Expertise) */
.content-rich-section {
    padding: 60px 0;
    display: flex;
    gap: 40px;
    align-items: center;
}

.expertise-image {
    flex: 1 1 50%;
    position: relative;
    color: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.expertise-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
}

.image-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 58, 106, 0.9) 0%, rgba(0, 58, 106, 0.7) 60%, rgba(0, 58, 106, 0) 100%);
    padding: 30px;
    box-sizing: border-box;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.image-overlay-text h3 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 2em;
}

.image-overlay-text p {
    font-size: 1em;
    margin-bottom: 20px;
    line-height: 1.5;
    max-width: 90%;
}

.btn-contact-us {
    background-color: #F38B00;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9em;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.btn-contact-us:hover {
    background-color: #d97700;
    color: #fff;
}

.expertise-text {
    flex: 1 1 45%;
    padding-left: 20px; /* Add some space if image is on left */
}

.expertise-text h2 {
    color: #003A6A;
    font-size: 2.5em;
    margin-bottom: 15px;
}

.expertise-text p {
    font-size: 1.05em;
    color: #444;
    margin-bottom: 15px;
}

/* FBA/3PL Services Page */
#fba-options {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 40px; /* Increased margin */
    padding: 30px 0;
}

.fba-option {
    width: calc(33.333% - 40px); /* Adjust for gap and padding */
    min-width: 300px; /* Slightly larger min-width */
    text-align: center; /* Center the h3 text */
    padding: 25px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    margin: 20px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    background-color: #fff;
    /* position: relative; */ /* No longer needed for fba-region-tag */
    display: flex; /* Added for centering content */
    flex-direction: column; /* Stack image and h3 vertically */
    align-items: center; /* Center image and h3 horizontally */
    justify-content: flex-start; /* Align content to the top of the card */
}

/* .fba-region-tag styles can be removed if no longer used */

.fba-option img {
    max-width: 100%;
    height: 200px; /* Increased height */
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 20px; /* Increased space between image and new larger title */
    /* margin-top: 30px; */ /* No longer needed after removing fba-region-tag */
}

.fba-option h3 {
    /* margin-top: 15px; */ /* Adjusted due to centering and increased bottom margin of img */
    color: #0056A0; /* Swoosh Dark Blue */
    font-size: 1.8em; /* Increased font size */
    margin-bottom: 10px; /* Space below title */
}

.fba-option-description {
    font-size: 0.95em;
    color: #555;
    line-height: 1.5;
    min-height: 60px; /* Ensure consistent height for description area */
}

#fba-details .fba-detail-content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 30px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background-color: #fdfdfd;
    margin-top: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* New Standardized Container for Maps in Detail View */
.detail-map-container {
    flex: 1 1 55%; /* Map container takes 55% */
    max-width: 55%;
    position: relative; /* For positioning info boxes if any */
    margin-right: 30px;
    display: flex; /* To help center the image if it's smaller */
    align-items: center; /* To help center the image if it's smaller */
    justify-content: center; /* To help center the image if it's smaller */
}

/* Generic map image style - applies to all maps within .detail-map-container */
#fba-details .map-image {
    width: 100%; /* Make map image fill its container width */
    max-width: 100%;
    max-height: 400px; /* Max height to prevent overly tall maps */
    object-fit: contain; /* Ensure the whole map is visible without cropping */
    border-radius: 6px;
    margin-right: 0; /* Reset margin as parent .detail-map-container has it */
}

.map-info-box {
    position: absolute;
    background-color: #fff;
    border: 1px solid #F38B00; /* Orange border */
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 0.9em;
    color: #333;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.map-info-box .map-info-label {
    display: block;
    font-size: 0.8em;
    color: #777;
    margin-bottom: 2px;
    border-bottom: 1px solid #eee;
    padding-bottom: 2px;
}

.warehouse-quantity {
    top: 20px; /* Adjust as per image */
    right: 20px; /* Adjust as per image */
}

.storage-area {
    bottom: 20px; /* Adjust as per image */
    left: 20px; /* Adjust as per image */
}

.us-details-text {
    flex: 1 1 45%; /* Adjust flex basis for text content */
}

.service-title-container {
    display: flex;
    align-items: center; /* Align icon and title vertically */
    margin-bottom: 15px;
}

.title-icon {
    width: 40px; /* Adjust size as needed */
    height: 40px;
    margin-right: 10px;
}

#fba-details .us-details-text h2 {
    font-size: 1.8em; /* Slightly smaller than default FBA h2 for better fit */
    color: #003A6A; /* Dark blue title */
    margin-bottom: 0; /* Remove bottom margin as it's handled by container */
}

#fba-details .us-details-text p {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

#fba-details .us-details-text ul li::before {
    content: '\2713'; /* Checkmark */
    color: #F38B00; /* Orange checkmark */
    /* styles for checkmark are already defined globally for #fba-details ul li::before */
}

.btn-get-quote {
    background-color: #F38B00; /* Orange button */
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px; /* Rounded button */
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1em;
    display: inline-block;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-align: center;
    margin-top: 15px;
}

.btn-get-quote:hover {
    background-color: #d97700; /* Darker orange */
    color: #fff;
}

#fba-details .text-content {
    flex: 1 1 40%; /* Text content takes 40% */
    max-width: 40%;
    /* .us-details-text is a .text-content, so it will get these flex properties */
}

#fba-details .text-content h2 {
    font-size: 1.8em;
    color: #F38B00;
    margin-top: 0;
    margin-bottom: 20px;
}

#fba-details ul {
    list-style: none; /* Remove default bullets */
    padding-left: 0;
}

#fba-details ul li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-size: 1.05em;
}

#fba-details ul li::before {
    content: '\2713'; /* Checkmark symbol */
    color: #F38B00; /* Orange checkmark */
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Footer */
footer {
    background-color: #003A6A; /* Deeper blue for footer */
    color: #e0e0e0; /* Lighter text for contrast */
    text-align: center;
    padding: 30px 0;
    margin-top: 50px;
}

footer .container p {
    margin: 8px 0;
    font-size: 0.95em;
}

footer .container p:last-child {
    margin-top: 15px;
    font-size: 0.85em;
    color: #aaa;
}

/* Responsive Adjustments */
@media (max-width: 992px) { /* Tablet and below */
    .banner-text-overlay {
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 80%;
        text-align: center;
    }
    .strategic-partner-section {
        flex-direction: column;
        gap: 30px;
    }
    .strategic-partner-left,
    .strategic-partner-right {
        flex-basis: 100%;
        max-width: 100%;
        padding-left: 0;
        border-left: none; /* Remove border on stacked layout */
    }
    .strategic-partner-right{
        padding-left: 0; /* Reset padding */
    }
    .strategic-partner-left h2 {
        font-size: 2.4em;
    }
    .fba-option {
        width: calc(50% - 40px);
    }
    #fba-details .fba-detail-content {
        /* Ensure general stacking applies if not overridden by specifics below */
    }

    .detail-map-container {
        flex-basis: 100%;
        max-width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
    /* .us-details-text (which is a .text-content) will also become 100% width */
    #fba-details .text-content {
        flex-basis: 100%;
        max-width: 100%;
    }

    .warehouse-quantity {
        top: 10px;
        right: 10px;
        font-size: 0.8em;
        padding: 6px 10px;
    }

    .storage-area {
        bottom: 10px;
        left: 10px;
        font-size: 0.8em;
        padding: 6px 10px;
    }

    #fba-details .us-details-text h2 {
        font-size: 1.6em;
    }
}

@media (max-width: 768px) { /* Mobile */
    header .container {
        flex-direction: column;
    }

    nav ul {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li {
        margin: 8px 12px;
    }
    nav ul li a {
        font-size: 0.9em;
    }

    .hero-image {
        height: 400px;
    }

    .price-inquiry-overlay {
        width: 90%;
        padding: 20px 25px;
        top: calc(50% + 40px); /* Adjust for potentially shorter hero on mobile */
    }

    .price-inquiry-overlay h3 {
        font-size: 1.5em;
    }

    #price-inquiry-form label {
        font-size: 0.85em;
    }
    #price-inquiry-form input[type="text"] {
        padding: 10px 12px;
        font-size: 0.95em;
    }
    #price-inquiry-form button {
        padding: 10px 20px;
        font-size: 1em;
    }

    .text-section {
        padding: 40px 0;
    }
    .text-section h2 {
        font-size: 1.8em;
    }
    .text-section p {
        font-size: 1em;
    }

    .banner-image-container {
        height: 350px; /* Adjust height for mobile */
    }
    .banner-text-overlay h2 {
        font-size: 2em;
    }
    .banner-text-overlay p {
        font-size: 0.95em;
    }

    .strategic-partner-left h2 {
        font-size: 2em;
    }
    .strategic-partner-right p {
        font-size: 1em;
    }

    .fba-option {
        width: calc(100% - 40px); /* Full width on mobile */
        min-width: unset;
    }

    #fba-details .fba-detail-content {
        flex-direction: column;
        padding: 20px;
    }

    #fba-details .map-image {
        /* max-height adjustment for mobile if needed, e.g., max-height: 300px; */
    }

    .title-icon {
        width: 30px;
        height: 30px;
    }

    #fba-details .us-details-text h2 {
        font-size: 1.4em;
    }

    .btn-get-quote {
        width: 100%; /* Full width button on mobile */
        padding: 12px 20px;
    }

    #request-quote-section {
        padding: 20px;
    }

    #request-quote-section h1 {
        font-size: 1.8em;
    }

    #cargo-info-form .form-group-horizontal {
        flex-direction: column;
        align-items: stretch;
    }

    #cargo-info-form .form-group-horizontal label {
        text-align: left;
        margin-bottom: 5px;
        flex-basis: auto;
    }

    #fba-details .map-image {
        /* max-height adjustment for mobile if needed, e.g., max-height: 300px; */
    }
} 

/* New Section: Industries Served Banner */
.image-banner-section {
    width: 100%;
    position: relative;
    color: #fff;
}

.banner-image-container {
    position: relative;
    width: 100%;
    height: 450px; /* Adjust height as needed */
    overflow: hidden;
}

.banner-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-text-overlay {
    position: absolute;
    top: 50%;
    left: 5%; /* Aligned to the left as per reference image */
    transform: translateY(-50%);
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay for text */
    border-radius: 8px;
    max-width: 450px; /* Max width for the text box */
}

.banner-text-overlay h2 {
    color: #fff;
    font-size: 2.5em; /* Large title */
    margin-top: 0;
    margin-bottom: 15px;
}

.banner-text-overlay p {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.banner-text-overlay .btn-contact-us {
    background-color: #fff; /* White button */
    color: #333; /* Dark text */
    padding: 12px 25px;
    border-radius: 25px; /* More rounded button */
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9em;
    display: inline-block;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 1px solid #fff;
}

.banner-text-overlay .btn-contact-us:hover {
    background-color: transparent;
    color: #fff;
}

/* New Section: Strategic Partner */
.strategic-partner-section {
    padding: 60px 0;
    display: flex;
    gap: 40px; /* Gap between columns */
    align-items: flex-start; /* Align items to the top */
}

.strategic-partner-left {
    flex: 0 0 40%; /* Left column takes 40% width */
    max-width: 40%;
}

.strategic-partner-left h4 {
    font-size: 0.9em;
    color: #F38B00; /* Orange color for GETTING STARTED */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.strategic-partner-left h2 {
    font-size: 2.8em; /* Large title */
    color: #003A6A;
    line-height: 1.2;
    margin-top: 0;
}

.strategic-partner-right {
    flex: 1 1 58%; /* Right column takes the rest, with a bit of gap accounted for */
    padding-left: 20px; /* Optional: add some space if a visual separator is not used */
    border-left: 3px solid #F38B00; /* Orange vertical line separator */
    padding-left: 30px; /* Space after the border line */
}

.strategic-partner-right p {
    font-size: 1.05em;
    color: #444;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Request For Quote Page Styles */
.quote-page-main {
    padding-top: 40px;
    padding-bottom: 60px;
}

#request-quote-section {
    max-width: 700px; /* Max width of the form container */
    margin: 0 auto; /* Center the form container */
    background-color: #0056A0; /* 蓝色背景 */
    padding: 30px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

#request-quote-section h1 {
    text-align: center;
    font-size: 2.2em;
    color: #ffffff; /* 白色文字 */
    margin-bottom: 30px;
}

#cargo-info-form .form-group-horizontal {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

#cargo-info-form .form-group-horizontal label {
    flex: 0 0 120px; /* Fixed width for labels */
    font-weight: bold;
    color: #ffffff; /* 白色文字 */
    padding-right: 15px;
    text-align: right; /* Align label text to the right for consistency */
    font-size: 1em;
}

#cargo-info-form .form-group-horizontal input[type="text"] {
    flex-grow: 1; /* Input takes remaining space */
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    background-color: #f8f9fa;
}

#cargo-info-form .form-group-horizontal input[type="text"]::placeholder {
    color: #777;
}

#cargo-info-form .form-submit-group {
    text-align: center; /* Center the button */
    margin-top: 30px;
}

#cargo-info-form button {
    background-color: #F38B00; /* Orange button */
    color: white;
    padding: 12px 35px;
    border: none;
    border-radius: 25px; /* Rounded button */
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

#cargo-info-form button:hover {
    background-color: #d97700; /* Darker orange on hover */
}

/* Why Us Page Styles */
.why-us-page {
    padding-top: 30px;
    padding-bottom: 50px;
}

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

.page-title-section h1 {
    font-size: 2.5em;
    color: #003A6A;
}

.why-us-section {
    display: flex;
    gap: 40px;
    align-items: stretch; /* Changed: items will stretch to fill the container height */
    margin-bottom: 50px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

/* Alternating layout for image and text */
.why-us-section.alt-layout {
    flex-direction: row-reverse; /* Image on the right, text on the left */
}

.why-us-image-container {
    flex: 1; /* Changed: now takes equal share of width */
    /* max-width: 45%; Removed */
}

.why-us-image-container img {
    width: 100%;
    height: 100%; /* Added: image stretches to fill its container's height */
    border-radius: 6px;
    object-fit: cover;
    /* max-height: 450px; Removed to allow stretching */
}

.why-us-text-container {
    flex: 1; /* Changed: now takes equal share of width */
    /* max-width: 50%; Removed */
}

.why-us-point {
    margin-bottom: 25px;
}

.why-us-point:last-child {
    margin-bottom: 0;
}

.why-us-point h3 {
    font-size: 1.4em;
    color: #0056A0; /* Swoosh Dark Blue */
    margin-bottom: 8px;
}

.why-us-point p {
    font-size: 1em;
    line-height: 1.7;
    color: #444;
}

@media (max-width: 992px) { /* Tablet and below */
    .why-us-section,
    .why-us-section.alt-layout {
        flex-direction: column;
        align-items: stretch;
    }
    .why-us-image-container,
    .why-us-text-container {
        max-width: 100%;
        flex-basis: auto;
    }
    .why-us-image-container {
        margin-bottom: 20px;
    }
    .why-us-image-container img {
        max-height: 350px;
    }

    .banner-text-overlay {
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 80%;
        text-align: center;
    }
}

@media (max-width: 768px) { /* Mobile */
    .page-title-section h1 {
        font-size: 2em;
    }
    .why-us-point h3 {
        font-size: 1.2em;
    }
    .why-us-point p {
        font-size: 0.95em;
    }

    #request-quote-section {
        padding: 20px;
    }

    #request-quote-section h1 {
        font-size: 1.8em;
    }

    #cargo-info-form .form-group-horizontal {
        flex-direction: column;
        align-items: stretch;
    }

    #cargo-info-form .form-group-horizontal label {
        text-align: left;
        margin-bottom: 5px;
        flex-basis: auto;
    }

    #cargo-info-form .form-group-horizontal input[type="text"] {
        flex-grow: 1;
        padding: 12px 15px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 1em;
        background-color: #f8f9fa;
    }

    #cargo-info-form .form-group-horizontal input[type="text"]::placeholder {
        color: #777;
    }

    #cargo-info-form .form-submit-group {
        text-align: center;
        margin-top: 30px;
    }

    #cargo-info-form button {
        background-color: #F38B00;
        color: white;
        padding: 12px 35px;
        border: none;
        border-radius: 25px;
        cursor: pointer;
        font-size: 1.1em;
        font-weight: bold;
        text-transform: uppercase;
        transition: background-color 0.3s ease;
    }

    #cargo-info-form button:hover {
        background-color: #d97700;
    }
} 

/* New Contact Page Styles (contact-page-revised) */
.contact-page-revised {
    padding-top: 40px;
    padding-bottom: 40px;
}

.contact-content-section {
    max-width: 800px;
    margin: 0 auto 40px auto; /* Center content and add bottom margin before image */
    text-align: left; /* Default text align to left for this section */
}

.contact-content-section .page-main-title {
    font-size: 2.8em;
    color: #003A6A;
    margin-bottom: 15px;
    text-align: center;
}

.contact-content-section .tagline {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 30px;
    text-align: center;
}

.contact-content-section .contact-subheading {
    font-size: 1.6em;
    color: #003A6A;
    margin-bottom: 10px;
    border-bottom: 2px solid #F38B00; /* Orange underline */
    padding-bottom: 5px;
    display: inline-block; /* To make border only span text width */
}

.primary-contact-details {
    margin-top: 15px; /* Add some space above the primary details */
}

.primary-contact-details p.contact-detail-item {
    font-size: 1.1em;
    color: #333;
    line-height: 1.6;
    margin-bottom: 12px;
    display: flex; /* Use flex to align icon and text */
    align-items: center; /* Vertically align icon and text */
}

.primary-contact-details p.contact-detail-item .contact-list-icon {
    /* Re-using .contact-list-icon style for consistency */
    font-size: 1.4em; 
    min-width: 30px; 
    text-align: center; 
    margin-right: 10px; /* Reduced margin slightly for this context */
    opacity: 0.7;
    color: #0056A0;
}

.primary-contact-details p a {
    color: #0056A0;
    text-decoration: none;
}

.primary-contact-details p a:hover {
    color: #F38B00;
    text-decoration: underline;
}

.contact-image-bottom {
    text-align: center; /* Center the image */
    margin-top: 40px;
}

.contact-image-bottom img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

@media (max-width: 992px) { /* Tablet and below */
    /* Remove or adjust old contact page tablet styles if any */

    .why-us-section,
    .why-us-section.alt-layout {
        flex-direction: column;
        align-items: stretch;
    }
    .why-us-image-container,
    .why-us-text-container {
        max-width: 100%;
        flex-basis: auto;
    }
    .why-us-image-container {
        margin-bottom: 20px;
    }
    .why-us-image-container img {
        max-height: 350px;
    }

    .banner-text-overlay {
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 80%;
        text-align: center;
    }
}

@media (max-width: 768px) { /* Mobile */
    /* Remove or adjust old contact page mobile styles if any */
    .contact-content-section .page-main-title {
        font-size: 2.2em;
    }
    .contact-content-section .tagline {
        font-size: 1.1em;
    }
    .contact-content-section .contact-subheading {
        font-size: 1.4em;
    }
    .primary-contact-details p.contact-detail-item {
        font-size: 1em;
        align-items: flex-start; /* Align to top on mobile if text wraps */
    }
    .primary-contact-details p.contact-detail-item .contact-list-icon {
        font-size: 1.3em;
        min-width: 25px;
        margin-right: 8px;
        margin-top: 3px; /* Adjust for better alignment with multi-line text */
    }
    .contact-image-bottom {
        text-align: center; /* Center the image */
        margin-top: 40px;
    }
    .contact-image-bottom img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .page-title-section h1 {
        font-size: 2em;
    }
    .why-us-point h3 {
        font-size: 1.2em;
    }
    .why-us-point p {
        font-size: 0.95em;
    }

    #request-quote-section {
        padding: 20px;
    }

    #request-quote-section h1 {
        font-size: 1.8em;
    }

    #cargo-info-form .form-group-horizontal {
        flex-direction: column;
        align-items: stretch;
    }

    #cargo-info-form .form-group-horizontal label {
        text-align: left;
        margin-bottom: 5px;
        flex-basis: auto;
    }

    #cargo-info-form .form-group-horizontal input[type="text"] {
        flex-grow: 1;
        padding: 12px 15px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 1em;
        background-color: #f8f9fa;
    }

    #cargo-info-form .form-group-horizontal input[type="text"]::placeholder {
        color: #777;
    }

    #cargo-info-form .form-submit-group {
        text-align: center;
        margin-top: 30px;
    }

    #cargo-info-form button {
        background-color: #F38B00;
        color: white;
        padding: 12px 35px;
        border: none;
        border-radius: 25px;
        cursor: pointer;
        font-size: 1.1em;
        font-weight: bold;
        text-transform: uppercase;
        transition: background-color 0.3s ease;
    }

    #cargo-info-form button:hover {
        background-color: #d97700;
    }
}