/* General body styles */
body {
    margin: 0;
    font-family: 'Lexend', sans-serif; /* Replace with your font */
}

html, body {
    max-width: 100% !important;
    overflow-x: hidden !important;
    }
/* banner */
/* Banner styling */

#banner-main{
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 15px;
    background-color: #050f17;

}
.banner1 {
    height: 400px; /* Ensure height is set */
    background-size: cover; /* Cover the entire area */
    background-position: center; /* Center the image */
    display: flex; /* Flex for centering content */
    align-items: center; /* Vertically center content */
    justify-content: center; /* Horizontally center content */
    color: #FFFFFF; /* Set text color to pure white */
    background-image: url('../images/bannerabout.jpg');
    background-color: #000; /* Fallback color if image fails to load */
    position: relative; /* Position relative for overlay */
}

/* Overlay for better text visibility */
.banner1::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay for better contrast */
    z-index: 1;
}

.banner-content {
    position: relative;
    text-align: center;
    z-index: 2; /* Ensures content is above the overlay */
}

/* Heading styling */
.banner-bread {
    color: #fff; /* Keep breadcrumb links white */
}

.banner h2 {
    color: #FFFFFF; /* Set heading color to pure white */
    font-family: "Italiana", Sans-serif;
    font-size: 80px;
    font-weight: 400;
    line-height: 1.3em;
}

/* Breadcrumb styling */
.banner p {
    font-size: 14px; /* Set font size to 14px */
    font-family: 'Lexend', sans-serif; /* Lexend font for breadcrumbs */
    margin: 10px 0 0; /* Space below the heading */
}

/* Links inside the breadcrumbs */
.banner p a {
    color: #FFFFFF; /* Set breadcrumb link color to pure white */
    text-decoration: none;
    font-family: 'Lexend', sans-serif;
}

/* Hover effect for links */
.banner p a:hover {
    text-decoration: underline; /* Underline on hover */
    color: #A8894D; /* Change color on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner {
        height: 300px; /* Reduce height for smaller screens */
    }

    .banner h1 {
        font-size: 36px; /* Smaller font for mobile */
    }

    .banner p {
        font-size: 12px; /* Adjust breadcrumb text size on smaller screens */
    }
}


/* end banner */

/* call to action */

/* Main CTA Section */
#cta-main {
    padding: 120px 30px 80px;
    background-color: #050f17;
    width: 100%;
    overflow: hidden;
}

/* Background wrapper */
.cta-background {
    position: relative;
    max-width: 100%;
    max-height: 700px;
}

/* Background Image */
.cta-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Hero Section */
.cta-hero {
    position: relative;
    z-index: 2;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    padding: 0 20px;
}

/* Overlay Content */
.cta-overlay {
    background-color: rgba(0, 0, 0, 0.6);
    text-align: center;
    padding: 50px;
    border-radius: 10px;
}

/* Title */
.cta-title {
    color: #E8E8E8;
    font-family: "Italiana", sans-serif;
    font-size: 50px;
    font-weight: 400;
    line-height: 1.3em;
    margin-bottom: 20px;
}

