:root {
 --primary-color: #0056b3; /* Deep Blue */
 --secondary-color: #6c757d; /* Muted Grey */
 --accent-color: #28a745; /* Green for highlights */
 --text-color: #343a40; /* Dark Grey Black */
 --text-color-light: #6c757d;
 --background-color: #f8f9fa; /* Light Grey */
 --light-background: #ffffff; /* White */
 --border-color: #dee2e6; /* Light Grey Border */
 --shadow-color: rgba(0, 0, 0, 0.08);

 --font-heading: 'Montserrat', sans-serif;
 --font-body: 'Roboto', sans-serif;

 --max-width: 1200px;
 --spacing-xs: 8px;
 --spacing-sm: 16px;
 --spacing-md: 24px;
 --spacing-lg: 48px;
 --spacing-xl: 72px;
}

/* Base Reset & Typography */
*, *::before, *::after {
 box-sizing: border-box;
 margin: 0;
 padding: 0;
}

html {
 scroll-behavior: smooth;
 font-size: 16px;
}

body {
 font-family: var(--font-body);
 line-height: 1.6;
 color: var(--text-color);
 background-color: var(--background-color);
 -webkit-font-smoothing: antialiased;
 -moz-osx-font-smoothing: grayscale;
}

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

a:hover {
 color: #007bff; /* A brighter blue */
}

h1, h2, h3, h4, h5, h6 {
 font-family: var(--font-heading);
 color: var(--text-color);
 margin-bottom: var(--spacing-sm);
 line-height: 1.3;
}

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

p {
 margin-bottom: var(--spacing-sm);
}

ul {
 list-style: none;
}

.container {
 max-width: var(--max-width);
 margin: 0 auto;
 padding: 0 var(--spacing-sm);
}

.section {
 padding: var(--spacing-xl) 0;
 position: relative;
 overflow: hidden;
}

.section:nth-of-type(even) {
 background-color: var(--light-background);
}

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

.mt-4 {
 margin-top: var(--spacing-lg);
}

.sr-only {
 position: absolute;
 width: 1px;
 height: 1px;
 padding: 0;
 margin: -1px;
 overflow: hidden;
 clip: rect(0,0,0,0);
 white-space: nowrap;
 border: 0;
}

/* Buttons */
.btn {
 display: inline-block;
 padding: var(--spacing-sm) var(--spacing-md);
 border-radius: 5px;
 font-weight: 600;
 text-align: center;
 cursor: pointer;
 transition: all 0.3s ease;
 border: 2px solid transparent;
 font-size: 1em;
}

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

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

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

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

.btn-light-outline {
 background-color: transparent;
 color: var(--light-background);
 border-color: var(--light-background);
}

.btn-light-outline:hover {
 background-color: rgba(255, 255, 255, 0.1);
 transform: translateY(-2px);
}

/* Header */
.top-bar {
 background-color: var(--primary-color);
 color: var(--light-background);
 padding: var(--spacing-xs) 0;
 font-size: 0.9em;
}

.top-bar-content {
 display: flex;
 justify-content: flex-end;
 align-items: center;
}

.top-bar-content .contact-info span {
 margin-left: var(--spacing-md);
}

.top-bar-content .contact-info a {
 color: var(--light-background);
 margin-right: var(--spacing-sm);
 text-decoration: none;
}

.top-bar-content .contact-info a:hover {
 text-decoration: underline;
}

header {
 background-color: var(--light-background);
 box-shadow: var(--shadow-color) 0px 2px 10px;
 position: sticky;
 top: 0;
 z-index: 1000;
}

header nav {
 display: flex;
 justify-content: space-between;
 align-items: center;
 padding: var(--spacing-sm) var(--spacing-sm);
}

header .logo {
 font-family: var(--font-heading);
 font-weight: 700;
 font-size: 1.8em;
 color: var(--primary-color);
}

.nav-links {
 display: flex;
 gap: var(--spacing-md);
}

.nav-links a {
 color: var(--text-color);
 font-weight: 500;
 padding: var(--spacing-xs) 0;
 position: relative;
}

.nav-links a::after {
 content: '';
 position: absolute;
 left: 0;
 bottom: 0;
 width: 0;
 height: 2px;
 background-color: var(--primary-color);
 transition: width 0.3s ease-in-out;
}

