/* Full Comprehensive Stylesheet for Production Displays Page */

/* General Body and Container Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f7f6; /* Light background */
    color: #333;
    overflow-x: hidden; /* Prevent horizontal scrolling on mobile due to overflowing elements */
}

.container {
    max-width: 1200px; /* Standard container width */
    margin: 0 auto;
    padding: 20px;
}

h1, h2, h3, h4 {
    color: #004085; /* Dark blue for headings */
    text-align: center;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.8em;
    margin-top: 40px;
    line-height: 1.2;
}

h2 {
    font-size: 2.2em;
    margin-top: 50px;
    position: relative;
    padding-bottom: 15px; /* Increase space for underline */
    margin-bottom: 40px; /* More space after heading */
    display: inline-block; /* Keep inline-block for underline width */
    max-width: 100%;
}

h2::after { /* Pseudo-element for a custom underline */
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px; /* Fixed width for a subtle underline */
    height: 4px; /* Thicker underline */
    background-color: #007bff; /* Primary brand color */
    border-radius: 2px; /* Soften the ends of the line */
}

p {
    margin-bottom: 15px;
}

.cta-button {
    display: block;
    width: fit-content;
    margin: 30px auto;
    background-color: #007bff;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2); /* Add shadow to CTA */
}

.cta-button:hover {
    background-color: #0056b3;
    transform: translateY(-2px); /* Lift on hover */
}

/* --- Header Styles --- */
.main-header {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1); /* Slightly stronger shadow for header */
    padding: 0; /* Remove top/bottom padding here */
    position: sticky; /* Make header sticky */
    top: 0;
    z-index: 1000; /* Ensure it stays on top */
}

.top-bar {
    background-color: #f0f0f0; /* Light grey top bar */
    padding: 8px 0; /* Vertical padding */
    font-size: 0.9em;
    border-bottom: 1px solid #e0e0e0;
}

.top-bar-content {
    display: flex;
    justify-content: flex-end; /* Align to the right */
    align-items: center;
    gap: 15px; /* Space between email and phone */
    padding: 0 20px; /* Horizontal padding */
}

.top-bar-content a {
    color: #555; /* Darker grey for contact links */
    text-decoration: none;
    transition: color 0.2s ease;
}

.top-bar-content a:hover {
    color: #007bff;
}

/* Mobile Header */
.mobile-header {
    display: none; /* Default hidden, shown by media query */
    padding: 10px 20px;
    align-items: center;
    justify-content: space-between;
}

.mobile-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.mobile-logo {
    max-height: 40px;
    width: auto;
}

.mobile-download-button {
    background-color: #28a745;
    color: white;
    padding: 8px 12px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9em;
    white-space: nowrap;
}

.mobile-menu-toggle {
    background: none;
    border: none;
    font-size: 1.8em;
    color: #004085;
    cursor: pointer;
    padding: 5px;
    margin-left: 15px;
    display: block;
}

.mobile-navigation {
    display: none; /* Hidden by default for animation */
    width: 100%;
    max-height: 0; /* Starts collapsed */
    overflow: hidden; /* Hides content outside max-height */
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out; /* Smooth collapse/expand */
    opacity: 0; /* For fade effect */
}

.mobile-navigation.open {
    display: block; /* Make it visible for layout */
    max-height: 300px; /* Expands to show content, adjust as needed */
    opacity: 1; /* Fades in */
}

.mobile-navigation ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
    background-color: #f8f9fa;
    border-top: 1px solid #eee;
}

.mobile-navigation ul li {
    padding: 10px 20px;
    border-bottom: 1px solid #eee;
}

.mobile-navigation ul li:last-child {
    border-bottom: none;
}

.mobile-navigation ul li a {
    text-decoration: none;
    color: #004085;
    display: block;
    font-weight: bold;
}

/* Desktop Header */
.desktop-header {
    display: flex; /* Controlled by media query */
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px; /* More padding for a spaced out header */
}