/* Subtitle */
.cta-subtitle {
    color: #e8e8e8;
    font-size: 16px;
    font-family: "Lexend", sans-serif;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Button */
.cta-button {
    background-color: #A8894d;
    color: #050f17;
    padding: 15px 40px;
    font-size: 16px;
    font-family: 'Lexend', sans-serif;
    border-radius: 0;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #ffffff;
    color: #050f17;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .cta-title {
        font-size: 42px;
    }
    .cta-subtitle {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .cta-hero {
        height: auto;
        padding: 60px 20px;
    }
    .cta-title {
        font-size: 32px;
    }
    .cta-subtitle {
        font-size: 14px;
    }
    .cta-overlay {
        padding: 30px 20px;
    }
    .cta-button {
        padding: 12px 30px;
    }
}

@media (max-width: 480px) {
    .cta-title {
        font-size: 28px;
    }
    .cta-subtitle {
        font-size: 13px;
    }
    .cta-button {
        padding: 10px 25px;
    }
}
action */

 /* get in touch */
 .contact-section {
    padding: 115px 0;
    background-color: #050F17;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.form-container {
    flex: 1;
    padding: 40px;
    border: 1px solid #6c6c6c;
    max-width: 550px;
}

.input-group {
    display: flex;
    gap: 20px; /* Adjust the gap between first and last name fields */
    margin-bottom: 20px;
    
}

.email-group{
    margin-bottom: 20px;
}

.input-group input {
    width: 47%; /* Make both input fields take up equal space */
    font-size: 14px;
    font-family: 'Lexend', sans-serif;
    font-weight: 300;
    line-height: 1.7em;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    color: #fff;
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
}

input::placeholder, textarea::placeholder {
    color: #fff;
}

textarea {
    height: 120px; /* Adjust the height of the message box */
    resize: vertical; /* Make the textarea resizable */
}

button {
    padding: 15px 30px; /* Increase the padding for a larger button */
    background-color: #a38755;
    color: #050F17;
    border: none;
    cursor: pointer;
    margin-top: 20px; /* Adjust margin for space between form elements */
    font-family: 'Lexend', sans-serif;
}

button:hover {
    background-color: #fff;
}

.contact-info {
    flex: 1;
    padding: 20px;
    max-width: 555px;
}

.contact-info h2 {
    font-size: 50px;
    font-weight: 400;
    line-height: 1.3em;
    margin-bottom: 20px;
    color: #e8e8e8;
    font-family: "Italiana", Sans-serif;
}

.contact-info p {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.7em;
    font-weight: 300;
    font-family: "Lexend", Sans-serif;
    text-align: left;
}

.contact-info ul {
    list-style: none;
    padding-left: 0;

}

.contact-info ul li {
    color: #e8e8e8  ;
    margin-bottom: 10px;
    font-size: 14px;
    font-family: "Lexend", Sans-serif;
    font-weight: 300;
    line-height: 1.7em;
}

.contact-info ul li i {
    margin-right: 10px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .form-container, .contact-info {
        width: 100%;
    }

    .input-group {
        flex-direction: column; /* Make first and last name stack on top of each other on mobile */
    }

    .contact-info h2 {
        font-size: 28px;
    }
}

/* post guide section  */

/* General Styling */
.post-guide-section {
    background-color: #050f17;
    color: white;
    padding: 40px 20px;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 100px;
}

.post-guide-header {
    max-width: 800px;
    margin: 0 auto 40px;
}

.post-guide-header h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.post-guide-header p {
    font-size: 16px;
    line-height: 1.5;
}

.post-guide-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.post-step {
    background-color: #050f17;
    color: #ffffff;
    /* border-radius: 10px; */
    padding: 20px;
    width: 350px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #A8894D;
}

.post-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.post-step img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.post-step h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color:#A8894D;
}

.post-step p {
    font-size: 14px;
    line-height: 1.5;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .post-guide-header h2 {
        font-size: 24px;
    }

    .post-guide-header p {
        font-size: 14px;
    }

    .post-guide-grid {
        flex-direction: column;
        align-items: center;
    }

    .post-step {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .post-guide-header h2 {
        font-size: 20px;
    }

    .post-guide-header p {
        font-size: 13px;
    }

    .post-step h3 {
        font-size: 16px;
    }

    .post-step p {
        font-size: 12px;
    }
}


/* about section */
/* Center the container */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
}

/* Center each section */
.business-loan {
    display: flex;
    align-items: center;
    justify-content: center; /* This will center the content inside each section */
    max-width: 100%;
    background-color: #050f17;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    margin: 20px 0;
    padding: 50px 100px;
    padding-top: 100px;
}

/* Keep image container and content aligned */
.image-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

.content {
    flex: 1;
    padding: 20px;
}