.nav-links a:hover::after,
.nav-links a.active::after {
 width: 100%;
}

.nav-toggle {
 display: none;
 background: none;
 border: none;
 cursor: pointer;
 z-index: 1001;
 padding: 10px;
}

.nav-toggle span {
 display: block;
 width: 25px;
 height: 3px;
 background-color: var(--text-color);
 margin: 5px 0;
 transition: all 0.3s ease;
}

/* Hero Section */
.hero {
 background-color: var(--primary-color);
 color: var(--light-background);
 padding: var(--spacing-xl) 0;
 text-align: center;
 position: relative;
 overflow: hidden;
}

.hero-pattern {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23004a8b' fill-opacity='0.2'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zm0 24v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0 24v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM12 34v-4h-2v4H6v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4H6v2h4v4h2V6h4V4h-4zm0 24v-4h-2v4H6v2h4v4h2v-4h4v-2h-4zm0 24v-4h-2v4H6v2h4v4h2v-4h4v-2h-4z'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
 opacity: 0.1;
 z-index: 0;
}

.hero-content {
 display: flex;
 flex-direction: column;
 align-items: center;
 position: relative;
 z-index: 1;
}

.hero-text {
 max-width: 800px;
 margin-bottom: var(--spacing-lg);
}

.hero h1 {
 font-size: 3.5em;
 font-weight: 700;
 margin-bottom: var(--spacing-sm);
 color: var(--light-background);
}

.hero p {
 font-size: 1.25em;
 margin-bottom: var(--spacing-md);
 color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
 display: flex;
 justify-content: center;
 gap: var(--spacing-md);
 margin-bottom: var(--spacing-lg);
}

.hero-card {
 background-color: rgba(255, 255, 255, 0.1);
 border: 1px solid rgba(255, 255, 255, 0.2);
 border-radius: 8px;
 padding: var(--spacing-md);
 max-width: 350px;
 text-align: left;
}

.hero-card h3 {
 color: var(--light-background);
 margin-bottom: var(--spacing-sm);
 font-size: 1.3em;
}

.hero-card ul {
 list-style: none;
 padding: 0;
}

.hero-card li {
 display: flex;
 align-items: center;
 color: var(--light-background);
 margin-bottom: var(--spacing-xs);
 font-size: 1.1em;
}

.hero-card li img {
 margin-right: var(--spacing-xs);
 width: 20px;
 height: 20px;
 filter: invert(1); /* Makes icons white */
}

/* Trust Metrics */
.trust-metrics {
 background-color: var(--light-background);
 padding-top: var(--spacing-lg);
 padding-bottom: var(--spacing-lg);
}

.metrics-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
 gap: var(--spacing-md);
}

.metric-card {
 background-color: var(--background-color);
 padding: var(--spacing-md);
 border-radius: 8px;
 text-align: center;
 box-shadow: var(--shadow-color) 0px 4px 12px;
 transition: transform 0.3s ease;
}

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

.metric-card h3 {
 color: var(--primary-color);
 font-size: 1.5em;
 margin-bottom: var(--spacing-xs);
}

.metric-card p {
 color: var(--text-color-light);
 font-size: 0.95em;
}

/* Benefits Section */
.benefits-section {
 padding: var(--spacing-xl) 0;
 text-align: center;
}

.benefits-section h2 {
 margin-bottom: var(--spacing-lg);
}

.benefits-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 gap: var(--spacing-md);
}

.benefit-card {
 background-color: var(--light-background);
 padding: var(--spacing-md);
 border-radius: 8px;
 box-shadow: var(--shadow-color) 0px 4px 12px;
 text-align: left;
 transition: transform 0.3s ease;
}

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

.benefit-card h3 {
 color: var(--primary-color);
 margin-bottom: var(--spacing-xs);
}

.benefit-card p {
 color: var(--text-color-light);
}

/* Services Preview */
.services-preview {
 background-color: var(--background-color);
 text-align: center;
}

.services-preview h2 {
 margin-bottom: var(--spacing-lg);
}

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

.service-card {
 background-color: var(--light-background);
 border-radius: 8px;
 overflow: hidden;
 box-shadow: var(--shadow-color) 0px 4px 12px;
 transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
 transform: translateY(-5px);
 box-shadow: rgba(0, 0, 0, 0.15) 0px 6px 16px;
}

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

