/* General Styles */
body {
    background-color: #766FB3;
    color: white;
    font-family: 'Jost', sans-serif;
    margin: 0;
    padding: 0;
} /* Added missing closing brace */

/* Header Contact Section */
.header-contact {
    background-color: #766FB3;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    padding: 10px 0;
    font-family: 'Jost', sans-serif;
}

.header-contact span,
.header-contact a {
    color: white;
    text-decoration: none;
    white-space: nowrap; /* Prevent breaking into multiple lines */
}

.header-contact img {
    width: 20px;
    height: 20px;
    vertical-align: middle; /* Align icons with text */
}

/* Header Main Section */
.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: white; /* Change background to white */
    color: #766FB3; /* Set text color to match the theme */
    border-bottom: 1px solid #ddd; /* Optional: Add a subtle border for separation */
}

.logo img {
    max-height: 100px; /* Increase the height of the logo */
    width: auto; /* Maintain aspect ratio */
}

/* Navigation Menu */
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    position: relative;
}

nav ul li {
    position: relative;
}

nav ul li a {
    color: #766FB3; /* Primary color for menu links */
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px;
    display: inline-block;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #FF8514; /* Highlight color on hover */
}

/* Submenu */
nav ul li.has-submenu .submenu {
    display: none; /* Hide submenu by default */
    position: absolute;
    top: 100%; /* Position below the parent menu item */
    left: 0;
    background-color: white; /* Submenu background color */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    border-radius: 5px; /* Rounded corners */
    z-index: 10;
    list-style: none;
    padding: 10px 0;
    min-width: 200px; /* Set a minimum width for the submenu */
}

nav ul li.has-submenu:hover .submenu,
nav ul li.has-submenu:focus-within .submenu,
nav ul li.has-submenu .submenu:hover {
    display: block;
}

nav ul li.has-submenu .submenu li {
    margin: 0;
}

nav ul li.has-submenu .submenu li a {
    color: #333; /* Dark text for submenu links */
    padding: 10px 15px;
    display: block;
    text-decoration: none;
    font-weight: normal;
    transition: background-color 0.3s ease, color 0.3s ease;
}

nav ul li.has-submenu .submenu li a:hover {
    background-color: #766FB3; /* Highlight background on hover */
    color: white; /* White text on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-main {
        flex-direction: column;
        align-items: center;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .slide img {
        max-height: 300px; /* Reduce height for smaller screens */
    }

    .hero {
        height: 300px; /* Reduce height for smaller screens */
    }

    .slider {
        height: 100%;
    }

    .slide {
        height: 100%;
    }

    .slide img {
        height: 100%;
        object-fit: contain; /* Ensure the image fits properly on smaller screens */
    }
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

.footer-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    font-size: 14px;
}

.footer-contact a {
    color: white;
    text-decoration: none;
}

.footer-contact img {
    width: 20px;
    height: 20px;
}

/* Footer Section */
.footer {
    background-color: #766FB3; /* Footer background color */
    color: white; /* White text for contrast */
    padding: 50px 20px;
    text-align: left;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto; /* Center the content */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive grid */
    gap: 20px; /* Space between rows */
}

.footer-row h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #FF8514; /* Gold color for headings */
}

.footer-row p,
.footer-row ul {
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

.footer-row ul {
    list-style: none;
    padding: 0;
}

.footer-row ul li {
    margin-bottom: 10px;
}

.footer-row ul li a,
.footer-row p a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-row ul li a:hover,
.footer-row p a:hover {
    color: #FF8514; /* Gold color on hover */
}

.footer-row p i,
.footer-row ul li i {
    margin-right: 10px;
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form input {
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    width: 100%;
}

.newsletter-form button {
    padding: 10px;
    background-color: #FF8514; /* Gold button color */
    color: #333; /* Dark text for contrast */
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #FF8514; /* Darker gold on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr; /* Stack rows vertically on smaller screens */
    }
}

/* Hero Section */
.hero {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 500px; /* Adjust the height as needed */
}

.carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-images {
    display: flex;
    width: 300%; /* 3 slides (100% for each slide) */
    animation: slide 24s linear infinite; /* Continuous sliding with equal hold time */
    height: 100%;
    margin: 0; /* Remove any default margin */
    padding: 0; /* Remove any default padding */
}

.carousel-images img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the image fills the container without gaps */
    display: block;
    margin: 0; /* Remove any default margin */
    padding: 0; /* Remove any default padding */
}

/* Carousel Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    z-index: 10;
    font-size: 18px;
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.carousel-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Slider Animation */
@keyframes slide {
    0% { transform: translateX(0); } /* First image */
    33.33% { transform: translateX(0); } /* Hold the first image */
    41.66% { transform: translateX(-100%); } /* Transition to second image */
    74.99% { transform: translateX(-100%); } /* Hold the second image */
    83.33% { transform: translateX(-200%); } /* Transition to third image */
    100% { transform: translateX(-200%); } /* Hold the third image */
}