/* Image styling */
.image-container img {
    width: 80%;
    height: 100%;
    object-fit: cover;
}

/* Content styling */
.content h2 {
    font-size: 40px;
    color: #A8894D;
    margin: 0 0 10px;
}

.content p {
    font-size: 14px;
    color: #ffffff;
    line-height: 1.6em;
    margin-bottom: 20px;
}

/* Button styling */
.get-quote-button {
    font-family: "Lexend", Sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    background-color: #A8894d;
    color: #050f17;
    padding: 17px 35px;
    font-size: 14px;
    border: none;
    transition: background-color 0.3s ease;
}

.get-quote-button:hover {
    background-color: #fff;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .business-loan {
        flex-direction: column;
        padding: 30px 50px;
        text-align: center;
    }

    .image-container {
        width: 100%;
        height: 300px;
        padding: 20px;
    }

    .content h2 {
        font-size: 30px;
    }

    .content p {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .business-loan {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }

    .image-container {
        width: 100%;
        height: 250px;
    }

    .content h2 {
        font-size: 24px;
    }

    .content p {
        font-size: 13px;
    }
}



/* enquire button */


/* Modal and form container styling */
#enquiryModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

#enquiryModal .form-container {
    position: relative;
    max-width: 500px;
    margin: 40px auto;
    background: #5c5c5c;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

#enquiryModal h3 {
    margin-bottom: 15px;
    font-size: 24px;
    color: #333333;
    text-align: center; /* Centering the h3 */
}

/* Input fields styling with black placeholder */
#enquiryForm input[type="text"],
#enquiryForm input[type="email"],
#enquiryForm input[type="tel"],
#enquiryForm textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #000000;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
    transition: border-color 0.3s ease;
}

/* Placeholder color styling */
#enquiryForm input::placeholder,
#enquiryForm textarea::placeholder {
    color: #000000; /* Black placeholder text */
    opacity: 1; /* Ensures placeholder is fully opaque */
}

/* Focus effect on input fields */
#enquiryForm input[type="text"]:focus,
#enquiryForm input[type="email"]:focus,
#enquiryForm input[type="tel"]:focus,
#enquiryForm textarea:focus {
    border-color: #000000;
    outline: none;
}

/* Submit and close buttons styling */
#enquiryForm button[type="submit"],
#enquiryForm button#closeModal {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#enquiryForm button[type="submit"] {
    background-color: #A8894D;
    color: #ffffff;
    width: 100%;
}

#enquiryForm button[type="submit"]:hover {
    background-color: #050F17;
}

#enquiryForm button#closeModal {
    color: #333;
    margin-left: 10px;
}

#enquiryForm button#closeModal:hover {
    background-color: #999;
}










/* button */
/* Container for the button */
#enquireButtonContainer {
    position: fixed;
    top: 50%;
    right: -60px;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: center;
    z-index: 999;
}

/* Button styling */
#enquireButton {
    padding: 10px 20px;
    background-color: #A8894d;
    color: #000000;
    border: none;
    cursor: pointer;
    border-radius: 0px;
    font-weight: 100;
    font-family: Arial, sans-serif;
    transition: background-color 0.3s ease; /* Smooth transition for background color */
}

/* Hover effect */
#enquireButton:hover {
    background-color: #f5f5f5; /* Darker shade of the original color */
}

/* end enquire */



/* gallery */
/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background-color: #000;
    padding: 20px;
    text-align: center;
    /* border-radius: 10px; */
    overflow: hidden;
}

.main-image img {
    max-width: 100%;
    max-height: 70vh;
    /* border-radius: 10px; */
    transition: transform 0.3s ease;
}

