﻿/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

/* Header */
header {
    background: linear-gradient(to right, #00274d, #8b0000); /* Dark blue to deep red */
    color: white;
    padding: 20px;
    text-align: center;
}

    header h1 {
        margin: 0;
        font-size: 100px; /* Increased size */
        font-weight: 600;
        font-family: 'Edwardian Script ITC', cursive; /* Updated font */
    }

/* Navigation Bar */
nav {
    display: flex;
    justify-content: center;
    background: linear-gradient(to right, #00274d, #8b0000);
    padding: 15px 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

    nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        gap: 20px;
    }

        nav ul li {
            display: inline;
        }

            nav ul li a {
                color: white;
                text-decoration: none;
                font-size: 18px;
                font-weight: bold;
                padding: 10px 20px;
                border-radius: 5px;
                transition: background 0.3s ease, transform 0.2s ease;
            }

                nav ul li a:hover {
                    background: rgba(255, 255, 255, 0.2);
                    transform: scale(1.05);
                }

/* Hero Section */
.hero {
    background: url('https://static.vecteezy.com/system/resources/previews/027/105/968/large_2x/legal-law-and-justice-concept-open-law-book-with-a-wooden-judges-gavel-in-a-courtroom-or-law-enforcement-office-free-photo.jpg') center/cover no-repeat;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    position: relative;
    padding: 20px;
}

    .hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1;
    }

    .hero div {
        position: relative;
        z-index: 2;
    }

    .hero h2 {
        font-size: 48px;
        font-weight: 600;
    }

    .hero p {
        font-size: 20px;
        margin: 15px 0;
    }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background: #ff0000; /* Red */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 15px;
    transition: all 0.3s ease-in-out;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

    .btn:hover {
        background: #b30000; /* Darker red */
        transform: translateY(-3px);
        box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.3);
    }

