/* Global Styles */
:root {
    --primary-color: #0056b3;
    --primary-dark: #004494;
    --primary-rgb: 0, 86, 179;
    --secondary-color: #00a0e3;
    --accent-color: #f8a100;
    --text-color: #333;
    --light-text: #fff;
    --light-bg: #f9f9f9;
    --dark-bg: #222;
    --border-color: #ddd;
    --success-color: #28a745;
    --error-color: #dc3545;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fff;
}

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

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

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
    color: var(--primary-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 15px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: 'Montserrat', sans-serif;
}

.primary-btn {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.primary-btn:hover {
    background-color: var(--secondary-color);
    color: var(--light-text);
}

.secondary-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.secondary-btn:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
}

/* Header */
header {
    background-color: #fff;
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 120px;
}

.nav-menu {
    display: flex;
}

.nav-menu li {
    margin-left: 25px;
    position: relative;
}

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: var(--box-shadow);
    min-width: 200px;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 10;
    padding: 10px 0;
    max-height: 400px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; /* For smooth scrolling on iOS */
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    padding: 8px 15px;
    display: block;
}

.dropdown-menu a:hover {
    background-color: var(--light-bg);
}

.header-contact .phone {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
}

.header-contact .phone i {
    margin-right: 5px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 2px 0;
    transition: var(--transition);
}

/* Page Banner */
.page-banner {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 60px 0;
    text-align: center;
}

.page-banner h1 {
    color: var(--light-text);
    margin-bottom: 10px;
}

.breadcrumbs {
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs a:hover {
    color: var(--light-text);
}

/* Hero Section */
.hero {
    background-image: url('https://images.pexels.com/photos/4506109/pexels-photo-4506109.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
    background-size: cover;
    background-position: center;
    color: var(--light-text);
    text-align: center;
    padding: 120px 0;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    color: var(--light-text);
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    position: relative;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

/* Services Sections */
.services-highlight, .services-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

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

.service-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    color: var(--light-text);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.service-card h3 {
    margin-bottom: 15px;
}

.read-more {
    display: inline-block;
    margin-top: 15px;
    font-weight: 600;
    color: var(--primary-color);
}

.read-more:hover {
    color: var(--secondary-color);
}

/* Location Details */
.location-details {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.location-description {
    margin-bottom: 30px;
}

.location-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    height: 100%;
}

.detail-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--light-text);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.detail-content {
    flex: 1;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}

.detail-content h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.detail-content p {
    margin-bottom: 5px;
}

.detail-content a {
    word-break: break-all;
}

.directions-link {
    display: inline-block;
    margin-top: 10px;
    font-weight: 600;
}

.location-map-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 25px;
}

.location-map iframe {
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

/* Location Services */
.location-services {
    padding: 80px 0;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--light-text);
}

.testimonials .section-header h2 {
    color: var(--light-text);
}

.testimonials .section-header h2::after {
    background-color: var(--light-text);
}

.testimonials .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 30px;
    margin: 0 15px;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author h4 {
    color: var(--light-text);
    margin-bottom: 5px;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 15px;
}

.testimonial-controls button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--light-text);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-controls button:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

/* Nearby Locations */
.nearby-locations {
    padding: 80px 0;
    background-color: var(--light-bg);
}

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

.nearby-location-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    padding: 25px;
    text-align: center;
}

.nearby-location-card h3 {
    margin-bottom: 10px;
}

.nearby-location-card address {
    margin-bottom: 20px;
    font-style: normal;
}

.view-all-locations {
    text-align: center;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background-color: var(--secondary-color);
    color: var(--light-text);
    text-align: center;
}

.cta h2 {
    color: var(--light-text);
    margin-bottom: 15px;
}

.cta p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.cta .secondary-btn {
    border-color: var(--light-text);
    color: var(--light-text);
}

.cta .secondary-btn:hover {
    background-color: var(--light-text);
    color: var(--secondary-color);
}

/* Locations Overview */
.locations-overview {
    padding: 80px 0;
}