.service-card h3 {
 margin: var(--spacing-sm) var(--spacing-sm) var(--spacing-xs) var(--spacing-sm);
 color: var(--primary-color);
}

.service-card p {
 padding: 0 var(--spacing-sm) var(--spacing-sm);
 color: var(--text-color-light);
 font-size: 0.95em;
}

/* Why Us Section */
.why-us {
 background-color: var(--light-background);
 padding: var(--spacing-xl) 0;
}

.why-us-content {
 display: flex;
 flex-wrap: wrap;
 align-items: center;
 gap: var(--spacing-lg);
}

.why-us-text {
 flex: 2;
 min-width: 300px;
}

.why-us-text h2 {
 color: var(--primary-color);
 margin-bottom: var(--spacing-md);
}

.why-us-bullets {
 list-style: none;
 padding-left: 0;
}

.why-us-bullets li {
 margin-bottom: var(--spacing-sm);
 padding-left: var(--spacing-md);
 position: relative;
 color: var(--text-color);
}

.why-us-bullets li::before {
 content: '';
 color: var(--accent-color);
 position: absolute;
 left: 0;
}

.why-us-image {
 flex: 1;
 min-width: 300px;
 text-align: center;
}

.why-us-image img {
 max-width: 100%;
 height: auto;
 border-radius: 8px;
 box-shadow: var(--shadow-color) 0px 8px 24px;
}

/* Testimonials Preview */
.testimonials-preview {
 text-align: center;
}

.testimonials-preview h2 {
 margin-bottom: var(--spacing-lg);
}

.testimonials-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 gap: var(--spacing-md);
}

.testimonial-card {
 background-color: var(--light-background);
 padding: var(--spacing-md);
 border-radius: 8px;
 box-shadow: var(--shadow-color) 0px 4px 12px;
 text-align: center;
 position: relative;
 padding-top: var(--spacing-lg);
 transition: transform 0.3s ease;
}

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

.testimonial-avatar {
 width: 90px;
 height: 90px;
 border-radius: 50%;
 object-fit: cover;
 border: 3px solid var(--primary-color);
 margin: 0 auto var(--spacing-sm);
 display: block;
}

.testimonial-card h3 {
 margin-bottom: var(--spacing-xs);
 color: var(--text-color);
}

.testimonial-role {
 font-size: 0.9em;
 color: var(--secondary-color);
 margin-bottom: var(--spacing-sm);
}

.testimonial-card p {
 font-style: italic;
 color: var(--text-color-light);
 margin-bottom: 0;
}

/* FAQ Preview */
.faq-preview {
 background-color: var(--light-background);
 text-align: center;
}

.faq-preview h2 {
 margin-bottom: var(--spacing-lg);
}

.faq-list {
 max-width: 800px;
 margin: 0 auto;
}

.faq-item {
 background-color: var(--background-color);
 border: 1px solid var(--border-color);
 border-radius: 8px;
 margin-bottom: var(--spacing-sm);
 overflow: hidden;
 text-align: left;
 transition: box-shadow 0.3s ease;
}

.faq-item:hover {
 box-shadow: var(--shadow-color) 0px 4px 12px;
}

.faq-toggle {
 display: none;
}

.faq-question {
 display: block;
 padding: var(--spacing-sm) var(--spacing-md);
 cursor: pointer;
 font-weight: 600;
 color: var(--text-color);
 position: relative;
 transition: color 0.3s ease;
}

.faq-question::after {
 content: '+';
 position: absolute;
 right: var(--spacing-md);
 top: 50%;
 transform: translateY(-50%);
 font-size: 1.5em;
 transition: transform 0.3s ease;
}

.faq-toggle:checked + .faq-question {
 color: var(--primary-color);
}

.faq-toggle:checked + .faq-question::after {
 content: '-';
 transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
 max-height: 0;
 overflow: hidden;
 padding: 0 var(--spacing-md);
 transition: max-height 0.3s ease-out, padding 0.3s ease-out;
 color: var(--text-color-light);
}

.faq-toggle:checked ~ .faq-answer {
 max-height: 200px; /* Adjust as needed for content */
 padding: var(--spacing-xs) var(--spacing-md) var(--spacing-md);
}

/* CTA Banner */
.cta-banner {
 background-color: var(--primary-color);
 padding: var(--spacing-xl) 0;
 color: var(--light-background);
}