.desktop-header .logo {
    max-height: 70px; /* Slightly larger logo */
    width: auto;
}

.header-nav-and-button {
    display: flex;
    align-items: center;
    gap: 30px; /* Space between nav and button */
}

.desktop-header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 25px; /* Space between nav items */
}

.desktop-header nav ul li a {
    text-decoration: none;
    color: #004085;
    font-weight: bold;
    font-size: 1.05em;
    transition: color 0.3s ease;
}

.desktop-header nav ul li a:hover {
    color: #007bff;
}

.download-button {
    background-color: #28a745;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    white-space: nowrap;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2); /* Shadow for button */
}

.download-button:hover {
    background-color: #218838;
    transform: translateY(-2px);
}

/* --- HERO SECTION STYLES --- */
.hero-section.new-production-hero {
    display: flex;
    flex-direction: column; /* Stack top content and comparison visual */
    width: 100%; /* Make hero section stretch full width */
    min-height: auto; /* Allow height to adjust to content */
    background-color: #000; /* Solid black background for the whole hero */
    color: white; /* Default text color for the hero section */
    padding: 0; /* No padding on the main section, handled by inner divs */
    box-shadow: 0 5px 15px rgba(0,0,0,0.3); /* Subtle shadow for the whole hero */
    
    position: relative; 
    align-items: stretch; 
    justify-content: flex-start; 
    overflow: hidden; /* Hide overflow of comparison images */
    margin-top: 0; /* Remove any default margin above the hero section */
}

/* Hide old VCD hero elements if they were inadvertently left in HTML (safety measure) */
.hero-section.new-production-hero .hero-spotlight-content,
.hero-section.new-production-hero .hero-background-carousel-wrapper {
    display: none !important; 
}

/* --- HERO SECTION INNER STYLES --- */
.hero-top-content {
    background-color: #222; /* Slightly lighter dark for the text bar */
    padding: 10px 20px; /* FINE-TUNE: Reduced vertical padding */
    text-align: center;
    max-width: 1200px; /* Constrain content width */
    margin: 0 auto; /* Center content */
    width: 100%; 
    box-sizing: border-box; 
    position: relative; /* REQUIRED for pseudo-elements */
}

/* Green Lines using Pseudo-elements */
.hero-top-content::before,
.hero-top-content::after {
    content: '';
    position: absolute;
    left: 50%; 
    transform: translateX(-50%); 
    width: 80%; /* Width of the lines - adjust as needed (e.g., 600px, 70%) */
    max-width: 800px; /* Optional: limit max width of lines */
    height: 2px; /* Thickness of the line */
    background-color: #00FF00; /* Green color */
}

.hero-top-content::before {
    top: 0; /* Position at the very top of the content area */
}

.hero-top-content::after {
    bottom: 0; /* Position at the very bottom of the content area */
}


.hero-top-content h1 {
    font-size: 2.1em; /* FINE-TUNE: Reduced headline font size further for single line */
    color: white; 
    margin-top: 5px; /* FINE-TUNE: Reduced top margin */
    margin-bottom: 5px; /* FINE-TUNE: Reduced bottom margin */
    line-height: 1.1; /* Ensure tight line spacing */
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5); 
    text-align: center; 
    white-space: nowrap; /* Attempt to keep text in single line */
    overflow: hidden; /* Hide overflowing text */
    text-overflow: ellipsis; /* Add ellipsis for hidden text */
}

.hero-top-content p {
    font-size: 0.9em; /* FINE-TUNE: Reduced tagline font size */
    color: #ddd; 
    max-width: 800px;
    margin: 0 auto 5px auto; /* FINE-TUNE: Reduced bottom margin */
    text-align: center; 
}