/* Hero Section */
.hero-container {
    width: 100%;
    height: 100vh; /* Make the hero section take the full viewport height */
    overflow: hidden;
    position: relative;
    background-color: #766FB3; /* Fallback background color */
}

.hero-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the container without distortion */
    display: block;
}

/* About Us Section */
.about-us {
    padding: 50px 20px;
    background-color: #f9f9f9; /* Light background for contrast */
    color: #333; /* Dark text for readability */
}

.about-container {
    display: flex;
    flex-wrap: wrap; /* Ensure responsiveness */
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto; /* Center the content */
    gap: 20px;
}

.about-text {
    flex: 1;
    max-width: 600px;
}

.about-text h2 {
    font-size: 36px; /* Increased font size for the heading */
    color: #766FB3; /* Primary color for the heading */
    margin-bottom: 20px;
}

.about-text p {
    font-size: 18px; /* Increased font size for the description */
    line-height: 1.8; /* Adjusted line height for better readability */
    color: #555; /* Slightly lighter text for readability */
}

.about-image {
    flex: 1;
    max-width: 600px;
    text-align: center;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px; /* Optional: Add rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow */
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column; /* Stack text and image vertically */
        text-align: center;
    }

    .about-text {
        max-width: 100%;
    }

    .about-image {
        max-width: 100%;
    }

    .about-text h2 {
        font-size: 28px; /* Adjust heading size for smaller screens */
    }

    .about-text p {
        font-size: 16px; /* Adjust description size for smaller screens */
    }
}

/* Our Purpose Section */
.our-purpose {
    background-color: #766FB3; /* Purple background */
    color: white; /* White text for contrast */
    padding: 50px 20px;
    text-align: center;
}

.purpose-container {
    display: flex;
    flex-wrap: wrap; /* Ensure responsiveness */
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto; /* Center the content */
}

.purpose-block {
    flex: 1;
    max-width: 300px;
    background-color: #fff; /* White background for blocks */
    color: #333; /* Dark text for readability */
    padding: 20px;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    text-align: center;
}

.purpose-block i {
    font-size: 50px; /* Icon size */
    color: #FF8514; /* Updated icon color */
    margin-bottom: 10px; /* Reduced space below the icon */
}

.purpose-block h3 {
    font-size: 36px; /* Match the font size of the About Us heading */
    color: #FF8514; /* Updated heading color */
    margin-top: 5px; /* Reduced space above the heading */
    margin-bottom: 20px;
}

.purpose-block p {
    font-size: 18px; /* Match the font size of the About Us description */
    line-height: 1.8; /* Adjusted line height for better readability */
    color: #555; /* Slightly lighter text for readability */
}

/* Responsive Design */
@media (max-width: 768px) {
    .purpose-container {
        flex-direction: column; /* Stack blocks vertically */
        align-items: center;
    }

    .purpose-block {
        max-width: 100%;
    }

    .purpose-block h3 {
        font-size: 28px; /* Match the responsive heading size of About Us */
    }

    .purpose-block p {
        font-size: 16px; /* Match the responsive description size of About Us */
    }
}

/* Benefits Section */
.benefits {
    background-color: #f9f9f9; /* Light background for contrast */
    color: #333; /* Dark text for readability */
    padding: 50px 20px;
    text-align: center;
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns layout */
    gap: 20px; /* Space between blocks */
    max-width: 1200px;
    margin: 0 auto; /* Center the content */
}

.benefits h2 {
    font-size: 36px; /* Match the font size of other section headings */
    color: #766FB3; /* Updated color for the section heading */
    text-align: center;
    margin-bottom: 30px; /* Add spacing below the heading */
}

.benefit-block {
    background-color: #fff; /* White background for blocks */
    color: #333; /* Dark text for readability */
    padding: 20px;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    text-align: center;
}

.benefit-block i {
    font-size: 50px; /* Icon size */
    color: #766FB3; /* Updated color for icons */
    margin-bottom: 15px;
}

.benefit-block h3 {
    font-size: 28px; /* Slightly smaller font size for block headings */
    color: #766FB3; /* Updated color for block headings */
    margin-top: 10px;
    margin-bottom: 15px;
}

.benefit-block p {
    font-size: 18px; /* Match the font size of the About Us description */
    line-height: 1.8; /* Adjusted line height for better readability */
    color: #555; /* Slightly lighter text for readability */
}

/* Responsive Design */
@media (max-width: 768px) {
    .benefits-container {
        grid-template-columns: 1fr; /* Stack blocks vertically on smaller screens */
    }

    .benefit-block h3 {
        font-size: 28px; /* Adjust heading size for smaller screens */
    }

    .benefit-block p {
        font-size: 16px; /* Adjust description size for smaller screens */
    }
}

/* Rental Benefits Section */
.rental-benefits {
    background-color: #766FB3; /* Purple background */
    padding: 50px 20px;
    color: white; /* White text for contrast */
}