.cta-banner h2 {
 color: var(--light-background);
 margin-bottom: var(--spacing-sm);
 font-size: 2.5em;
}

.cta-banner p {
 font-size: 1.1em;
 margin-bottom: var(--spacing-md);
 color: rgba(255, 255, 255, 0.9);
}

/* Footer */
footer {
 background-color: var(--text-color);
 color: rgba(255, 255, 255, 0.7);
 padding: var(--spacing-xl) 0 var(--spacing-sm);
 font-size: 0.95em;
}

.footer-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
 gap: var(--spacing-md);
 margin-bottom: var(--spacing-lg);
}

.footer-col h3, .footer-col h4 {
 color: var(--light-background);
 margin-bottom: var(--spacing-sm);
 font-size: 1.1em;
}

.footer-col ul {
 list-style: none;
 padding: 0;
}

.footer-col ul li {
 margin-bottom: var(--spacing-xs);
}

.footer-col a {
 color: rgba(255, 255, 255, 0.7);
 transition: color 0.3s ease;
}

.footer-col a:hover {
 color: var(--primary-color);
}

.about-brand p {
 font-size: 0.9em;
}

.contact-info-col p {
 margin-bottom: var(--spacing-xs);
}

.footer-bottom {
 text-align: center;
 padding-top: var(--spacing-md);
 border-top: 1px solid rgba(255, 255, 255, 0.1);
 font-size: 0.85em;
}

.footer-bottom p {
 margin-bottom: var(--spacing-xs);
}

.disclaimer-text {
 font-size: 0.75em;
 color: rgba(255, 255, 255, 0.5);
 margin-top: var(--spacing-sm);
}

/* Scroll Fade In Animation */
.fade-in {
 opacity: 0;
 transform: translateY(20px);
 transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.is-visible {
 opacity: 1;
 transform: translateY(0);
}

/* Utility Classes for content pages */
.content-section {
 background-color: var(--light-background);
 padding: var(--spacing-xl) 0;
 line-height: 1.8;
}

.content-section h1, .content-section h2, .content-section h3 {
 margin-bottom: var(--spacing-md);
 color: var(--primary-color);
}

.content-section p {
 margin-bottom: var(--spacing-sm);
}

.content-section ul, .content-section ol {
 margin-bottom: var(--spacing-md);
 padding-left: var(--spacing-md);
}

.content-section ul li, .content-section ol li {
 margin-bottom: var(--spacing-xs);
}

.content-section blockquote {
 border-left: 4px solid var(--primary-color);
 padding-left: var(--spacing-md);
 margin: var(--spacing-md) 0;
 font-style: italic;
 color: var(--text-color-light);
}

/* Media Queries */
@media (max-width: 1024px) {
 h1 { font-size: 2.5em; }
 h2 { font-size: 2em; }
 h3 { font-size: 1.6em; }

 .hero h1 {
 font-size: 3em;
 }

 .hero p {
 font-size: 1.1em;
 }

 .footer-grid {
 grid-template-columns: repeat(3, 1fr);
 }
}

@media (max-width: 768px) {
 h1 { font-size: 2.2em; }
 h2 { font-size: 1.8em; }
 h3 { font-size: 1.4em; }

 .top-bar-content {
 justify-content: center;
 }
 .top-bar-content .contact-info span {
 margin: 0 var(--spacing-xs);
 }

 header nav {
 flex-wrap: wrap;
 padding: var(--spacing-sm);
 }

 .nav-links {
 display: none;
 flex-direction: column;
 width: 100%;
 background-color: var(--light-background);
 position: absolute;
 top: 100%;
 left: 0;
 box-shadow: var(--shadow-color) 0px 8px 10px;
 padding: var(--spacing-sm) 0;
 }

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

 .nav-links li {
 text-align: center;
 width: 100%;
 }

 .nav-links a {
 display: block;
 padding: var(--spacing-xs) var(--spacing-md);
 border-bottom: 1px solid var(--border-color);
 }

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

 .nav-links a::after { /* Remove underscore effect for mobile menu */
 display: none;
 }

 .nav-toggle {
 display: block;
 }

 .hero-content {
 flex-direction: column;
 }

 .hero-text {
 margin-bottom: var(--spacing-md);
 }

 .hero-actions {
 flex-direction: column;
 width: 100%;
 max-width: 300px;
 margin: 0 auto var(--spacing-lg);
 }

 .hero-card {
 max-width: 100%;
 }

 .metrics-grid, .benefits-grid, .services-grid, .testimonials-grid {
 grid-template-columns: 1fr;
 }

 .why-us-content {
 flex-direction: column;
 text-align: center;
 }

 .why-us-bullets {
 padding-left: 20px;
 }

 .why-us-bullets li::before {
 left: 0;
 }

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

 .footer-grid {
 grid-template-columns: 1fr;
 text-align: center;
 }

 .footer-col ul {
 display: inline-block; /* Center list items */
 text-align: left;
 }
}

@media (max-width: 480px) {
 h1 { font-size: 1.8em; }
 h2 { font-size: 1.5em; }
 h3 { font-size: 1.2em; }

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

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

 .section {
 padding: var(--spacing-lg) 0;
 }

 .top-bar-content {
 flex-direction: column;
 }
 .top-bar-content .contact-info span {
 margin: var(--spacing-xs) 0;
 }

}

/* Form Styles */
.contact-form-section {
 background-color: var(--light-background);
 padding: var(--spacing-xl) 0;
}

.contact-form-container {
 display: flex;
 flex-wrap: wrap;
 gap: var(--spacing-lg);
 max-width: 1000px;
 margin: 0 auto;
}

.contact-form-content {
 flex: 2;
 min-width: 300px;
}

.contact-form-content h2 {
 color: var(--primary-color);
 margin-bottom: var(--spacing-md);
}

.contact-form-content p {
 color: var(--text-color-light);
 margin-bottom: var(--spacing-md);
}

.contact-form {
 background-color: var(--background-color);
 padding: var(--spacing-md);
 border-radius: 8px;
 box-shadow: var(--shadow-color) 0px 4px 12px;
}

.form-group {
 margin-bottom: var(--spacing-sm);
}

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

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
 width: 100%;
 padding: var(--spacing-xs);
 border: 1px solid var(--border-color);
 border-radius: 5px;
 font-family: var(--font-body);
 font-size: 1em;
 color: var(--text-color);
 transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
 border-color: var(--primary-color);
 outline: none;
 box-shadow: 0 0 0 2px rgba(0, 86, 179, 0.2);
}

