/* General Body & Typography */
:root {
    --primary-color: #007bff; /* Blue for buttons, links */
    --secondary-color: #28a745; /* Green for secondary buttons/highlights */
    --accent-color: #ffc107; /* Yellow for small accents */
    --dark-text: #333;
    --light-text: #f8f9fa;
    --background-light: #f4f7f6;
    --background-dark: #2c3e50; /* Dark blue for sections */
    --border-color: #ddd;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--background-light);
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0056b3; /* Darker primary on hover */
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark-text);
    margin-bottom: 0.8em;
    line-height: 1.2;
}

h1 { font-size: 2.8em; }
h2 { font-size: 2.2em; }
h3 { font-size: 1.8em; }
h4 { font-size: 1.5em; }

p {
    margin-bottom: 1em;
}

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

.section-description {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 3em;
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    border: none;
    font-size: 1em;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: #fff;
}

.btn-secondary:hover {
    background-color: #218838;
    transform: translateY(-2px);
}

.btn.large {
    padding: 15px 30px;
    font-size: 1.1em;
}

.btn.small {
    padding: 8px 15px;
    font-size: 0.9em;
}

.btn.disabled {
    background-color: #cccccc;
    cursor: not-allowed;
    opacity: 0.7;
    transform: none;
}

/* Header & Navigation */
header {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
}

.logo a {
    font-family: var(--font-heading);
    font-size: 1.8em;
    font-weight: 700;
    color: var(--dark-text);
    text-decoration: none;
}

.logo span {
    display: block;
    font-size: 0.8em;
    color: #777;
    margin-top: -5px;
}

nav .nav-links {
    list-style: none;
    display: flex;
    align-items: center;
}

nav .nav-links li {
    margin-left: 30px;
}

nav .nav-links a {
    color: var(--dark-text);
    font-weight: 600;
    transition: color 0.3s ease;
}

nav .nav-links a:hover {
    color: var(--primary-color);
}

nav .nav-links a.btn {
    margin-left: 20px;
}

.hamburger-menu {
    display: none; /* Hidden by default on desktop */
    font-size: 1.8em;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dark-text);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)), url('../images/hero-camper.png') no-repeat center center/cover;
    color: var(--light-text);
    text-align: center;
    padding: 100px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