.rental-benefits-container {
    display: flex;
    flex-wrap: nowrap; /* Prevent wrapping */
    align-items: center; /* Center-align the image block */
    justify-content: space-between; /* Space between the blocks */
    max-width: 1200px;
    margin: 0 auto; /* Center the content */
    gap: 20px;
}

/* Left Block: Image */
.rental-benefits-image {
    flex: 1; /* Adjust the size of the image block */
    max-width: 40%; /* Reduce the width of the image block */
    text-align: center;
    display: flex;
    justify-content: center; /* Center the image horizontally */
    align-items: center; /* Center the image vertically */
}

.rental-benefits-image img {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Right Block: Text */
.rental-benefits-text {
    flex: 1.7; /* Slightly increase the size of the text block */
    max-width: 65%; /* Adjust the width of the text block */
    background-color: #766FB3; /* Match the section's background color */
    padding: 30px; /* Add more padding for better spacing */
    border-radius: 10px; /* Rounded corners */
    box-shadow: none; /* Explicitly remove the shadow */
    color: white; /* Ensure text is readable */
}

.rental-benefits-text h2 {
    font-size: 36px;
    color: white; /* White heading color */
    margin-bottom: 20px;
    text-align: left;
}

.rental-benefits-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rental-benefits-text ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: white; /* White text for readability */
    display: flex;
    align-items: center; /* Align items vertically */
    gap: 10px;
    white-space: nowrap; /* Prevent text from wrapping */
    overflow-x: auto; /* Allow horizontal scrolling if the text overflows */
    text-overflow: unset; /* Ensure the full sentence is visible */
}

/* Responsive Design */
@media (max-width: 768px) {
    .rental-benefits-container {
        flex-wrap: wrap; /* Allow wrapping on smaller screens */
        flex-direction: column; /* Stack blocks vertically */
    }

    .rental-benefits-image,
    .rental-benefits-text {
        max-width: 100%;
    }
}

/* No Vacancy Section */
.no-vacancy {
    padding: 50px 20px;
    background-color: #f9f9f9; /* Light background for contrast */
    text-align: center;
}

.no-vacancy-container {
    max-width: 800px;
    margin: 0 auto; /* Center the content */
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.no-vacancy h2 {
    font-size: 32px;
    color: #766FB3; /* Primary color for the heading */
    margin-bottom: 20px;
}

.no-vacancy p {
    font-size: 16px;
    line-height: 1.8;
    color: #333; /* Darker text for readability */
    margin-bottom: 20px;
}

.no-vacancy a {
    color: #FF8514; /* Highlighted link color */
    text-decoration: none;
    font-weight: bold;
}

.no-vacancy a:hover {
    text-decoration: underline;
}

.no-vacancy-image {
    margin-top: 20px;
}

.no-vacancy-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Desktop Rental Section */
.desktop-rental {
    padding: 50px 20px;
    background-color: #f9f9f9; /* Light background for contrast */
}

.desktop-rental-container {
    max-width: 1200px;
    margin: 0 auto; /* Center the content */
    display: flex;
    flex-wrap: wrap; /* Ensure responsiveness */
    gap: 20px; /* Space between blocks */
    align-items: center; /* Vertically align items */
}

.desktop-rental-text {
    flex: 1; /* Take up equal space */
    max-width: 600px; /* Limit the width of the text block */
}

.desktop-rental-text h2 {
    font-size: 32px;
    color: #766FB3; /* Primary color for the heading */
    margin-bottom: 15px;
}

.desktop-rental-text h3 {
    font-size: 24px;
    color: #FF8514; /* Orange color for subheading */
    margin-top: 20px;
    margin-bottom: 10px;
}

.desktop-rental-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555; /* Slightly lighter text for readability */
    margin-bottom: 20px;
}

.desktop-rental-text ul {
    list-style: none;
    padding: 0;
}

.desktop-rental-text ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #333; /* Darker text for list items */
    margin-bottom: 10px;
}

.desktop-rental-text ul li b {
    color: #766FB3; /* Highlighted text color */
}

.desktop-rental-image {
    flex: 1; /* Take up equal space */
    max-width: 600px; /* Limit the width of the image block */
    text-align: center; /* Center the image */
}

.desktop-rental-image img {
    max-width: 90%; /* Reduce the maximum width to 90% */
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px; /* Optional: Add rounded corners */
}

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-rental-container {
        flex-direction: column; /* Stack blocks vertically on smaller screens */
    }

    .desktop-rental-text,
    .desktop-rental-image {
        max-width: 100%; /* Allow full width for smaller screens */
    }
}

/* Why Rent Section */
.why-rent {
    background-color: white; /* White background for the section */
    padding: 50px 40px; /* Increase left and right padding */
    color: #333; /* Dark text for readability */
}