/* CTA Banner */
.cta-banner {
    background: #8b0000;
    color: white;
    text-align: center;
    padding: 30px;
}

    .cta-banner p {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .cta-banner .btn {
        background: #00274d;
        padding: 12px 24px;
        font-size: 18px;
    }

        .cta-banner .btn:hover {
            background: #ff0000;
        }

/* Quick Contact Form */
.quick-contact {
    padding: 40px 20px;
    text-align: center;
    background: #f4f4f4;
}

    .quick-contact input,
    .quick-contact textarea {
        width: 100%;
        padding: 12px;
        margin: 10px 0;
        border: 1px solid #ccc;
        border-radius: 5px;
    }

    .quick-contact button {
        background: #00274d;
        color: white;
        padding: 12px 24px;
        border: none;
        border-radius: 5px;
        font-weight: bold;
    }

        .quick-contact button:hover {
            background: #ff0000;
        }

/* Footer */
footer {
    background: #00274d;
    color: white;
    text-align: center;
    padding: 20px;
}

    footer .social-links a {
        color: white;
        margin: 0 10px;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        footer .social-links a:hover {
            color: #ff0000;
        }

/* Responsive Styles */
@media (max-width: 768px) {
    header h1 {
        font-size: 28px;
    }

    nav ul {
        flex-direction: column;
    }

    .hero h2 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .cta-banner p {
        font-size: 20px;
    }

    .quick-contact {
        padding: 20px;
    }

        .quick-contact input,
        .quick-contact textarea {
            width: 100%;
        }

    footer {
        padding: 10px;
    }
}

/* About Section */
.about {
    padding: 60px 20px;
    background: #1E1E1E;
    display: flex;
    justify-content: center;
}

.about-container {
    max-width: 100%;
    background: #0D0D0D;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 20px
}

    /* Title Styling */
    .about-container h2 {
        font-size: 36px;
        margin-bottom: 20px;
        font-weight: 600;
        color: #4682B4;
    }

    /* Paragraph Styling */
    .about-container p {
        font-size: 18px;
        margin-bottom: 20px;
        text-align: justify;
        color: white;
        line-height: 1.6;
    }

    /* Bullet Points Styling */
    .about-container ul {
        text-align: left;
        padding-left: 20px;
    }

    .about-container li {
        font-size: 18px;
        color: #4682B4;
        margin-bottom: 10px;
    }

    /* Mission Section */
    .about-container h3 {
        font-size: 28px;
        margin-top: 30px;
        font-weight: 500;
        color: #4682B4;
        text-align: center;
    }

/* Team Section */
.team {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0px;
    background: #1E1E1E;
}

.team-member {
    background: #0D0D0D;
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
    margin-bottom: 80px;
}

    .team-member img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        border-radius: 10px;
    }

    .team-member h4 {
        font-size: 24px;
        margin-top: 15px;
        color: #4682B4;
    }

    .team-member p {
        font-size: 16px;
        color: white;
    }

/* Practice Areas Section */
.practice-areas {
    padding: 40px 20px;
    text-align: center;
    background: #1E1E1E;
}

    .practice-areas h2 {
        font-size: 36px;
        font-weight: 600;
        margin-bottom: 20px;
        color: #4682B4;
    }

    .practice-areas p {
        font-size: 18px;
        margin-bottom: 30px;
        color: white;
    }

.area {
    background: #0D0D0D;
    padding: 20px;
    margin: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
}

    .area h3 {
        font-size: 28px;
        margin-bottom: 10px;
        font-weight: 500;
        color: #4682B4;
    }

    .area p {
        font-size: 16px;
        color: white;
    }

/* CTA Banner */
.cta-banner {
    background: #8b0000;
    color: white;
    text-align: center;
    padding: 30px;
    margin-top: 30px;
}

    .cta-banner p {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .cta-banner .btn {
        background: #00274d;
        padding: 12px 24px;
        font-size: 18px;
    }

        .cta-banner .btn:hover {
            background: #ff0000;
        }


/* General Form Styling */
.appointment {
    padding: 40px 20px;
    text-align: center;
    background: #1E1E1E;
}

    .appointment h2 {
        font-size: 36px;
        font-weight: 600;
        margin-bottom: 20px;
        color: #4682B4
    }

    .appointment p {
        font-size: 18px;
        margin-bottom: 30px;
        color: white;
    }

/* Appointment Container to Prevent Scrolling */
.appointment-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

    /* Ensure the iframe takes full width and does not scroll */
    .appointment-container iframe {
        width: 100%;
        height: 1700px;
    padding: 40px 20px;
    background-color: #E1E1E1;
    text-align: center;
    filter: invert(100%)
}

.heading {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center; /* Centers the h2 */
}

.paragraph {
    font-size: 18px;
    margin-bottom: 30px;
    text-align: center; /* Centers the p */
}

/* Contact Form & Container */
.contact-section {
    background: #1E1E1E;
}

.contact-container {
    display: flex;
    flex-direction: column; /* Ensures elements are stacked */
    align-items: center; /* Centers everything */
    width: 100%;
    max-width: 900px; /* Increase max-width of the container */
    margin: 0 auto; /* Centers the container on the page */
    background: #E1E1E1;
    filter: invert(100%)
}

iframe {
    width: 100%;
    height: 1000px; /* Makes form full length */
    border: none;
}

/* Office Details */
.contact-info {
    margin-top: 30px;
    background: #D0D0D0;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%; /* Ensure it takes full available width */
    max-width: 700px; /* Ensure it is not squashed and looks more balanced */
    text-align: left;
    margin: 20px auto; /* Centers the block */
}

    .contact-info h3, .contact-info h4 {
        font-size: 24px;
        font-weight: 600;
        color: #B97D4B;
        margin-bottom: 15px;
        text-align: center;
    }

    .contact-info p {
        font-size: 18px;
        color: black;
        text-align:center;
    }

/* Google Maps Embed */
.map {
    margin-top: 30px;
    background: #1E1E1E;
    padding: 0px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%; /* Ensures full width */
    max-width: 700px; /* Makes sure the map doesn't go too wide */
    margin: 20px auto;
    text-align: left;
}

    .map iframe {
        width: 100%;
        height: 500px; /* Set a fixed height for the map */
        border-radius: 10px;
    }

/* Responsive Design */
@media (max-width: 600px) {
    .contact {
        padding: 20px;
    }

    form {
        padding: 15px;
        width: 100%;
    }

        form label, form input, form textarea {
            font-size: 14px;
        }

        form button {
            font-size: 16px;
            padding: 10px 20px;
        }

    .contact-info {
        padding: 15px;
    }

        .contact-info h3 {
            font-size: 20px;
        }

        .contact-info p {
            font-size: 16px;
        }
}

/* Testimonials Section */
.testimonials {
    background-color: #1E1E1E; /* Lighter grey background */
    padding: 40px 20px;
    text-align: center;
    border-top: 5px solid #ff0000; /* Red border at the top to match the theme */
}

    .testimonials h2 {
        font-size: 36px;
        font-weight: 600;
        margin-bottom: 30px;
        color: #4682B4; /* Dark blue color for the heading */
    }

.testimonial-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial {
    background-color: #0D0D0D;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    text-align: center;
    border-left: 5px solid #ff0000; /* Red left border to add color */
    transition: transform 0.3s ease-in-out;
}

    .testimonial p {
        font-size: 16px;
        color: white;
        margin-bottom: 15px;
    }

    .testimonial h4 {
        font-size: 18px;
        font-weight: bold;
        color: #4682B4;
    }

    .testimonial:hover {
        transform: translateY(-5px); /* Slight hover effect */
        box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
    }

/* Responsive Design for Testimonials */
@media (max-width: 600px) {
    .testimonial-container {
        flex-direction: column;
        align-items: center;
    }

    .testimonial {
        width: 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }
}

/* Hero Section Fix: Removing Gap Between Hero Image and CTA */
.hero {
    background: url('https://static.vecteezy.com/system/resources/previews/027/105/968/large_2x/legal-law-and-justice-concept-open-law-book-with-a-wooden-judges-gavel-in-a-courtroom-or-law-enforcement-office-free-photo.jpg') center/cover no-repeat;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    position: relative;
    padding: 20px;
    margin-bottom: 0; /* Remove the margin to avoid the gap */
}

.cta-banner {
    background: #8b0000;
    color: white;
    text-align: center;
    padding: 30px;
    margin-top: 0; /* Remove margin-top to prevent any gap */
}

/* Reset body margin and padding for clean layout */
body, html {
    margin: 0;
    padding: 0;
    height: 100%; /* Ensure the body takes full height */
    overflow: auto; /* Make sure the body itself can scroll if content overflows */
}

/* Reset body margin and padding for clean layout */
body, html {
    margin: 0;
    padding: 0;
    height: 100%; /* Ensure the body takes full height */
    overflow: auto; /* Make sure the body itself can scroll if content overflows */
}

/* review Page Styling */
.review-section {
    padding: 40px 20px;
    background-color: #1E1E1E;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Align items from the top */
}

/* Heading and paragraph styling */
.heading {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    color: #4682B4;
}

.paragraph {
    font-size: 18px;
    margin-bottom: 30px;
    text-align: center;
    color: white;
}

/* review Form Embed */
.review-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px; /* Add spacing below the iframe */
}

    .review-container iframe {
        width: 100%;
        height: 1450px; /* Use the same height as the working example */
        border: none;
        border-radius: 10px;
    }

/* Footer Styling */
footer {
    text-align: center;
    background-color: #f4f4f4;
    padding: 20px 0;
    font-size: 14px;
    color: #555;
}

/* General Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
}

/* Header Styling */
header {
    background-color: #00274d; /* Blue background for header */
    color: white;
    padding: 20px 0;
}

    header h1 {
        font-size: 36px;
        text-align: center;
    }

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
}

    nav ul li {
        margin: 0 15px;
    }

        nav ul li a {
            color: white;
            font-size: 18px;
            text-decoration: none;
        }

            nav ul li a:hover,
            nav ul li a.active {
                text-decoration: underline;
            }