/* Styles for the CTA button in its new position */
.hero-bottom-cta {
    background-color: #000; /* Black background to match the comparison section */
    padding: 15px 20px; /* Padding above/below the button */
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    margin-top: 0; /* Remove space between comparison visual and CTA */
    box-shadow: 0 -5px 15px rgba(0,0,0,0.3); /* Shadow to separate from above */
}

.hero-bottom-cta .cta-button {
    display: inline-block; /* Keep it centered */
    margin: 0; /* Remove default cta-button margins */
    padding: 10px 20px; /* Reduced button padding */
    font-size: 0.9em; /* Reduced button font size */
}

.hero-comparison-visual {
    flex-grow: 1; 
    display: flex;
    align-items: center; 
    justify-content: center; 
    padding: 20px 20px; /* Padding around the comparison image */
    background-color: #000; 
    position: relative; 
    overflow: hidden; 
}

/* Style for the single composite image */
.hero-comparison-visual img {
    max-width: 100%; 
    height: auto; 
    max-height: 42vh; /* FINE-TUNE: Adjusted max-height for overall vertical fit */
    display: block; 
    object-fit: contain; 
    box-shadow: 0 8px 20px rgba(0,0,0,0.5); 
    border-radius: 10px; 
}

/* --- Card Base Style --- */
/* These styles apply to sections with class="card-style" (Problem-Solution, Solutions Overview, etc.) */
.card-style {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 50px;
}

.card-style:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

/* Problem-Solution Section */
.problem-solution-section {
    background-color: #f0f8ff;
    padding: 40px;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px auto;
    font-size: 1.1em;
    color: #555;
}

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.problem, .solution {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: none;
}
.problem:hover, .solution:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.problem h3 {
    color: #dc3545;
}

.solution h3 {
    color: #28a745;
}

.problem ul, .solution ul {
    list-style: none;
    padding: 0;
}

.problem ul li::before {
    content: '✖';
    color: #dc3545;
    margin-right: 10px;
    font-weight: bold;
}

.solution ul li::before {
    content: '✔';
    color: #28a745;
    margin-right: 10px;
    font-weight: bold;
}