.why-rent-container {
    display: flex;
    flex-wrap: nowrap; /* Prevent wrapping */
    align-items: center; /* Center-align the image block */
    justify-content: space-between; /* Space between the blocks */
    max-width: 1200px;
    margin: 0 auto; /* Center the content */
    gap: 20px;
}

/* Left Block: Text */
.why-rent-text {
    flex: 2.2; /* Slightly increase the size of the text block */
    max-width: 65%; /* Adjust the width of the text block */
    background-color: white; /* Keep text block background white */
    padding: 30px;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    color: #333; /* Dark text for readability */
}

.why-rent-text h2 {
    font-size: 36px;
    color: #766FB3; /* Heading color */
    margin-bottom: 20px;
    text-align: left;
}

.why-rent-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-rent-text ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #333; /* Dark text for readability */
    display: flex;
    align-items: center; /* Align items vertically */
    gap: 10px;
    white-space: nowrap; /* Prevent text from wrapping */
    overflow: hidden; /* Prevent overflow */
    text-overflow: ellipsis; /* Add ellipsis if text overflows */
}

.why-rent-text ul li b {
    color: #766FB3; /* Highlighted text color */
}

/* Right Block: Image */
.why-rent-image {
    flex: 0.8; /* Reduce the size of the image block */
    max-width: 35%; /* Adjust the width of the image block */
    text-align: center;
    display: flex;
    justify-content: center; /* Center the image horizontally */
    align-items: center; /* Center the image vertically */
}

.why-rent-image img {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Responsive Design */
@media (max-width: 768px) {
    .why-rent-container {
        flex-wrap: wrap; /* Allow wrapping on smaller screens */
        flex-direction: column; /* Stack blocks vertically */
    }

    .why-rent-text,
    .why-rent-image {
        max-width: 100%;
    }
}

/* Clients Section */
.clients {
    background-color: #f9f9f9; /* Light background for contrast */
    padding: 50px 20px;
    text-align: center;
}

.clients-container {
    max-width: 1200px;
    margin: 0 auto; /* Center the content */
}

.clients h2 {
    font-size: 36px;
    color: #766FB3; /* Primary color for the heading */
    margin-bottom: 30px;
}

.clients-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); /* Responsive grid */
    gap: 20px; /* Space between logos */
    justify-items: center; /* Center-align logos */
    align-items: center;
}

.clients-logos img {
    max-width: 100px; /* Adjust logo size */
    height: auto; /* Maintain aspect ratio */
    filter: grayscale(100%); /* Optional: Make logos grayscale */
    transition: filter 0.3s ease; /* Smooth transition on hover */
}

.clients-logos img:hover {
    filter: grayscale(0%); /* Restore color on hover */
}

/* Google Review Section */
.google-reviews {
    background-color: #f9f9f9; /* Light background for contrast */
    padding: 50px 20px;
    text-align: center;
    color: #333; /* Dark text for readability */
}

.google-reviews-container {
    max-width: 1200px;
    margin: 0 auto; /* Center the content */
}

.google-reviews h2 {
    font-size: 36px;
    color: #766FB3; /* Primary color for the heading */
    margin-bottom: 30px;
}

.reviews {
    display: flex;
    flex-wrap: wrap; /* Ensure responsiveness */
    justify-content: center; /* Center-align the reviews */
    gap: 20px; /* Space between reviews */
}

.review {
    background-color: white; /* White background for reviews */
    padding: 20px;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    max-width: 300px; /* Limit the width of each review */
    text-align: left;
}

.review p {
    margin: 10px 0;
    font-size: 16px;
    line-height: 1.6;
}

.google-review-link {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #766FB3; /* Primary color for the button */
    color: white; /* White text for contrast */
    text-decoration: none;
    border-radius: 5px; /* Rounded corners */
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.google-review-link:hover {
    background-color: #5a5491; /* Darker shade on hover */
}

/* Google Review Button */
.google-review-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background-color: #766FB3; /* Primary color for the button */
    color: white; /* White text for contrast */
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px; /* Rounded corners */
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.google-review-button:hover {
    background-color: #5a5491; /* Darker shade on hover */
    transform: translateY(-2px); /* Slight lift effect on hover */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15); /* Enhanced shadow on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    .reviews {
        flex-direction: column; /* Stack reviews vertically on smaller screens */
        align-items: center;
    }

    .review {
        max-width: 100%; /* Allow reviews to take full width on smaller screens */
    }
}

/* FAQ Section */
.faq {
    padding: 50px 20px;
    background-color: #f9f9f9;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq h2 {
    font-size: 28px;
    color: #766FB3;
    margin-bottom: 20px;
    text-align: center;
}