.locations-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.locations-overview {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.map-note {
    margin-top: 20px;
    text-align: center;
    font-style: italic;
    color: #555;
}

.map-note i {
    color: var(--primary-color);
    margin-right: 5px;
}

/* Main Location */
.main-location-section {
    padding: 40px 0 80px;
    background-color: var(--light-bg);
}

.main-location-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.location-image img,
.location-image iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.location-details {
    padding: 30px;
}

.location-details h3 {
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.contact-info {
    margin-bottom: 20px;
}

.contact-info p, .hours p {
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.contact-info i, .hours i {
    margin-right: 10px;
    color: var(--primary-color);
    width: 20px;
}

.hours {
    margin-bottom: 20px;
}

.hours h4 {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.location-map {
    margin-bottom: 20px;
}

.location-buttons {
    display: flex;
    gap: 15px;
}

/* All Locations Grid */
.all-locations-grid {
    padding: 80px 0;
}

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

.location-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.location-card .location-image {
    height: 200px;
}

.location-card .location-image img,
.location-card .location-image iframe {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.location-content {
    padding: 20px;
}

.location-content h3 {
    margin-bottom: 10px;
}

.location-content address {
    margin-bottom: 10px;
    font-style: normal;
}

.location-content .phone {
    margin-bottom: 15px;
    display: block;
}

/* Location Map Section */
.location-map-section {
    padding: 40px 0 80px;
    background-color: var(--light-bg);
}

/* Map Container */
.map-container {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    width: 100%;
    height: 250px;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Attorney Partnerships Section - About Page */
.attorney-partnerships {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.attorney-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
    text-align: center;
}

.attorney-content .approach-icon,
.attorney-content .service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: white;
    font-size: 36px;
}

.attorney-text {
    max-width: 800px;
}

.attorney-features,
.attorney-text ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.attorney-features li,
.attorney-text li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.attorney-features li i,
.attorney-text li i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 4px;
}

.attorney-text p {
    margin-bottom: 20px;
}

/* Team Section */
.our-team {
    padding: 80px 0;
}

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

.team-grid.single-doctor {
    grid-template-columns: 1fr;
    max-width: 900px;
    margin: 40px auto;
}

.single-doctor .team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.single-doctor .member-image {
    width: 250px;
    height: 250px;
    margin-bottom: 30px;
}

.single-doctor .member-info {
    max-width: 800px;
}

.single-doctor .member-bio {
    margin-bottom: 15px;
}

.member-credentials {
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
}

.credentials-list {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.credentials-list li {
    margin-bottom: 5px;
}

.team-member {
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

/* Contact Form Styles */
.contact-form-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
}

.contact-form {
    background-color: #fff;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-form-container {
    margin-top: 30px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    width: 100%;
}

.form-group {
    flex: 1;
    position: relative;
}

.form-group.full-width {
    width: 100%;
}

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

.form-group .required {
    color: #e74c3c;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
    background-color: #f9f9f9;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
    outline: none;
    background-color: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
    font-style: italic;
}

.form-group select {
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23555" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 30px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 5px;
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

.form-checkbox label {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.5;
}

.submit-group {
    margin-top: 10px;
    text-align: center;
}

.contact-form .btn.primary-btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.contact-form .btn.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.main-office-info,
.emergency-info {
    background-color: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.main-office-info h3,
.emergency-info h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 22px;
}

.emergency-info {
    background-color: #f8f4ff;
    border-left: 4px solid var(--primary-color);
}

.emergency-phone {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.emergency-phone:hover {
    background-color: var(--primary-dark);
    text-decoration: none;
}

.emergency-phone i {
    margin-right: 8px;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
}

/* Contact Info Section */
.contact-info-section {
    padding: 60px 0;
}

.contact-info-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
}

.contact-info-card {
    flex: 1;
    min-width: 220px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 24px;
}

.contact-info-card h3 {
    margin-bottom: 10px;
    color: var(--dark-text);
}

.contact-info-card p {
    margin-bottom: 5px;
    color: #666;
    font-size: 14px;
}

.contact-info-card a {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 5px;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info-card a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-info-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-info-card {
        width: 100%;
        max-width: 320px;
    }
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: #fff;
    padding: 60px 0 20px;
}

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

.footer-logo img {
    height: 80px;
    margin-bottom: 15px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links h3, .footer-services h3, .footer-contact h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-links a, .footer-services a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover, .footer-services a:hover {
    color: #fff;
}

.footer-contact address p {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact address i {
    margin-right: 10px;
    color: var(--accent-color);
    width: 20px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--accent-color);
    color: #fff;
}

.legal-links {
    font-size: 0.9rem;
}

.legal-links a {
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* About Page Sections */
.our-story {
    padding: 80px 0;
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.story-text {
    width: 100%;
}

.story-image {
    width: 100%;
    text-align: center;
}

.story-image img {
    width: 90%; /* Making the image 10% smaller */
    max-width: 600px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

/* Service Detail Sections */
.service-detail {
    padding: 80px 0;
}

.service-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.service-image img {
    width: 90%; /* Making the image 10% smaller */
    max-width: 800px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.location-contact-info {
    margin-top: 40px;
}

/* Responsive adjustments */

/* Legal Pages Styles */
.legal-content {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.legal-document {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    margin: 0 auto;
}

.last-updated {
    color: #777;
    font-style: italic;
    margin-bottom: 20px;
    text-align: right;
}

.policy-intro {
    margin-bottom: 30px;
}

.policy-section {
    margin-bottom: 30px;
}

.policy-section h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.policy-section ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.policy-section li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.contact-details {
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: 5px;
    margin-top: 15px;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}