.form-group textarea {
 resize: vertical;
 min-height: 120px;
}

.checkbox-group {
 display: flex;
 align-items: center;
 gap: var(--spacing-xs);
 margin-bottom: var(--spacing-md);
 font-size: 0.9em;
}

.checkbox-group input[type="checkbox"] {
 margin: 0;
}

.checkbox-group label {
 margin: 0;
 color: var(--text-color-light);
}

.contact-form .btn-primary {
 width: 100%;
 padding: var(--spacing-sm);
 font-size: 1.1em;
}

.form-message {
 text-align: center;
 margin-top: var(--spacing-sm);
 font-size: 0.9em;
 color: var(--text-color-light);
}

.contact-info-block {
 flex: 1;
 min-width: 250px;
}

.contact-info-block h3 {
 color: var(--primary-color);
 margin-bottom: var(--spacing-sm);
}

.contact-info-block ul {
 list-style: none;
 padding: 0;
}

.contact-info-block li {
 display: flex;
 align-items: flex-start;
 margin-bottom: var(--spacing-sm);
 color: var(--text-color);
}

.contact-info-block li strong {
 min-width: 80px;
 display: inline-block;
 color: var(--text-color-light);
 font-weight: 500;
}

.contact-map {
 margin-top: var(--spacing-lg);
 border-radius: 8px;
 overflow: hidden;
 box-shadow: var(--shadow-color) 0px 4px 12px;
}

.contact-map iframe {
 width: 100%;
 height: 400px;
 display: block; /* Remove extra space below iframe */
}

@media (max-width: 768px) {
 .contact-form-container {
 flex-direction: column;
 gap: var(--spacing-md);
 }
 .contact-form-content, .contact-info-block {
 min-width: unset;
 width: 100%;
 }
}

/* Services Page Specific */
.services-heading {
 text-align: center;
 margin-bottom: var(--spacing-lg);
}

.services-heading h1 {
 color: var(--primary-color);
}