.faq-item {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    font-size: 20px;
    color: #766FB3;
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* Best Deals Rental Laptops Section */
.best-deals {
    background-color: #f9f9f9; /* Light background for contrast */
    padding: 50px 20px;
    text-align: center;
    color: #333; /* Dark text for readability */
}

.best-deals-container {
    max-width: 1200px;
    margin: 0 auto; /* Center the content */
}

.best-deals h2 {
    font-size: 36px;
    color: #766FB3; /* Primary color for the heading */
    margin-bottom: 30px;
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive grid */
    gap: 20px; /* Space between blocks */
}

.deal-block {
    background-color: white; /* White background for blocks */
    padding: 20px;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    text-align: center;
}

.deal-block img {
    max-width: 100%; /* Ensure the image fits within the block */
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px; /* Optional: Add rounded corners to images */
    margin-bottom: 15px;
}

.deal-block p {
    font-size: 16px;
    line-height: 1.6;
    color: #555; /* Slightly lighter text for readability */
}

.deal-block b {
    color: #766FB3; /* Highlighted text color */
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .deals-grid {
        grid-template-columns: 1fr; /* Stack blocks vertically on smaller screens */
    }

    .deal-block p {
        font-size: 14px; /* Adjust text size for smaller screens */
    }
}

/* About Us Page */

/* Hero Section */
.about-hero {
    background-color: #766FB3; /* Purple background */
    color: white; /* White text for contrast */
    padding: 50px 20px;
    text-align: center;
}

.about-hero-container {
    max-width: 800px;
    margin: 0 auto; /* Center the content */
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 18px;
    line-height: 1.8;
}

/* Mission Section */
.about-mission {
    background-color: #f9f9f9; /* Light background for contrast */
    padding: 50px 20px;
    text-align: center;
}

.about-mission-container {
    max-width: 800px;
    margin: 0 auto;
}

.about-mission h2 {
    font-size: 36px;
    color: #766FB3; /* Purple heading color */
    margin-bottom: 20px;
}

.about-mission p {
    font-size: 18px;
    line-height: 1.8;
    color: #555; /* Slightly lighter text for readability */
}

/* Values Section */
.about-values {
    background-color: white; /* White background */
    padding: 50px 20px;
    text-align: center;
}

.about-values-container {
    max-width: 800px;
    margin: 0 auto;
}

.about-values h2 {
    font-size: 36px;
    color: #766FB3; /* Purple heading color */
    margin-bottom: 20px;
}

.about-values ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-values ul li {
    font-size: 18px;
    line-height: 1.8;
    color: #555; /* Slightly lighter text for readability */
    margin-bottom: 10px;
}

.about-values ul li b {
    color: #766FB3; /* Highlighted text color */
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 36px;
    }

    .about-hero p,
    .about-mission p,
    .about-values ul li {
        font-size: 16px;
    }

    .about-mission h2,
    .about-values h2 {
        font-size: 28px;
    }
}

/* What We Stand For Section */
.stand-for {
    background-color: #f9f9f9; /* Light background for contrast */
    padding: 50px 20px;
    text-align: center;
    color: #333; /* Dark text for readability */
}

.stand-for-container {
    max-width: 1200px;
    margin: 0 auto; /* Center the content */
}

.stand-for h2 {
    font-size: 36px;
    color: #766FB3; /* Primary color for the heading */
    margin-bottom: 10px;
}

.stand-for h3 {
    font-size: 24px;
    color: #555; /* Subheading color */
    margin-bottom: 30px;
}

.stand-for-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
    gap: 20px; /* Space between blocks */
}

.stand-for-block {
    background-color: white; /* White background for blocks */
    padding: 20px;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    text-align: left;
}

.stand-for-block h4 {
    font-size: 20px;
    color: #766FB3; /* Highlighted heading color */
    margin-bottom: 15px;
}

.stand-for-block p {
    font-size: 16px;
    line-height: 1.8;
    color: #555; /* Slightly lighter text for readability */
}

.stand-for-block p b {
    color: #766FB3; /* Highlighted text color for values */
}

/* Responsive Design */
@media (max-width: 768px) {
    .stand-for h2 {
        font-size: 28px;
    }

    .stand-for h3 {
        font-size: 20px;
    }

    .stand-for-block h4 {
        font-size: 18px;
    }

    .stand-for-block p {
        font-size: 14px;
    }
}

/* Our Core Values Section */
.core-values {
    background-color: #766FB3; /* Purple background */
    color: white; /* White text for contrast */
    padding: 50px 20px;
    text-align: center;
}

.core-values-container {
    max-width: 1200px;
    margin: 0 auto; /* Center the content */
}

.core-values h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #FF8514; /* Orange color for the heading */
}

.core-values-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: white; /* White text for the description */
}

.core-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns for both rows */
    gap: 20px; /* Space between blocks */
    justify-content: center; /* Center-align the grid */
    align-items: center; /* Vertically align items */
}

.core-value-block {
    background-color: #5a5491; /* Slightly darker purple for blocks */
    padding: 20px;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.core-value-block:hover {
    transform: translateY(-5px); /* Slight lift effect on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Enhanced shadow on hover */
}

.core-value-block i {
    font-size: 40px; /* Icon size */
    color: #FF8514; /* Orange color for icons */
    margin-bottom: 15px;
}

.core-value-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #FF8514; /* Orange color for headings */
}