.thumbnails {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.thumbnail-slider {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For IE and Edge */
}

.thumbnail-slider::-webkit-scrollbar {
    display: none; /* For Chrome, Safari, and Opera */
}

.thumbnail-slider img {
    width: 80px;
    height: 80px;
    /* border-radius: 5px; */
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.thumbnail-slider img:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.thumbnail-slider img.active {
    border: 2px solid #A8894D;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #A8894D;
    color: #FFF;
    font-size: 18px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    background: #fff;
    color: #A8894D;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-image img {
        max-height: 60vh;
    }

    .thumbnail-slider img {
        width: 60px;
        height: 60px;
    }
}


/* Gallery Section */
.gallery-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 250px;
    margin-top: 20px;
}

.gallery-container {
    display: flex;
    animation: slideGallery 15s linear infinite;
}

.gallery-item {
    flex-shrink: 0;
    width: 350px; /* Adjust width as needed */
    height: 100%;
    margin-right: 10px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* border-radius: 10px; */
}

.gallery-section h3{
    color: #A8894D;
    font-family: "Italiana", Sans-serif;
    font-size: 50px;
    font-weight: 400;
    line-height: 1.3em;
}

.gallery-section h2{
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

.gallery-section{
    text-align: center;
    margin-top: 10%;
}

/* Animation for Sliding */
@keyframes slideGallery {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Duplicate the images for infinite sliding */
.gallery-container:after {
    content: '';
    display: flex;
}

/* end gallery */



/* tetimonial */
/* Testimonials Section Styling */
.testimonials-section {
    background-color: #050F17;
    color: #FFFFFF;
    text-align: center;
    padding: 50px 20px;
    font-family: Arial, sans-serif;
    padding-top: 150px;
    overflow: hidden; /* Prevent overflow from sliding cards */
}

.testimonials-section h3 {
    color: #A8894D;
    font-family: "Italiana", Sans-serif;
    font-size: 50px;
    font-weight: 400;
    line-height: 1.3em;
}

.testimonials-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

.testimonials-slider {
    display: flex;
    justify-content: center;
    overflow: hidden; /* Hides extra cards */
    position: relative;
}

.testimonials-container {
    display: flex;
    gap: 0; /* No gap between cards */
    animation: slide 15s linear infinite; /* Continuous sliding */
    transition: transform 0.5s ease;
}

.testimonial {
    background-color: #1c1c1c;
    padding: 20px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    flex: 0 0 calc(50% - 10px); /* 2 cards visible in container */
    margin: 0 5px; /* Slight margin for cards */
}

.stars {
    color: #A8894D;
    font-size: 20px;
    margin-bottom: 15px;
}

.testimonial p {
    font-size: 16px;
    color: #CCCCCC;
    margin-bottom: 15px;
    text-align: center;
}

.testimonial h4 {
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 5px;
}

.title {
    font-size: 14px;
    color: #A8894D;
    font-weight: 500;
}

/* Animation Keyframes */
@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Stop sliding on hover */
.testimonials-container:hover {
    animation-play-state: paused;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .testimonial {
        flex: 0 0 calc(100% - 10px); /* Show 1 card on smaller screens */
    }

    .testimonials-container {
        animation: slide 20s linear infinite; /* Adjust animation speed */
    }
}

/* end testimonial*/



/* main first content  */
/* General Styles */
.premium-section {
    display: flex;
    justify-content: center;
    /* align-items: center; */
    padding: 50px 150px;
    background-color: #050f17;
    gap: 30px;
    height: auto; /* Allow height to adapt to content */
    flex-wrap: wrap; /* Ensure wrapping on smaller screens */
}

.premium-content {
    flex: 1;
    padding: 20px;
    max-width: 700px;
}

.premium-content h2 {
    font-size: 48px;
    color: #A8894D;
    font-family: 'Italiana', Sans-serif;
    margin-bottom: 20px;
}

.premium-content p {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.7em;
    margin-bottom: 30px;
    font-family: "Lexend", sans-serif;
    text-align: justify;
}

.premium-checklist {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    margin-left: -40px;
}

.premium-checklist .checklist-column {
    list-style: none;
}

.premium-checklist li {
    color: #E8E8E8;
    font-size: 14px;
    margin-bottom: 10px;
    font-family: "Lexend", sans-serif;
}

.premium-checklist li span {
    color: #d2a679;
    margin-right: 10px;
}

.apply-btn {
    background-color: #A8894D;
    color: #050f17;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    cursor: pointer;
    font-family: 'Lexend', sans-serif;
    transition: all 0.3s ease;
}

.apply-btn:hover {
    background-color: #ffffff;
    color: #050f17;
}
.property-selection-container {
    text-align: center;
    margin-bottom: 20px;
}

.property-img {
    width: 430px; /* Adjust the size as needed */
    height: auto;
    /* border-radius: 10px; */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}



/* Adjust content alignment for smaller screens */
@media (max-width: 1024px) {
    .premium-section {
        flex-direction: column; /* Stack content vertically */
        padding: 40px; /* Reduce padding for smaller screens */
        gap: 20px;
    }

    .premium-content h2 {
        font-size: 36px; /* Adjust heading size */
    }

    .premium-content p {
        font-size: 15px; /* Slightly smaller font */
        line-height: 1.5em; /* Maintain readability */
    }

    .premium-checklist li {
        font-size: 13px;
    }

    .apply-btn {
        width: 100%; /* Full-width button on smaller screens */
        padding: 10px;
    }

    .premium-form-container {
        padding: 30px; /* Adjust padding */
        max-width: 100%; /* Full-width container */
        box-shadow: none; /* Simplify shadow on smaller devices */
    }

    .premium-form-container input,
    .premium-form-container textarea {
        font-size: 14px; /* Maintain clarity */
    }

    .premium-form-container button {
        width: 100%; /* Full-width button */
    }
}

/* Extra Small Screens (Mobile) */
@media (max-width: 768px) {
    .premium-content h2 {
        font-size: 28px; /* Smaller heading size */
    }

    .premium-content p {
        font-size: 13px; /* Smaller paragraph font */
        text-align: left; /* Align text to the left */
    }

    .premium-form-container {
        padding: 20px; /* Further reduced padding */
    }

    .premium-form-container input,
    .premium-form-container textarea {
        font-size: 12px;
    }

    .premium-checklist {
        flex-direction: column; /* Stack checklist items vertically */
        gap: 10px; /* Reduce gaps */
    }

    .premium-checklist li {
        font-size: 12px;
    }
}

/* Fine-tune layout for narrow mobile screens */
@media (max-width: 480px) {
    .premium-section {
        padding: 20px;
    }

    .premium-content h2 {
        font-size: 24px;
    }

    .premium-content p {
        font-size: 12px;
    }

    .premium-form-container input,
    .premium-form-container textarea {
        font-size: 11px;
        padding: 8px; /* Reduce padding inside fields */
    }

    .apply-btn {
        padding: 8px;
        font-size: 14px;
    }

    .premium-form-container button {
        padding: 10px;
        font-size: 14px;
    }
}

/* end main contnt */



.container {
    background-color: #050f17;
  }
  
  .business-loan {
    padding: 40px 20px;
  }
  
  .content-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 30px;
  }
  
  .content-row.reverse {
    flex-direction: row-reverse;
  }
  
  .image-container {
    flex: 1;
    max-width: 640px;
  }
  
  .image-container img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .content {
    flex: 1;
    max-width: 562px;
    color: white;
  }
  
  .content h2 {
    color: #A8894D;
    font-family: 'Italiana', sans-serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.3em;
  }
  
  .content p {
    font-size: 15px;
    text-align: left;
  }
  
  /* Responsive: maintain zig-zag layout in mobile too */
  @media (max-width: 768px) {
    .content-row {
      flex-direction: column;
    }
  
    .content-row.reverse {
      flex-direction: column-reverse;
    }
  
    .content h2 {
      font-size: 26px;
      text-align: center;
    }
  
    .content p {
      font-size: 14px;
      text-align: center;
    }
  
    .image-container, .content {
      max-width: 100%;
    }
  }
  