.services-heading p {
 max-width: 800px;
 margin: 0 auto;
 font-size: 1.1em;
 color: var(--text-color-light);
}

.service-card-lg {
 background-color: var(--light-background);
 border-radius: 8px;
 box-shadow: var(--shadow-color) 0px 8px 24px;
 display: flex;
 flex-direction: column;
 overflow: hidden;
 margin-bottom: var(--spacing-lg);
 transition: transform 0.3s ease;
}

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

.service-card-lg.reverse {
 flex-direction: column-reverse; /* For alternating layout on larger screens */
}

.service-card-lg .service-content-wrapper {
 display: flex;
 flex-direction: column;
 padding: var(--spacing-md);
}

.service-card-lg img {
 width: 100%;
 height: 300px;
 object-fit: cover;
 display: block;
}

.service-card-lg h3 {
 color: var(--primary-color);
 margin-bottom: var(--spacing-sm);
}

.service-card-lg p {
 margin-bottom: var(--spacing-sm);
 color: var(--text-color-light);
}

.service-card-lg ul {
 list-style: disc;
 padding-left: var(--spacing-md);
 margin-bottom: var(--spacing-md);
 color: var(--text-color-light);
}

.service-card-lg ul li {
 margin-bottom: var(--spacing-xs);
}

@media (min-width: 769px) {
 .service-card-lg {
 flex-direction: row;
 align-items: center;
 }

 .service-card-lg.reverse {
 flex-direction: row-reverse;
 }

 .service-card-lg img {
 width: 50%;
 height: 400px;
 }

 .service-card-lg .service-content-wrapper {
 width: 50%;
 padding: var(--spacing-lg);
 }
}

/* Process Section */
.process-section {
 background-color: var(--background-color);
 text-align: center;
}

.process-section h2 {
 margin-bottom: var(--spacing-lg);
}

.process-steps {
 display: flex;
 flex-direction: column;
 gap: var(--spacing-md);
 position: relative;
 padding: var(--spacing-md) 0;
}

.process-step {
 background-color: var(--light-background);
 padding: var(--spacing-md);
 border-radius: 8px;
 box-shadow: var(--shadow-color) 0px 4px 12px;
 text-align: left;
 position: relative;
 z-index: 1;
}

.process-step h3 {
 color: var(--primary-color);
 margin-bottom: var(--spacing-xs);
}

.process-step p {
 color: var(--text-color-light);
}

.process-step-number {
 position: absolute;
 top: var(--spacing-md);
 left: var(--spacing-md);
 font-size: 2.5em;
 font-weight: 700;
 color: rgba(0, 86, 179, 0.1);
 z-index: 0;
 line-height: 1;
}

.process-step h3 {
 padding-left: 50px; /* Make space for the number */
}

@media (min-width: 769px) {
 .process-steps {
 flex-direction: row;
 justify-content: space-between;
 align-items: flex-start; /* Align numbers at top */
 padding: var(--spacing-lg) 0;
 }

 .process-step {
 flex: 1;
 margin: 0 var(--spacing-sm);
 }

 .process-steps::before {
 content: '';
 position: absolute;
 top: 60px; /* Adjust to align with top of cards */
 left: 50%;
 transform: translateX(-50%);
 width: 80%; /* Line will cover 80% width */
 height: 2px;
 background-color: var(--primary-color);
 z-index: 0;
 }

 .process-step-number {
 position: static;
 width: 60px;
 height: 60px;
 background-color: var(--primary-color);
 color: var(--light-background);
 border-radius: 50%;
 display: flex;
 justify-content: center;
 align-items: center;
 font-size: 1.5em;
 margin: 0 auto var(--spacing-sm);
 box-shadow: var(--shadow-color) 0px 2px 8px;
 }

 .process-step h3 {
 padding-left: 0; /* Remove padding when numbers are outside */
 }
}

/* About Page */
.about-hero {
 background-color: var(--primary-color);
 color: var(--light-background);
 padding: var(--spacing-xl) 0;
 text-align: center;
}

.about-hero h1 {
 font-size: 3em;
 color: var(--light-background);
 margin-bottom: var(--spacing-sm);
}

.about-hero p {
 font-size: 1.2em;
 max-width: 900px;
 margin: 0 auto;
 color: rgba(255, 255, 255, 0.9);
}