.core-value-block p {
    font-size: 16px;
    line-height: 1.6;
    color: #ddd; /* Slightly lighter text for readability */
}

/* Responsive Design */
@media (max-width: 768px) {
    .core-values h2 {
        font-size: 28px;
    }

    .core-values-description {
        font-size: 16px;
    }

    .core-value-block h3 {
        font-size: 18px;
    }

    .core-value-block p {
        font-size: 14px;
    }
}

/* Counters Section */
.counters {
    background-color: #f9f9f9; /* Light background for contrast */
    padding: 50px 20px;
    text-align: center;
    color: #333; /* Dark text for readability */
}

.counters-container {
    max-width: 1200px;
    margin: 0 auto; /* Center the content */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive grid */
    gap: 20px; /* Space between blocks */
}

.counter-block {
    background-color: white; /* White background for blocks */
    padding: 20px;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.counter-block:hover {
    transform: translateY(-5px); /* Slight lift effect on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}

.counter-block h2 {
    font-size: 36px;
    color: #FF8514; /* Orange color for numbers */
    margin-bottom: 10px;
}

.counter-block p {
    font-size: 18px;
    color: #555; /* Slightly lighter text for readability */
}

/* Responsive Design */
@media (max-width: 768px) {
    .counters-container {
        grid-template-columns: 1fr; /* Stack blocks vertically on smaller screens */
    }

    .counter-block h2 {
        font-size: 28px; /* Adjust font size for smaller screens */
    }

    .counter-block p {
        font-size: 16px; /* Adjust text size for smaller screens */
    }
}

/* Meet Our Management Section */
.management {
    background-color: #f9f9f9; /* Light background for contrast */
    padding: 50px 20px;
    text-align: center;
    color: #333; /* Dark text for readability */
}

.management-container {
    max-width: 1200px;
    margin: 0 auto; /* Center the content */
}

.management h2 {
    font-size: 36px;
    color: #766FB3; /* Primary color for the heading */
    margin-bottom: 20px;
}

.management-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #555; /* Slightly lighter text for readability */
}

.management-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
    gap: 20px; /* Space between blocks */
}