/* Solutions Overview Section */
.solutions-overview-section {
    background-color: #ffffff;
    padding: 40px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.solution-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.solution-header {
    text-align: center;
    margin-bottom: 20px;
}

.solution-header img {
    max-width: 100%;
    height: 150px;
    object-fit: contain;
    margin-bottom: 15px;
}

.solution-header h3 {
    color: #0056b3;
    font-size: 1.8em;
    margin-bottom: 10px;
}

.solution-description {
    font-size: 1.05em;
    color: #444;
    margin-bottom: 20px;
    flex-grow: 1;
}

.solution-body h4 {
    color: #007bff;
    font-size: 1.3em;
    margin-top: 15px;
    margin-bottom: 10px;
    text-align: left;
}

.solution-body ul {
    list-style: disc;
    margin-left: 25px;
    padding: 0;
    margin-bottom: 15px;
}

.solution-body ul li {
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Technical Features Section */
.technical-features-section {
    background-color: #e9f5ff;
    padding: 40px;
}

.features-grid { 
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.feature-item { 
    background-color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: none;
}

.feature-item img {
    background-color: #007bff;
    padding: 12px;
    border-radius: 50%;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    width: 50px; 
    height: 50px; 
}
.feature-item:hover { 
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.feature-item h4 {
    color: #0056b3;
    font-size: 1.5em;
    margin-bottom: 10px;
}

/* Models Section */
.models-section {
    padding: 40px;
    background-color: #ffffff;
}

.models-section h3 {
    color: #0056b3;
    margin-top: 30px;
    font-size: 1.8em;
    border-bottom: 2px solid #e0f7fa;
    padding-bottom: 8px;
    margin-bottom: 25px;
}

.table-responsive { 
    overflow-x: auto;
    margin-top: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

table { 
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 0;
}

table th, table td { 
    border: 1px solid #e9ecef;
    padding: 14px 12px;
    text-align: left;
    white-space: nowrap;
}

table thead th { 
    background-color: #007bff;
    color: white;
    font-weight: bold;
    font-size: 1.05em;
    letter-spacing: 0.5px;
}
table thead tr:first-child th:first-child { border-top-left-radius: 8px; }
table thead tr:first-child th:last-child { border-top-right-radius: 8px; }

table tbody tr:nth-child(even) { 
    background-color: #f8f9fa;
}

table tbody tr:hover { 
    background-color: #e0f7fa;
}


/* Gallery Section */
.gallery-section {
    background-color: #f0f8ff;
    padding: 40px;
}

.image-grid { 
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.image-grid figure { 
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    overflow: hidden;
}

.image-grid .gallery-image { 
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid #eee;
}

.image-grid figcaption { 
    padding: 15px;
    font-size: 0.95em;
    color: #555;
}

/* ROI Section */
.roi-section {
    background-color: #d4edda;
    padding: 40px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.roi-section h2 {
    color: #155724;
}
.roi-section h2::after {
    background-color: #28a745;
}

.benefits-grid { 
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.benefit-item { 
    background-color: #ffffff;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.benefit-item:hover { 
    transform: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.benefit-item h4 {
    color: #218838;
    font-size: 1.5em;
    margin-bottom: 10px;
}

/* Why Choose Section */
.why-choose-section {
    background-color: #e0f7fa;
    padding: 40px;
}

.choose-list { 
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.choose-list li { 
    background-color: #ffffff;
    padding: 20px;
    border-left: 5px solid #007bff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    font-size: 1.1em;
}
.choose-list li:hover { 
    transform: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Inquiry Form Section */
.inquiry-form-section {
    background-color: #f9f9f9;
    padding: 50px 20px;
    text-align: center;
}

.inquiry-form-section h2 {
    color: #004085;
    margin-bottom: 15px;
}

.inquiry-form-section p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 30px;
}

.inquiry-form-section form {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.inquiry-form-section .form-group {
    text-align: left;
}

.inquiry-form-section label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.inquiry-form-section .required {
    color: #dc3545;
}

.inquiry-form-section input[type="text"],
.inquiry-form-section input[type="tel"],
.inquiry-form-section input[type="email"],
.inquiry-form-section textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

.inquiry-form-section input[type="text"]:focus,
.inquiry-form-section input[type="tel"]:focus,
.inquiry-form-section input[type="email"]:focus,
.inquiry-form-section textarea:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

.inquiry-form-section textarea {
    resize: vertical;
}

.inquiry-form-section .submit-button {
    background-color: #28a745;
    color: white;
    padding: 15px 25px;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-weight: bold;
}

.inquiry-form-section .submit-button:hover {
    background-color: #218838;
    transform: translateY(-2px);
}

.inquiry-form-section .form-message {
    margin-top: 15px;
    font-size: 1em;
    font-weight: bold;
}

.inquiry-form-section .form-message.success {
    color: #28a745;
}

.inquiry-form-section .form-message.error {
    color: #dc3545;
}

/* Footer Styles */
footer {
    background-color: #004085;
    color: white;
    padding: 40px 20px;
    font-size: 0.95em;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
}

.footer-col h3 {
    color: #007bff;
    margin-bottom: 20px;
    font-size: 1.4em;
    text-align: left;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 15px;
}

.footer-col p, .footer-col ul {
    color: #b0d8ff;
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a, .footer-col p a {
    color: #b0d8ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.social-media-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-media-icons img {
    width: 30px;
    height: 30px;
    transition: transform 0.2s ease;
}

.social-media-icons img:hover {
    transform: scale(1.1);
}

.copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: #b0d8ff;
    font-size: 0.85em;
}

.copyright a {
    color: #b0d8ff;
    text-decoration: none;
}

.copyright a:hover {
    text-decoration: underline;
}

.branding-credit {
    margin-top: 10px;
}

/* Call-back widget */
#callback-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

#widget-button {
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
    font-size: 1em;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

#widget-button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

#widget-button svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

/* Modal Styles */
#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: 1001;
    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 {
    display: none;
}

.modal-content {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    width: 90%;
    max-width: 400px;
    text-align: center;
    transform: translateY(-20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

#callback-modal.modal-visible .modal-content {
    transform: translateY(0);
    opacity: 1;
}

#modal-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
    color: #666;
}

.form-step {
    display: none;
}

.form-step.active-step {
    display: block;
}

.form-step h3 {
    color: #004085;
    margin-bottom: 10px;
}

.form-step p {
    color: #555;
    margin-bottom: 20px;
}

.form-step input[type="tel"],
.form-step input[type="text"],
.form-step input[type="email"] {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
}

.form-step .next-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.form-step .next-btn:hover {
    background-color: #0056b3;
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .desktop-header {
        display: none;
    }

    .mobile-header {
        display: flex;
    }
    
    .top-bar { /* Hide top bar on mobile */
        display: none;
    }

    .header-nav-and-button {
        flex-direction: column;
        align-items: flex-start;
    }

    .desktop-header nav ul {
        flex-direction: column;
        margin-top: 15px;
    }

    .desktop-header nav ul li {
        margin-left: 0;
        margin-bottom: 10px;
    }

    .download-button.desktop-download-button {
        margin: 15px 0 0 0;
        width: 100%;
        text-align: center;
    }

    h1 {
        font-size: 2.2em;
    }

    h2 {
        font-size: 1.8em;
    }
    h2::after {
        width: 60px;
        height: 3px;
    }

    /* Hero section for smaller screens */
    .hero-section.new-production-hero {
        min-height: auto;
    }

    .hero-top-content h1 {
        font-size: 2.5em; /* Smaller headline for mobile */
    }

    .hero-top-content p {
        font-size: 1em; /* Smaller tagline for mobile */
    }

    .hero-comparison-visual {
        flex-direction: column; /* Stack comparison items */
        gap: 20px;
        padding: 30px 15px;
    }

    .product-display-container { /* This rule is now effectively for a single image, might not be needed as much */
        width: 90%; /* Take more width when stacked */
        min-width: unset; /* Remove min-width to allow full responsiveness */
    }

    .vs-text { /* This rule is now effectively for a single image, might not be needed as much */
        font-size: 3em; /* Smaller V/s text */
        margin: 10px 0;
    }
    
    .problem, .solution, .card-style, .feature-item, .benefit-item { /* Added card-style here for general mobile responsiveness */
        min-width: unset;
        width: 100%;
    }

    .solutions-grid, .features-grid, .benefits-grid, .image-grid, .categories-grid, .choose-list {
        grid-template-columns: 1fr; /* Stack columns on small screens */
    }

    .image-grid .gallery-image {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.6em;
    }

    .hero-section { /* Global hero section adjustment for 768px - might be redundant now */
        padding: 40px 15px;
    }

    /* Specific hero section adjustments for the new design */
    .hero-section.new-production-hero .hero-top-content h1 {
        font-size: 2em;
    }
    .hero-section.new-production-hero .hero-top-content p {
        font-size: 0.9em;
    }

    .solution-card img {
        height: 120px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8em;
    }
    .hero-top-content h1 {
        font-size: 1.8em;
    }

    .hero-top-content .cta-button {
        padding: 12px 20px;
        font-size: 1em;
    }
    
    .mobile-download-button {
        font-size: 0.8em;
        padding: 6px 10px;
    }

    .cta-button { /* Base cta-button adjustment for small screens */
        padding: 12px 20px;
        font-size: 1em;
    }

    .inquiry-form-section input,
    .inquiry-form-section textarea,
    .inquiry-form-section .submit-button {
        font-size: 0.9em;
        padding: 10px;
    }
}