.story-section img {
 max-width: 100%;
 height: auto;
 border-radius: 8px;
 box-shadow: var(--shadow-color) 0px 8px 24px;
 margin-bottom: var(--spacing-md);
}

.mission-values-grid {
 display: grid;
 grid-template-columns: 1fr;
 gap: var(--spacing-lg);
 max-width: 1000px;
 margin: var(--spacing-lg) auto;
}

.mission-values-card {
 background-color: var(--light-background);
 padding: var(--spacing-md);
 border-radius: 8px;
 box-shadow: var(--shadow-color) 0px 4px 12px;
}

.mission-values-card h3 {
 color: var(--primary-color);
 margin-bottom: var(--spacing-sm);
}

.vision-section {
 background-color: var(--primary-color);
 color: var(--light-background);
 text-align: center;
 padding: var(--spacing-xl) 0;
}

.vision-section h2 {
 color: var(--light-background);
 margin-bottom: var(--spacing-sm);
}

.vision-section p {
 font-size: 1.1em;
 max-width: 900px;
 margin: 0 auto;
 color: rgba(255, 255, 255, 0.9);
}

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

.team-section h2 {
 margin-bottom: var(--spacing-lg);
}

.team-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: var(--spacing-md);
}

.team-member-card {
 background-color: var(--light-background);
 padding: var(--spacing-md);
 border-radius: 8px;
 box-shadow: var(--shadow-color) 0px 4px 12px;
 text-align: center;
 transition: transform 0.3s ease;
}

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

.team-member-card img {
 width: 150px;
 height: 150px;
 border-radius: 50%;
 object-fit: cover;
 border: 3px solid var(--primary-color);
 margin-bottom: var(--spacing-sm);
}

.team-member-card h3 {
 margin-bottom: var(--spacing-xs);
 color: var(--text-color);
}

.team-member-card p {
 color: var(--secondary-color);
 font-size: 0.95em;
}

@media (min-width: 769px) {
 .mission-values-grid {
 grid-template-columns: repeat(2, 1fr);
 }
}

.blog-posts-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 gap: var(--spacing-lg);
}

.blog-post-card {
 background-color: var(--light-background);
 border-radius: 8px;
 overflow: hidden;
 box-shadow: var(--shadow-color) 0px 4px 12px;
 transition: transform 0.3s ease;
}

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

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

.blog-post-card-content {
 padding: var(--spacing-md);
}

.blog-post-card h3 {
 margin-bottom: var(--spacing-xs);
 color: var(--primary-color);
}

.blog-post-card p {
 font-size: 0.95em;
 color: var(--text-color-light);
 margin-bottom: var(--spacing-sm);
}

.blog-post-card .post-meta {
 font-size: 0.85em;
 color: var(--secondary-color);
 display: flex;
 justify-content: space-between;
 margin-top: var(--spacing-sm);
 border-top: 1px solid var(--border-color);
 padding-top: var(--spacing-sm);
}

.blog-post-card .read-more {
 display: inline-block;
 margin-top: var(--spacing-sm);
 color: var(--primary-color);
 font-weight: 500;
}

/* Single Blog Post */
.blog-post-header {
 text-align: center;
 background-color: var(--primary-color);
 color: var(--light-background);
 padding: var(--spacing-lg) 0;
 margin-bottom: var(--spacing-md);
}

.blog-post-header h1 {
 color: var(--light-background);
 font-size: 2.8em;
 margin-bottom: var(--spacing-sm);
}

.blog-post-meta {
 font-size: 0.95em;
 color: rgba(255, 255, 255, 0.8);
 margin-bottom: var(--spacing-md);
}

.blog-post-meta span {
 margin: 0 var(--spacing-xs);
 white-space: nowrap;
}

.blog-post-content {
 max-width: 900px;
 margin: 0 auto;
 background-color: var(--light-background);
 padding: var(--spacing-md);
 border-radius: 8px;
 box-shadow: var(--shadow-color) 0px 4px 12px;
}

.blog-post-content img {
 max-width: 100%;
 height: auto;
 border-radius: 8px;
 margin: var(--spacing-md) 0;
 display: block;
}

.blog-post-content h2, .blog-post-content h3 {
 color: var(--primary-color);
 margin-top: var(--spacing-md);
 margin-bottom: var(--spacing-sm);
}

.blog-post-content p {
 margin-bottom: var(--spacing-md);
 line-height: 1.8;
}