/* Section Styles */
section {
    padding: 40px 20px;
    text-align: center;
    background-color: #f4f4f4;
}

/* Footer Styling */
footer {
    background-color: #00274d;
    color: white;
    padding: 15px;
    text-align: center;
}

/* Hero Section */
.hero {
    background: url('https://static.vecteezy.com/system/resources/previews/027/105/968/large_2x/legal-law-and-justice-concept-open-law-book-with-a-wooden-judges-gavel-in-a-courtroom-or-law-enforcement-office-free-photo.jpg') center/cover no-repeat;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    position: relative;
    padding: 20px;
}

    .hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1;
    }

    .hero div {
        position: relative;
        z-index: 2;
    }

    .hero h2 {
        font-size: 48px;
        font-weight: 600;
    }

.cta-button {
    display: inline-block;
    background-color: #ff0000; /* Blue color */
    color: #ffffff; /* White text */
    padding: 12px 24px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-btn:hover {
    background-color: #356999; /* Darker blue on hover */
}

/* Retainer Benefits Section */
.retainer-benefits {
    background-color: #1E1E1E;
    padding: 40px 0;
}

    .retainer-benefits .container {
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .retainer-benefits h3 {
        font-size: 32px;
        margin-bottom: 30px;
        color: #4682B4;
    }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-item {
    background-color: #0D0D0D;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 2px solid #8b0000; /* Dark Red Outline */
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    filter: invert(100%);
}

.benefit-item h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #8b0000; /* Dark Red */
}

.benefit-item p {
    font-size: 16px;
    color: white;
}

/* How It Works Section */
.how-it-works {
    background-color: #141414;
    padding: 60px 0;
}

    .how-it-works .container {
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .how-it-works h3 {
        font-size: 32px;
        margin-bottom: 40px;
        color: #4682B4;
    }

.process-steps {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
}

.process-step {
    background-color: #0D0D0D;
    padding: 30px;
    border-radius: 8px;
    width: 30%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

    .process-step h4 {
        font-size: 24px;
        margin-bottom: 20px;
        color: #8b0000; /* Dark Red */
    }

    .process-step p {
        font-size: 16px;
        color: white;
    }

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
}

    footer p {
        margin: 0;
        font-size: 14px;
    }

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    /* Hero Section */
    .hero h2 {
        font-size: 32px; /* Smaller title size for mobile */
    }

    .cta-button {
        padding: 10px 20px; /* Smaller button for mobile */
        font-size: 16px;
    }

    /* Retainer Benefits Section */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr); /* Two items per row on smaller screens */
        gap: 20px;
    }

    .benefit-item {
        padding: 15px;
        font-size: 14px; /* Adjust font size for better fit */
    }

    .benefit-icon {
        width: 50px; /* Adjust icon size for mobile */
        height: 50px;
    }

    /* How It Works Section */
    .process-steps {
        flex-direction: column; /* Stack process steps vertically */
        gap: 20px;
    }

    .process-step {
        width: 100%; /* Full width on smaller screens */
        padding: 20px;
    }

        .process-step h4 {
            font-size: 20px; /* Smaller titles for mobile */
        }
}