.management-block {
    background-color: white; /* White background for blocks */
    padding: 20px;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.management-block:hover {
    transform: translateY(-5px); /* Slight lift effect on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}

.management-block img {
    max-width: 150px; /* Set a maximum width for the image */
    height: auto; /* Maintain aspect ratio */
    border-radius: 50%; /* Circular profile image */
    margin-bottom: 15px;
}

.management-block h3 {
    font-size: 20px;
    color: #766FB3; /* Primary color for names */
    margin-bottom: 5px;
}

.management-block h4 {
    font-size: 16px;
    color: #FF8514; /* Orange color for titles */
    margin-bottom: 15px;
}

.management-block p {
    font-size: 16px;
    line-height: 1.6;
    color: #555; /* Slightly lighter text for readability */
}

/* Responsive Design */
@media (max-width: 768px) {
    .management h2 {
        font-size: 28px;
    }

    .management-description {
        font-size: 16px;
    }

    .management-block h3 {
        font-size: 18px;
    }

    .management-block h4 {
        font-size: 14px;
    }

    .management-block p {
        font-size: 14px;
    }
}

/* LinkedIn Link */
.linkedin-link {
    display: inline-block;
    margin-top: 15px;
    font-size: 16px;
    color: #0077b5; /* LinkedIn blue color */
    text-decoration: none;
    transition: color 0.3s ease;
}

.linkedin-link i {
    margin-right: 8px; /* Add space between the icon and text */
    font-size: 18px; /* Adjust icon size */
}

.linkedin-link:hover {
    color: #005582; /* Darker LinkedIn blue on hover */
}

/* Our Brand Partners Section */
.brand-partners {
    padding: 50px 20px;
    background-color: #f9f9f9; /* Light background for contrast */
    text-align: center;
}

.brand-partners-container {
    max-width: 1200px;
    margin: 0 auto; /* Center the content */
}

.brand-partners h2 {
    font-size: 32px;
    color: #766FB3; /* Primary color for the heading */
    margin-bottom: 15px;
}

.brand-partners p {
    font-size: 16px;
    color: #555; /* Slightly lighter text for readability */
    margin-bottom: 30px;
}

.brand-logos {
    display: flex;
    flex-wrap: wrap; /* Ensure responsiveness */
    justify-content: center; /* Center-align the logos */
    gap: 20px; /* Space between logos */
}

.brand-logos img {
    max-width: 150px; /* Limit the size of each logo */
    height: auto; /* Maintain aspect ratio */
    transition: transform 0.3s ease; /* Add a hover effect */
}

.brand-logos img:hover {
    transform: scale(1.1); /* Slight zoom on hover */
}

/* Contact Section */
.contact-section {
    display: flex;
    flex-wrap: wrap; /* Ensure responsiveness */
    justify-content: space-between;
    padding: 50px 20px;
    background-color: #f9f9f9;
    gap: 20px;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto; /* Center the content */
}

.contact-info {
    flex: 1;
    max-width: 48%; /* Take up 48% of the width */
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
    font-size: 28px;
    color: #766FB3;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}

.contact-info a {
    color: #FF8514;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    font-size: 20px;
    color: #766FB3;
    margin-right: 10px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #FF8514;
}

.contact-form {
    flex: 1;
    max-width: 48%; /* Take up 48% of the width */
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    font-size: 28px;
    color: #766FB3;
    margin-bottom: 20px;
}

.contact-form form label {
    font-size: 16px;
    color: #333;
    display: block;
    margin-bottom: 5px;
}

.contact-form form input,
.contact-form form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.contact-form form button {
    background-color: #766FB3;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.contact-form form button:hover {
    background-color: #5a4a91;
}

/* Map Section */
.map-section {
    padding: 50px 20px;
    text-align: center;
}

.map-section h2 {
    font-size: 28px;
    color: #766FB3;
    margin-bottom: 20px;
}

/* Blog Section */
.blog {
    background-color: #f9f9f9; /* Light background for contrast */
    padding: 50px 20px;
    text-align: center;
    color: #333; /* Dark text for readability */
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto; /* Center the content */
}

.blog h2 {
    font-size: 36px;
    color: #766FB3; /* Primary color for the heading */
    margin-bottom: 30px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive grid */
    gap: 20px; /* Space between blog posts */
}

.blog-post {
    background-color: white; /* White background for blog posts */
    padding: 20px;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px); /* Slight lift effect on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}

.blog-post img {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px; /* Rounded corners for images */
    margin-bottom: 15px;
}

.blog-post h3 {
    font-size: 20px;
    color: #766FB3; /* Primary color for blog titles */
    margin-bottom: 10px;
}

.blog-post p {
    font-size: 16px;
    line-height: 1.6;
    color: #555; /* Slightly lighter text for readability */
    margin-bottom: 15px;
}

.blog-post .read-more {
    display: inline-block;
    color: #FF8514; /* Highlighted link color */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.blog-post .read-more:hover {
    color: #766FB3; /* Change color on hover */
}

/* Blog Content with Sidebar */
.blog-content {
    display: flex;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
}

.blog-main {
    flex: 3;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: #000; /* Change blog content text color to black */
}

.blog-main h1,
.blog-main h2,
.blog-main p {
    color: #000; /* Ensure all headings and paragraphs are black */
}

.blog-sidebar {
    flex: 1;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.blog-sidebar h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #766FB3;
}

.blog-sidebar ul {
    list-style: none;
    padding: 0;
}

.blog-sidebar ul li {
    margin-bottom: 10px;
}

.blog-sidebar ul li a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

.blog-sidebar ul li a:hover {
    color: #766FB3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr; /* Stack blog posts vertically on smaller screens */
    }

    .blog-post h3 {
        font-size: 18px; /* Adjust title size for smaller screens */
    }

    .blog-post p {
        font-size: 14px; /* Adjust text size for smaller screens */
    }
}