.hero-section h1 {
    color: #fff;
    font-size: 3.5em;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-section p {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.5;
}

.hero-section .btn {
    margin: 0 10px;
}

/* Subpage Hero */
.hero-subpage {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), url('../images/hero-subpage-bg.png') no-repeat center center/cover;
    color: var(--light-text);
    text-align: center;
    padding: 80px 20px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-subpage h1 {
    color: #fff;
    font-size: 3em;
    margin-bottom: 15px;
}

.hero-subpage p {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto;
}


/* Value Propositions Section */
.value-propositions {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.value-propositions h2 {
    margin-bottom: 40px;
}

.vp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.vp-item {
    padding: 30px;
    border-radius: 8px;
    background-color: var(--background-light);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vp-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.vp-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.vp-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.5em;
}

.vp-item p {
    font-size: 1.05em;
    color: #555;
}

/* Featured Vans Section */
.featured-vans {
    padding: 80px 0;
    background-color: var(--background-dark);
    color: var(--light-text);
    text-align: center;
}

.featured-vans h2 {
    color: #fff;
}

.featured-vans p {
    color: #ccc;
}

.van-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.van-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: left;
    transition: transform 0.3s ease;
}

.van-card:hover {
    transform: translateY(-5px);
}

.van-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.van-card h3 {
    color: var(--primary-color);
    margin: 15px 15px 10px;
    font-size: 1.6em;
}

.van-card p {
    color: #555;
    padding: 0 15px;
    font-size: 0.95em;
    margin-bottom: 15px;
}

.van-card ul {
    list-style: none;
    padding: 0 15px 15px;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.van-card ul li {
    color: #666;
    font-size: 0.9em;
    background-color: var(--background-light);
    padding: 5px 10px;
    border-radius: 3px;
    display: flex;
    align-items: center;
}

.van-card ul li i {
    margin-right: 8px;
    color: var(--secondary-color);
}

.van-card .btn {
    display: block;
    width: calc(100% - 30px);
    margin: 0 15px 15px;
    text-align: center;
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px;
}
.van-card .btn:hover {
    background-color: #0056b3;
}


/* How It Works Teaser Section (Homepage) */
.how-it-works-teaser {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.how-it-works-teaser h2 {
    margin-bottom: 40px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step-item {
    padding: 20px;
    border-radius: 8px;
    background-color: var(--background-light);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
}

.step-item span {
    display: block;
    font-size: 3em;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.step-item h3 {
    color: var(--dark-text);
    margin-bottom: 10px;
    font-size: 1.4em;
}

.step-item p {
    font-size: 0.95em;
    color: #555;
}

/* Call to Action Banner */
.cta-banner {
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

.cta-banner h2 {
    color: #fff;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.cta-banner p {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto 30px;
}

.cta-banner .btn {
    background-color: var(--secondary-color);
    color: #fff;
}

.cta-banner .btn:hover {
    background-color: #218838;
}

/* Footer */
footer {
    background-color: var(--dark-text);
    color: #f0f0f0;
    padding: 60px 0 20px;
    font-size: 0.95em;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #444;
}

.footer-links h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.3em;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #f0f0f0;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--accent-color);
}

.footer-links p {
    margin-bottom: 10px;
}

.footer-links p a {
    color: var(--accent-color);
}

.footer-links p a:hover {
    text-decoration: underline;
}

.social-icons a {
    color: #f0f0f0;
    font-size: 1.8em;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--primary-color);
}

.social-icons.large-icons a {
    font-size: 2.2em;
    margin-right: 25px;
}


.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input[type="email"] {
    flex-grow: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    background-color: #f0f0f0;
    color: var(--dark-text);
}

.newsletter-form button {
    padding: 10px 15px;
    background-color: var(--secondary-color);
    color: #fff;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #218838;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #444;
}

.footer-bottom p {
    margin-bottom: 8px;
    color: #ccc;
}

.footer-bottom a {
    color: var(--accent-color);
    margin: 0 10px;
}

/* Services Page Specific Styles */
.service-details {
    padding: 80px 0;
    background-color: #fff;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
    padding: 30px;
    background-color: var(--background-light);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.service-item:last-child {
    margin-bottom: 0;
}

.service-item img {
    flex: 0 0 400px; /* Fixed width for image */
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.service-item .service-text {
    flex: 1;
}

.service-item .service-text h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 2em;
}

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

.service-item .service-text ul {
    list-style: none;
    margin-top: 15px;
    padding-left: 0;
}

.service-item .service-text ul li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.service-item .service-text ul li::before {
    content: '✓';
    color: var(--secondary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.service-item.reverse {
    flex-direction: row-reverse;
}

/* Simple Contact Form (on Services page for quick inquiry) */
.simple-contact-form {
    max-width: 700px;
    margin: 40px auto 0;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.simple-contact-form input,
.simple-contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 1em;
}

.simple-contact-form input:focus,
.simple-contact-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

.simple-contact-form textarea {
    resize: vertical;
}

.simple-contact-form .btn-primary {
    width: auto;
    display: block;
    margin: 0 auto;
}

.form-note {
    margin-top: 20px;
    font-size: 0.9em;
    color: #777;
    text-align: center;
}

/* How It Works Full Page */
.how-it-works-full {
    padding: 80px 0;
    background-color: #fff;
}

.step-card {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 60px;
    padding: 30px;
    background-color: var(--background-light);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.step-card:last-child {
    margin-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2em;
    font-weight: 700;
}

.step-content {
    flex-grow: 1;
}

.step-content h2 {
    color: var(--dark-text);
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 2em;
}

.step-content p {
    color: #444;
    margin-bottom: 10px;
}

.step-content ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 15px;
    color: #555;
}

.step-content ul li {
    margin-bottom: 5px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--background-dark);
    color: var(--light-text);
    text-align: center;
}

.faq-section h2 {
    color: #fff;
    margin-bottom: 40px;
}

.accordion-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.accordion-item {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-header {
    background-color: #f9f9f9;
    color: var(--dark-text);
    padding: 20px 25px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.accordion-header:hover,
.accordion-header.active {
    background-color: var(--primary-color);
    color: #fff;
}

.accordion-header .icon {
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.accordion-header.active .icon {
    transform: rotate(45deg);
}

.accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background-color: #fff;
    color: #555;
}

.accordion-content.open {
    max-height: 500px; /* Adjust as needed for content height */
    padding: 20px 25px;
}

/* About Us Page Specific Styles */
.about-content {
    padding: 80px 0;
    background-color: #fff;
}

.about-section {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
}

.about-section:last-child {
    margin-bottom: 0;
}

.about-image {
    flex: 0 0 450px; /* Fixed width for image */
    height: 320px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 2em;
}

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

.about-text ul {
    list-style: none;
    margin-left: 0;
    margin-bottom: 15px;
}

.about-text ul li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.about-text ul li::before {
    content: '★'; /* Star icon */
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.about-section.reverse {
    flex-direction: row-reverse;
}

/* Blog Page Specific Styles */
.blog-posts {
    padding: 80px 0;
    background-color: var(--background-light);
}

.blog-posts h2 {
    text-align: center;
    margin-bottom: 40px;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.blog-card .post-content {
    padding: 20px;
}

.blog-card h2 {
    font-size: 1.7em;
    margin-bottom: 10px;
    text-align: left;
}

.blog-card h2 a {
    color: var(--dark-text);
}

.blog-card h2 a:hover {
    color: var(--primary-color);
}

.blog-card .post-meta {
    font-size: 0.9em;
    color: #777;
    margin-bottom: 15px;
}

.blog-card p {
    font-size: 0.95em;
    color: #555;
    margin-bottom: 15px;
}

.blog-card .read-more {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    transition: transform 0.2s ease;
}

.blog-card .read-more:hover {
    transform: translateX(5px);
    text-decoration: underline;
}

/* Contact Page Specific Styles */
.contact-info-section {
    padding: 80px 0;
    background-color: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Info on left, form on right */
    gap: 50px;
    align-items: flex-start;
}

.contact-details h2,
.contact-form-container h2 {
    color: var(--primary-color);
    margin-bottom: 25px;
}

.contact-details p {
    font-size: 1.05em;
    margin-bottom: 20px;
    color: #444;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.info-item i {
    font-size: 1.5em;
    color: var(--secondary-color);
    margin-right: 15px;
    width: 30px; /* Consistent icon width */
    text-align: center;
}

.info-item p {
    margin: 0;
    font-size: 1.1em;
}

.info-item a {
    color: var(--dark-text);
}

.info-item a:hover {
    color: var(--primary-color);
}

.working-hours {
    margin-top: 30px;
    font-size: 1.05em;
    color: #555;
}

.contact-form {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-text);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 1em;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form .btn-primary {
    display: block;
    width: 100%;
}

.map-section {
    padding: 80px 0;
    background-color: var(--background-dark);
    color: var(--light-text);
    text-align: center;
}

.map-section h2 {
    color: #fff;
    margin-bottom: 20px;
}

.map-section p {
    color: #ccc;
    margin-bottom: 30px;
}

.map-embed {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.map-embed iframe {
    border: 0;
    width: 100%;
    height: 450px;
}

/* Add these styles to your css/style.css file */

.consultation-form-container {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.form-wrapper {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.consultation-form .form-group {
    margin-bottom: 20px;
}

.consultation-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
}

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    transition: border-color 0.3s;
}

.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {
    outline: none;
    border-color: #007bff; /* You can change this to a color that matches your theme */
}

.consultation-form textarea {
    resize: vertical;
}

.checkbox-group .checkbox-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    font-weight: 400;
    margin-bottom: 0;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
}

.form-actions {
    text-align: center;
    margin-top: 30px;
}

.form-message {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.form-message.hidden {
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}

/* Responsive Design */
@media (max-width: 992px) {
    h1 { font-size: 2.2em; }
    h2 { font-size: 1.8em; }
    h3 { font-size: 1.4em; }

    /* Header */
    nav .nav-links {
        flex-direction: column;
        width: 100%;
        display: none; /* Hidden by default for mobile menu */
        text-align: center;
        margin-top: 15px;
    }

    nav .nav-links.active {
        display: flex;
    }

    nav .nav-links li {
        margin: 10px 0;
    }

    nav .nav-links a.btn {
        margin: 10px auto;
    }

    .hamburger-menu {
        display: block; /* Show hamburger on smaller screens */
    }

    /* Hero */
    .hero-section {
        min-height: 500px;
        padding: 80px 20px;
    }
    .hero-section h1 {
        font-size: 2.8em;
    }
    .hero-section p {
        font-size: 1.1em;
    }
    .hero-section .btn {
        display: block;
        margin: 15px auto;
        width: 80%;
    }

    .hero-subpage {
        padding: 60px 20px;
        min-height: 250px;
    }
    .hero-subpage h1 {
        font-size: 2.5em;
    }
    .hero-subpage p {
        font-size: 1em;
    }

    /* Value Propositions & Featured Vans */
    .vp-grid, .van-grid, .steps-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    /* Service Details */
    .service-item, .service-item.reverse {
        flex-direction: column;
        text-align: center;
    }
    .service-item img {
        width: 100%;
        max-width: 500px;
        flex: none;
        margin-bottom: 20px;
    }
    .service-item .service-text ul {
        padding-left: 0;
        text-align: left;
    }
    .service-item .service-text ul li {
        padding-left: 25px;
    }

    /* How it Works Full */
    .step-card {
        flex-direction: column;
        text-align: center;
    }
    .step-number {
        margin: 0 auto 20px;
    }
    .step-content ul {
        text-align: left;
    }

    /* About Us */
    .about-section, .about-section.reverse {
        flex-direction: column;
        text-align: center;
    }
    .about-image {
        width: 100%;
        max-width: 500px;
        flex: none;
        margin-bottom: 20px;
    }
    .about-text ul {
        padding-left: 0;
        text-align: left;
    }
    .about-text ul li {
        padding-left: 25px;
    }

    /* Contact Page */
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .map-embed iframe {
        height: 300px;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2em; }
    h2 { font-size: 1.6em; }
    h3 { font-size: 1.2em; }

    .hero-section h1 {
        font-size: 2.5em;
    }
    .hero-section p {
        font-size: 1em;
    }

    .cta-banner h2 {
        font-size: 2em;
    }

    /* Footer */
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-links div {
        margin-bottom: 30px;
    }
    .footer-links div:last-child {
        margin-bottom: 0;
    }
    .social-icons {
        justify-content: center;
    }
    .newsletter-form {
        max-width: 350px;
        margin: 15px auto 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    .hero-section h1 {
        font-size: 2em;
    }
    .hero-section .btn {
        width: 95%;
    }
    .hero-subpage h1 {
        font-size: 2em;
    }
    .cta-banner h2 {
        font-size: 1.8em;
    }
    .vp-grid, .van-grid, .steps-grid, .post-grid {
        grid-template-columns: 1fr;
    }
}