@media screen and (max-width: 480px) {
    /* Hero Section */
    .hero {
        height: 400px; /* Smaller height for mobile */
    }

        .hero h2 {
            font-size: 24px; /* Even smaller title on very small screens */
        }

    .cta-button {
        padding: 8px 16px; /* Even smaller button */
        font-size: 14px;
    }

    /* Retainer Benefits Section */
    .benefits-grid {
        grid-template-columns: 1fr; /* One item per row on very small screens */
    }

    .benefit-item {
        font-size: 12px; /* Reduce font size for better readability */
    }

    .benefit-icon {
        width: 40px; /* Smaller icon size for very small screens */
        height: 40px;
    }

    /* How It Works Section */
    .process-step {
        width: 100%; /* Full width on very small screens */
        padding: 15px;
    }
}

/* Home Page Carousel Styling */
.carousel {
    display: flex;
    overflow: hidden;
    width: 100%;
    justify-content: center;
    position: relative;
    background-colour: #1E1E1E
}

.carousel-images {
    display: flex;
    transition: transform 0.5s ease;
}

    .carousel-images img {
        width: 100%;
        height: auto;
    }

/* Article Grid Layout */
.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* Create a responsive grid */
    gap: 20px;
    padding: 20px;
    justify-items: center;
}

.more {
    text-indent: 30px;
}