/* General Mobile Styles */
@media (max-width: 768px) {
    body {
        font-size: 14px; /* Adjust font size for smaller screens */
    }

    .header-contact {
        flex-wrap: wrap; /* Allow wrapping for contact details */
        text-align: center;
        padding: 10px;
    }

    .header-contact span,
    .header-contact a {
        display: block; /* Stack contact details vertically */
        margin-bottom: 5px;
    }

    .header-main {
        flex-direction: column; /* Stack logo and navigation vertically */
        align-items: center;
    }

    .header-main .logo img {
        max-width: 150px; /* Adjust logo size for smaller screens */
    }

    nav ul {
        flex-direction: column; /* Stack navigation links vertically */
        text-align: center;
    }

    nav ul li {
        margin-bottom: 10px;
    }

    .hero-container img {
        width: 100%; /* Ensure hero image is responsive */
        height: auto;
    }

    .about-container,
    .purpose-container,
    .benefits-container,
    .counters-container,
    .rental-benefits-container,
    .why-rent-container,
    .clients-container,
    .google-reviews-container,
    .faq-container,
    .blog-container {
        padding: 20px; /* Add padding for better spacing */
    }

    .about-container,
    .purpose-container,
    .benefits-container,
    .rental-benefits-container,
    .why-rent-container {
        flex-direction: column; /* Stack content vertically */
    }

    .about-image img,
    .rental-benefits-image img,
    .why-rent-image img {
        width: 100%; /* Make images responsive */
        height: auto;
    }

    .blog-grid {
        grid-template-columns: 1fr; /* Stack blog posts vertically */
    }

    .footer-container {
        flex-direction: column; /* Stack footer sections vertically */
        text-align: center;
    }

    .footer-row {
        margin-bottom: 20px;
    }

    .footer-row ul {
        padding: 0;
        list-style: none;
    }

    .footer-row ul li {
        margin-bottom: 10px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    text-decoration: none;
    transition: background 0.2s;
}
.whatsapp-float:hover {
    background-color: #128c7e;
}

/* Floating Contact Buttons */
.quick-contact-buttons {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}
.whatsapp-float, .call-float, .enquiry-float {
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s;
}
.call-float {
    background: #007bff;
}
.enquiry-float {
    background: #ff9800;
}
.whatsapp-float:hover { background: #128c7e; }
.call-float:hover { background: #0056b3; }
.enquiry-float:hover { background: #e65100; }

/* Enquiry Modal */
.enquiry-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0; top: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
}
.enquiry-modal-content {
    background: #fff;
    margin: 8% auto;
    padding: 25px 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 350px;
    position: relative;
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.enquiry-close {
    position: absolute;
    top: 10px; right: 15px;
    font-size: 1.5rem;
    color: #888;
    cursor: pointer;
}
.enquiry-form input, .enquiry-form textarea {
    width: 100%;
    margin-bottom: 10px;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}
.enquiry-form textarea { resize: vertical; min-height: 60px; }
.enquiry-form button {
    width: 100%;
    background: #25d366;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
}
.enquiry-form button:hover { background: #128c7e; }

/* Fixed Vertical Contact Section */
.fixed-contact-section {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 18px;
    z-index: 9999;
    background: rgba(255,255,255,0.0); /* transparent background */
    padding: 0 8px;
}

.contact-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    margin: 0 auto;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    outline: none;
}
.contact-icon.whatsapp { background: #25d366; }
.contact-icon.call { background: #766FB3; }      /* Main site purple */
.contact-icon.enquiry { background: #FF8514; }   /* Accent orange */
.contact-icon.whatsapp:hover { background: #128c7e; transform: scale(1.08);}
.contact-icon.call:hover { background: #5a5491; transform: scale(1.08);}    /* Slightly darker purple */
.contact-icon.enquiry:hover { background: #e65100; transform: scale(1.08);}

/* Responsive: hide on very small screens */
@media (max-width: 600px) {
    .fixed-contact-section {
        top: unset;
        bottom: 20px;
        right: 10px;
        transform: none;
        flex-direction: row;
        gap: 10px;
        background: none;
        padding: 0;
    }
    .contact-icon {
        width: 44px;
        height: 44px;
        font-size: 1.4rem;
    }
}

/* Our Journey Section */
.our-journey {
    background-color: #fff; /* White background for contrast */
    color: #333; /* Dark text for readability */
    padding: 50px 20px;
}

.journey-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.our-journey h2 {
    font-size: 36px;
    color: #766FB3;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

.journey-block {
    background: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(118, 111, 179, 0.07);
    padding: 28px 32px;
    margin-bottom: 0;
    transition: box-shadow 0.2s;
}

.journey-block:hover {
    box-shadow: 0 6px 18px rgba(118, 111, 179, 0.13);
}

.journey-block h3 {
    font-size: 24px;
    color: #FF8514;
    margin-bottom: 16px;
    font-weight: 600;
}

.journey-block ul {
    list-style: disc inside;
    padding-left: 0;
    margin: 0;
}

.journey-block ul li {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 8px;
}


/* Case Study Section Styles */
.case-study-section {
    background: #fff;
    color: #333;
    padding: 50px 0;
}

.case-study-section .container {
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(118, 111, 179, 0.07);
    padding: 40px 32px;
}

.case-study-section h1 {
    text-align: center;
    color: #766FB3;
    font-size: 36px;
    margin-bottom: 40px;
    font-weight: bold;
}

.case-study {
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e0e0e0;
    transition: box-shadow 0.2s;
}
.case-study:last-child {
    border-bottom: none;
}
.case-study:hover {
    box-shadow: 0 6px 18px rgba(118, 111, 179, 0.13);
}
.case-study h2 {
    color: #FF8514;
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 18px;
    font-weight: 600;
}
.case-study .emoji {
    font-size: 1.3em;
    margin-right: 6px;
}
.section-title {
    font-weight: bold;
    color: #766FB3;
    margin-top: 18px;
    display: inline-block;
}
.case-study ul {
    margin: 8px 0 16px 24px;
    padding-left: 0;
    list-style: disc inside;
}
.case-study ul li {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 8px;
}
.results {
    background: #e8f5e9;
    padding: 12px 18px;
    border-radius: 6px;
    margin-top: 10px;
}
.results ul {
    margin: 8px 0 0 24px;
}
.results ul li {
    color: #388e3c;
    font-weight: 500;
}

@media (max-width: 900px) {
    .case-study-section .container {
        padding: 20px 8px;
    }
    .case-study-section h1 {
        font-size: 28px;
    }
    .case-study h2 {
        font-size: 22px;
    }
    .case-study ul li {
        font-size: 16px;
    }
}