.blog-post-content ul, .blog-post-content ol {
 margin-bottom: var(--spacing-md);
 padding-left: var(--spacing-lg);
 list-style-position: inside;
}

.blog-post-content ul li, .blog-post-content ol li {
 margin-bottom: var(--spacing-xs);
 color: var(--text-color-light);
}

.blog-post-content blockquote {
 border-left: 4px solid var(--primary-color);
 padding-left: var(--spacing-md);
 margin: var(--spacing-md) 0;
 font-style: italic;
 color: var(--text-color-light);
 background-color: var(--background-color);
 border-radius: 4px;
 padding-top: var(--spacing-xs);
 padding-bottom: var(--spacing-xs);
}

/* Testimonials Page */
.testimonials-page-intro {
 text-align: center;
 margin-bottom: var(--spacing-lg);
}

.testimonials-page-intro h1 {
 color: var(--primary-color);
}

.testimonials-page-intro p {
 max-width: 800px;
 margin: 0 auto;
 font-size: 1.1em;
 color: var(--text-color-light);
}

/* Gallery Page */
.gallery-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 gap: var(--spacing-md);
}

.gallery-item {
 background-color: var(--light-background);
 border-radius: 8px;
 overflow: hidden;
 box-shadow: var(--shadow-color) 0px 4px 12px;
 cursor: pointer;
 transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
 transform: translateY(-5px);
 box-shadow: rgba(0, 0, 0, 0.15) 0px 6px 16px;
}

.gallery-item img {
 width: 100%;
 height: 250px;
 object-fit: cover;
 display: block;
}

.gallery-item-title {
 padding: var(--spacing-sm);
 font-weight: 600;
 color: var(--text-color);
 font-size: 1.1em;
}

/* Lightbox styles */
.lightbox {
 display: none;
 position: fixed;
 z-index: 2000;
 left: 0;
 top: 0;
 width: 100%;
 height: 100%;
 background-color: rgba(0, 0, 0, 0.8);
 display: flex;
 justify-content: center;
 align-items: center;
}

.lightbox-content {
 max-width: 90%;
 max-height: 90%;
 width: auto;
 height: auto;
 display: block;
 border-radius: 8px;
 box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
 position: absolute;
 top: 20px;
 right: 30px;
 color: var(--light-background);
 font-size: 3em;
 font-weight: bold;
 cursor: pointer;
 transition: color 0.3s ease;
}

.lightbox-close:hover,
.lightbox-close:focus {
 color: var(--primary-color);
 text-decoration: none;
}

/* FAQ Page */
.faq-section {
 background-color: var(--light-background);
 padding: var(--spacing-xl) 0;
}

.faq-section h1 {
 text-align: center;
 color: var(--primary-color);
 margin-bottom: var(--spacing-lg);
}

.faq-section .faq-list {
 max-width: 800px;
 margin: 0 auto;
}

/* 404 Page */
.error-page {
 display: flex;
 flex-direction: column;
 justify-content: center;
 align-items: center;
 min-height: calc(100vh - 200px); /* Adjust based on header/footer height */
 text-align: center;
 background-color: var(--background-color);
 padding: var(--spacing-lg);
}

.error-page h1 {
 font-size: 6em;
 color: var(--primary-color);
 margin-bottom: var(--spacing-sm);
}

.error-page h2 {
 font-size: 2.5em;
 color: var(--text-color);
 margin-bottom: var(--spacing-md);
}

.error-page p {
 font-size: 1.1em;
 color: var(--text-color-light);
 margin-bottom: var(--spacing-lg);
 max-width: 600px;
}

/* Thank You Page */
.thank-you-page {
 display: flex;
 flex-direction: column;
 justify-content: center;
 align-items: center;
 min-height: calc(100vh - 200px); /* Adjust based on header/footer height */
 text-align: center;
 background-color: var(--background-color);
 padding: var(--spacing-lg);
}

.thank-you-page h1 {
 font-size: 3em;
 color: var(--primary-color);
 margin-bottom: var(--spacing-sm);
}

.thank-you-page p {
 font-size: 1.1em;
 color: var(--text-color);
 margin-bottom: var(--spacing-xl);
 max-width: 700px;
}

.thank-you-page .btn {
 margin-top: var(--spacing-md);
}