.article-card {
    background-color: #1E1E1E;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%; /* Ensure each card takes full width within the grid cell */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

    .article-card img {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }

    .article-card h3 {
        margin-top: 10px;
        font-size: 20px;
        color: #4682B4;
    }

    .article-card a {
        text-decoration: none;
        color: #00274d;
        color: white;
    }


/* Responsive Styles */
@media (max-width: 768px) {
    header h1 {
        font-size: 50px; /* Adjust font size for smaller screens */
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

        nav ul li a {
            padding: 8px 16px; /* Adjust padding for better fit */
            font-size: 16px;
        }

    .hero h2 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .cta-banner p {
        font-size: 18px;
    }

    .quick-contact input,
    .quick-contact textarea {
        width: 100%;
    }

    footer {
        padding: 10px;
    }

    .about-container {
        padding: 30px; /* Reduced padding */
    }

        .about-container h2 {
            font-size: 28px; /* Adjust heading size */
        }

        .about-container p {
            font-size: 16px;
        }

    .team-member {
        width: 250px; /* Shrink team member size */
    }

    .practice-areas h2 {
        font-size: 28px;
    }

    .area h3 {
        font-size: 24px;
    }

    .cta-banner p {
        font-size: 20px;
    }

    .appointment h2 {
        font-size: 32px;
    }

    .contact-info {
        padding: 15px; /* Adjusted padding for mobile */
    }

        .contact-info h3, .contact-info h4 {
            font-size: 20px;
        }

        .contact-info p {
            font-size: 16px;
        }

    /* Testimonials Section */
    .testimonials h2 {
        font-size: 28px;
    }

    .testimonial {
        max-width: 100%; /* Full width for testimonials */
    }
}

/* Additional responsive styles for very small screens (max-width: 600px) */
@media (max-width: 600px) {
    header h1 {
        font-size: 30px; /* Further reduce heading size for tiny screens */
    }

    nav ul li a {
        font-size: 14px; /* Reduce font size for navigation links */
        padding: 6px 12px; /* Smaller padding */
    }

    .hero h2 {
        font-size: 28px;
    }

    .hero p {
        font-size: 14px; /* Smaller paragraph font */
    }

    .cta-banner p {
        font-size: 18px;
    }

    .quick-contact input,
    .quick-contact textarea {
        width: 100%;
        padding: 10px; /* Adjust padding */
    }

    .cta-banner .btn {
        font-size: 16px; /* Reduce font size of the CTA button */
    }

    footer {
        padding: 8px;
    }

    .about-container h2 {
        font-size: 24px;
    }

    .about-container p {
        font-size: 14px;
    }

    .team-member {
        width: 100%; /* Ensure team member blocks take full width on tiny screens */
        margin-bottom: 15px; /* Add margin between items */
    }

    .practice-areas h2 {
        font-size: 24px;
    }

    .area h3 {
        font-size: 22px;
    }

    .appointment h2 {
        font-size: 28px;
    }

    .contact-info {
        padding: 10px; /* Further reduced padding */
    }

        .contact-info h3, .contact-info h4 {
            font-size: 18px;
        }

        .contact-info p {
            font-size: 14px;
        }

    .testimonials h2 {
        font-size: 24px;
    }

    .testimonial {
        padding: 15px;
        width: 100%;
    }
}


/* Mobile Styles for Retainer Page */
@media (max-width: 768px) {
    /* Adjust page layout */
    body {
        font-size: 16px; /* Adjust the font size for smaller screens */
    }

    /* Container and Content Layout */
    .container, .content, .retainer-section {
        padding: 10px;
        margin: 0;
        width: 100%;
    }

    /* Adjust any specific elements that are too wide */
    .retainer-form, .retainer-details {
        width: 100%;
        padding: 10px;
        box-sizing: border-box;
    }
}
