:root {
 --primary-color: #007bff; /* Blue */
 --secondary-color: #6c757d; /* Gray */
 --accent-color: #28a745; /* Green */
 --text-color: #333;
 --text-light-color: #666;
 --white-color: #ffffff;
 --light-gray: #f8f9fa; /* Light background */
 --border-color: rgba(255, 255, 255, 0.2);
 --glass-bg-base: rgba(255, 255, 255, 0.1);
 --glass-bg-hover: rgba(255, 255, 255, 0.2);
 --glass-border: rgba(255, 255, 255, 0.3);
 --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.1);
 --shadow-medium: 0 10px 15px rgba(0, 0, 0, 0.15);
 --border-radius-small: 8px;
 --border-radius-medium: 15px;
 --border-radius-large: 25px;
 --header-height: 80px;

 /* Gradient for hero and sections */
 --hero-gradient-start: #a7e1ff; /* Light blue */
 --hero-gradient-end: #c4d7ff; /* Lighter blue */
 --section-gradient-start: #e0f2f7; /* Very light blue */
 --section-gradient-end: #e6f7ff; /* Pale blue */

 --font-heading: 'Montserrat', sans-serif;
 --font-body: 'Open Sans', sans-serif;
}

/* Reset and base styles */
*,
*::before,
*::after {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
}

html {
 scroll-behavior: smooth;
}

body {
 font-family: var(--font-body);
 line-height: 1.6;
 color: var(--text-color);
 background-color: var(--light-gray);
 overflow-x: hidden;
 position: relative;
}

body::before {
 content: '';
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: linear-gradient(135deg, var(--section-gradient-start) 0%, var(--section-gradient-end) 100%);
 opacity: 0.7;
 z-index: -1;
}

img {
 max-width: 100%;
 height: auto;
 display: block;
 border-radius: var(--border-radius-small);
}

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

a:hover {
 color: #0056b3;
}

ul {
 list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
 font-family: var(--font-heading);
 color: var(--text-color);
 margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; font-weight: 700; }
h2 { font-size: 2rem; font-weight: 600; }
h3 { font-size: 1.5rem; font-weight: 600; }
p { font-size: 1rem; margin-bottom: 1rem; }

@media (min-width: 768px) {
 h1 { font-size: 3.5rem; }
 h2 { font-size: 2.5rem; }
 h3 { font-size: 1.8rem; }
}

.container {
 max-width: 1200px;
 margin: 0 auto;
 padding: 0 1rem;
}

/* Glassmorphism base card */
.glass-card {
 background: var(--glass-bg-base);
 backdrop-filter: blur(10px);
 border: 1px solid var(--glass-border);
 border-radius: var(--border-radius-medium);
 box-shadow: var(--shadow-light);
 padding: 1.5rem;
 margin: 1rem 0;
 transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
 transform: translateY(-5px);
 box-shadow: var(--shadow-medium);
}

/* Buttons */
.btn {
 display: inline-block;
 padding: 0.8rem 1.5rem;
 border-radius: var(--border-radius-small);
 font-weight: 600;
 font-size: 1rem;
 text-align: center;
 cursor: pointer;
 transition: all 0.3s ease;
 border: none;
 text-transform: uppercase;
 letter-spacing: 0.5px;
}

.btn-primary {
 background-color: var(--primary-color);
 color: var(--white-color);
 box-shadow: var(--shadow-light);
}

.btn-primary:hover {
 background-color: #0056b3;
 box-shadow: var(--shadow-medium);
}

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

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

.btn-glass {
 background: rgba(255, 255, 255, 0.2);
 border: 1px solid rgba(255, 255, 255, 0.4);
 backdrop-filter: blur(5px);
 color: var(--white-color);
 box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-glass:hover {
 background: rgba(255, 255, 255, 0.3);
 box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

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

/* Header */
.main-header {
 width: 100%;
 position: fixed;
 top: 0;
 left: 0;
 z-index: 1000;
 background: rgba(255, 255, 255, 0.8);
 backdrop-filter: blur(10px);
 border-bottom: 1px solid rgba(255, 255, 255, 0.3);
 box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); /* Softer shadow */
 transition: background 0.3s ease, box-shadow 0.3s ease;
 height: var(--header-height);
 display: flex;
 align-items: center;
}

.main-header.scrolled {
 background: rgba(255, 255, 255, 0.95); /* More opaque on scroll */
 box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.navbar {
 display: flex;
 justify-content: space-between;
 align-items: center;
 max-width: 1200px;
 margin: 0 auto;
 padding: 0 1rem;
 width: 100%;
}

.logo {
 font-family: var(--font-heading);
 font-size: 1.8rem;
 font-weight: 700;
 color: var(--primary-color);
 text-decoration: none;
 padding: 0.5rem 0;
}

.nav-links {
 display: flex;
 gap: 1.5rem;
}

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

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

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

.nav-toggle {
 display: none;
 background: none;
 border: none;
 font-size: 1.8rem;
 cursor: pointer;
 padding: 0.5rem;
 color: var(--primary-color);
 position: absolute;
 right: 1rem;
 top: 50%;
 transform: translateY(-50%);
 z-index: 100; /* Ensure toggle button is above other elements */
 width: 30px;
 height: 20px;
 display: flex;
 flex-direction: column;
 justify-content: space-between;
}

.nav-toggle span {
 display: block;
 width: 100%;
 height: 3px;
 background-color: var(--primary-color);
 border-radius: 2px;
 transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
 transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
 opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
 transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
 .nav-toggle {
 display: flex;
 align-items: center;
 justify-content: center;
 }

 .nav-links {
 flex-direction: column;
 position: fixed;
 top: var(--header-height);
 left: 0;
 width: 100%;
 height: calc(100vh - var(--header-height));
 background: rgba(255, 255, 255, 0.95); /* Glass panel for mobile menu */
 backdrop-filter: blur(15px);
 transform: translateX(100%);
 transition: transform 0.4s ease-in-out;
 z-index: 999;
 padding: 2rem 1rem;
 gap: 1rem;
 box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
 border-top: 1px solid rgba(255, 255, 255, 0.3);
 overflow-y: auto;
 }

 .nav-links.active {
 transform: translateX(0);
 }

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

 .nav-links li a {
 display: block;
 padding: 0.8rem 0;
 font-size: 1.2rem;
 color: var(--text-color);
 background: rgba(var(--primary-color-rgb), 0.05); /* Subtle background for active link */
 border-radius: var(--border-radius-small);
 transition: background 0.3s ease;
 }

 .nav-links li a:hover {
 background: rgba(var(--primary-color-rgb), 0.1);
 }
}

/* Hero Section */
.hero-section {
 position: relative;
 padding: 120px 0 60px; /* Adjust padding for fixed header */
 min-height: 80vh;
 display: flex;
 align-items: center;
 text-align: center;
 color: var(--text-color);
 overflow: hidden;
}

.hero-background-gradient {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: linear-gradient(135deg, var(--hero-gradient-start) 0%, var(--hero-gradient-end) 100%);
 opacity: 0.8;
 z-index: -1;
}

.hero-content-wrapper {
 display: flex;
 flex-direction: column;
 align-items: center;
 gap: 2rem;
}

.hero-text-box {
 background: rgba(255, 255, 255, 0.2); /* Lighter glass for hero */
 backdrop-filter: blur(15px);
 border: 1px solid rgba(255, 255, 255, 0.4);
 box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
 padding: 3rem 2rem;
 border-radius: var(--border-radius-large);
 max-width: 800px;
 color: var(--text-color);
}

.hero-text-box h1 {
 font-size: 2.8rem;
 color: var(--text-color);
}

.hero-subtitle {
 font-size: 1.1rem;
 margin-bottom: 2rem;
 color: var(--text-light-color);
 max-width: 600px;
 margin-left: auto;
 margin-right: auto;
}

.hero-buttons {
 display: flex;
 gap: 1.5rem;
 justify-content: center;
 flex-wrap: wrap;
}

.hero-approach-card {
 max-width: 400px;
 padding: 2rem;
 text-align: left;
}

.hero-approach-card h3 {
 margin-bottom: 1rem;
 color: var(--primary-color);
}

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

.hero-approach-card li {
 display: flex;
 align-items: flex-start;
 margin-bottom: 0.8rem;
 font-size: 1.05rem;
}

.hero-approach-card .icon-checkmark {
 display: inline-block;
 color: var(--accent-color);
 font-size: 1.2rem;
 margin-right: 0.8rem;
 transform: translateY(2px);
}
.icon-checkmark::before { content: ''; }
.icon-point::before { content: '•'; }
.icon-phone::before { content: ' '; }
.icon-envelope::before { content: ' '; }
.icon-location::before { content: ' '; }

@media (min-width: 768px) {
 .hero-content-wrapper {
 flex-direction: row;
 justify-content: center;
 text-align: left;
 align-items: flex-start;
 padding-top: 50px;
 }

 .hero-text-box {
 text-align: left;
 font-size: 1.15rem;
 padding: 3rem;
 flex: 1;
 margin: 0;
 max-width: 700px;
 }

 .hero-text-box h1 {
 font-size: 3.5rem;
 }

 .hero-subtitle {
 max-width: none;
 margin-left: 0;
 margin-right: 0;
 }

 .hero-buttons {
 justify-content: flex-start;
 }

 .hero-approach-card {
 margin: 0;
 flex-shrink: 0;
 width: 300px;
 align-self: flex-start;
 transform: translateY(50px) translateX(20px); /* Slightly adjust position */
 padding: 1.5rem;
 }
}

@media (min-width: 1024px) {
 .hero-section {
 min-height: 90vh;
 }
 .hero-text-box h1 {
 font-size: 4rem;
 }
 .hero-approach-card {
 width: 350px;
 transform: translateY(70px) translateX(40px);
 }
}

/* Section styles */
section {
 padding: 60px 0;
 position: relative;
 z-index: 1; /* Ensure content is above the body gradient */
}

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

/* Glassmorphism sections */
.metrics-section, .benefits-section, .services-section,
.about-section, .testimonials-section, .faq-section,
.contact-form-section {
 padding: 80px 0;
}

.metrics-section .container,
.benefits-section .container,
.services-section .container,
.testimonials-section .container,
.faq-section .container,
.contact-form-section .container {
 padding: 2rem;
 background: rgba(255, 255, 255, 0.1);
 backdrop-filter: blur(8px);
 border: 1px solid rgba(255, 255, 255, 0.3);
 border-radius: var(--border-radius-large);
 box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* Softer shadow for entire section content */
}

/* Metrics Section */
.metrics-section {
 padding: 40px 0;
}

.metrics-section h2 {
 text-align: center;
 margin-bottom: 2.5rem;
}

.metrics-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
 gap: 1.5rem;
 text-align: center;
}

.metric-card {
 padding: 1.5rem 1rem;
 background: rgba(255, 255, 255, 0.15); /* Slightly darker glass for metrics */
}

.metric-card h3 {
 font-size: 2rem;
 font-weight: 700;
 color: var(--primary-color);
 margin-bottom: 0.5rem;
}

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

/* Benefits Section */
.benefits-section h2 {
 text-align: center;
 margin-bottom: 3rem;
}

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

.benefit-card {
 padding: 1.5rem;
 text-align: center;
}

.benefit-card img {
 height: 200px;
 object-fit: cover;
 margin: 0 auto 1.5rem;
 border-radius: var(--border-radius-small);
}

.benefit-card h3 {
 color: var(--primary-color);
 font-size: 1.35rem;
 margin-bottom: 0.8rem;
}

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

/* Services Section */
.services-section h2 {
 text-align: center;
 margin-bottom: 3rem;
}

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

.service-card {
 padding: 1.5rem;
 text-align: center;
}

.service-card img {
 height: 180px;
 object-fit: cover;
 margin: 0 auto 1.5rem;
 border-radius: var(--border-radius-small);
}

.service-card h3 {
 color: var(--primary-color);
 font-size: 1.3rem;
 margin-bottom: 0.8rem;
}

.service-card p {
 font-size: 0.9rem;
 color: var(--text-light-color);
}

/* About Section */
.about-section {
 background: linear-gradient(135deg, rgba(var(--hero-gradient-start-rgb), 0.2) 0%, rgba(var(--hero-gradient-end-rgb), 0.2) 100%), var(--light-gray);/* Frosted container with blur */
 background-blend-mode: overlay;
 padding: 80px 0;
}

.about-grid {
 display: grid;
 grid-template-columns: 1fr;
 gap: 2rem;
}

.about-content, .about-reasons {
 padding: 2rem;
}

.about-content h2 {
 color: var(--primary-color);
 font-size: 2rem;
 margin-bottom: 1rem;
}

.about-reasons ul {
 list-style: none;
 padding: 0;
}

.about-reasons li {
 display: flex;
 align-items: flex-start;
 margin-bottom: 1rem;
 font-size: 1.1rem;
 color: var(--text-light-color);
 padding-left: 1.5rem;
 position: relative;
}

.about-reasons li .icon-point {
 position: absolute;
 left: 0;
 top: 5px;
 color: var(--accent-color);
 font-size: 1.2rem;
}

@media (min-width: 768px) {
 .about-grid {
 grid-template-columns: 1fr 1fr;
 align-items: center;
 }
 .about-content h2 {
 font-size: 2.5rem;
 }
}

/* Testimonials Section */
.testimonials-section h2 {
 text-align: center;
 margin-bottom: 3rem;
}

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

.testimonial-card {
 padding: 2rem;
 text-align: center;
 position: relative;
 border-radius: var(--border-radius-large);
 background: rgba(255, 255, 255, 0.2); /* Floating glass effect */
 transition: all 0.3s ease;
}

.testimonial-card:hover {
 transform: translateY(-8px) scale(1.02);
 box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

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

.testimonial-card cite {
 display: block;
 font-weight: 600;
 color: var(--primary-color);
 font-style: normal;
 font-size: 0.95rem;
}

/* FAQ Section */
.faq-section h2 {
 text-align: center;
 margin-bottom: 3rem;
}

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

.faq-item {
 margin-bottom: 1rem;
 overflow: hidden;
 border-radius: var(--border-radius-medium);
 padding: 0; /* Remove internal padding to control it in button/answer */
}

.faq-question {
 width: 100%;
 display: flex;
 justify-content: space-between;
 align-items: center;
 padding: 1.2rem 1.5rem;
 font-size: 1.1rem;
 font-weight: 600;
 text-align: left;
 background: rgba(255, 255, 255, 0.15); /* Glass effect for active question */
 border: none;
 cursor: pointer;
 border-bottom: 1px solid rgba(255, 255, 255, 0.3);
 color: var(--primary-color);
 transition: background-color 0.3s ease, color 0.3s ease;
}

.faq-question::after {
 content: '+';
 font-size: 1.5rem;
 font-weight: normal;
 transition: transform 0.3s ease;
}

.faq-question.active {
 background-color: var(--primary-color);
 color: var(--white-color);
}

.faq-question.active::after {
 content: '-';
 transform: rotate(0deg);
}

.faq-answer {
 padding: 0 1.5rem;
 background: rgba(255, 255, 255, 0.05); /* Lighter background for answer */
 max-height: 0;
 overflow: hidden;
 transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.faq-answer.active {
 max-height: 200px; /* Arbitrary large enough value */
 padding: 1.2rem 1.5rem;
}
.faq-answer p {
 margin-bottom: 0;
 color: var(--text-light-color);
}

/* Contact Form Section */
.contact-form-section {
 padding-bottom: 80px;
}

.contact-grid {
 display: grid;
 grid-template-columns: 1fr;
 gap: 2rem;
}

.contact-form-wrapper {
 padding: 2.5rem;
}

.contact-form-wrapper h2 {
 text-align: center;
 margin-bottom: 2rem;
 color: var(--primary-color);
}

.contact-form .form-group {
 margin-bottom: 1.2rem;
}

.contact-form label {
 display: block;
 margin-bottom: 0.5rem;
 font-weight: 600;
 color: var(--text-color);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
 width: 100%;
 padding: 0.8rem;
 border: 1px solid rgba(255, 255, 255, 0.4);
 background: rgba(255, 255, 255, 0.1);
 border-radius: var(--border-radius-small);
 font-family: var(--font-body);
 font-size: 1rem;
 color: var(--text-color);
 transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
 border-color: var(--primary-color);
 outline: none;
 box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

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

.checkbox-group {
 display: flex;
 align-items: center;
}

.checkbox-group input[type="checkbox"] {
 margin-right: 0.8rem;
 min-width: 1rem;
 min-height: 1rem;
}

.form-acknowledgement {
 margin-top: 1.5rem;
 text-align: center;
 font-size: 0.9rem;
 color: var(--text-light-color);
}

.contact-info {
 padding: 2.5rem;
 text-align: center;
}

.contact-info h2 {
 color: var(--primary-color);
 margin-bottom: 1.5rem;
}

.contact-info p {
 margin-bottom: 1rem;
 font-size: 1.05rem;
 color: var(--text-light-color);
}
.contact-info p a {
 color: var(--primary-color);
 font-weight: 500;
}
.contact-info p i {
 color: var(--accent-color);
 margin-right: 0.5rem;
}

.map-container {
 margin-top: 2rem;
 border-radius: var(--border-radius-medium);
 overflow: hidden;
 box-shadow: var(--shadow-light);
 border: 1px solid var(--glass-border);
}

@media (min-width: 768px) {
 .contact-grid {
 grid-template-columns: 1.5fr 1fr;
 align-items: flex-start;
 }
}

/* CTA before footer */
.cta-before-footer {
 padding: 60px 0;
 background: linear-gradient(90deg, var(--primary-color), #00aaff); /* Engaging gradient */
 color: var(--white-color);
 text-align: center;
 border-radius: var(--border-radius-large);
 margin: 40px auto;
 max-width: 1000px;
 box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.cta-before-footer h2 {
 color: var(--white-color);
 font-size: 2.2rem;
 margin-bottom: 1.5rem;
}

.cta-before-footer .btn-primary {
 background-color: var(--white-color);
 color: var(--primary-color);
 border: 2px solid transparent;
}

.cta-before-footer .btn-primary:hover {
 background-color: transparent;
 color: var(--white-color);
 border-color: var(--white-color);
}

/* Footer */
.main-footer {
 background: rgba(255, 255, 255, 0.7); /* Semi-transparent footer with blur */
 backdrop-filter: blur(8px);
 border-top: 1px solid rgba(255, 255, 255, 0.3);
 padding: 3rem 0 1rem;
 color: var(--text-light-color);
 position: relative;
 z-index: 10;
}

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

.footer-col {
 padding: 1.5rem;
 margin: 0; /* Override glass-card margin */
}

.footer-col h3 {
 color: var(--primary-color);
 margin-bottom: 1rem;
 font-size: 1.2rem;
}

.footer-col p, .footer-col li {
 font-size: 0.9rem;
 line-height: 1.8;
}

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

.footer-col ul li a {
 color: var(--text-light-color);
 transition: color 0.3s ease;
 display: block;
 padding: 0.2rem 0;
}

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

.footer-disclaimer {
 border-top: 1px solid rgba(0, 0, 0, 0.1);
 padding-top: 1rem;
 margin-top: 1rem;
 font-size: 0.8rem;
 text-align: center;
 color: var(--text-light-color);
}

/* Specific adjustments for other pages */
.legal-page-content {
 background: rgba(255, 255, 255, 0.1);
 backdrop-filter: blur(8px);
 border: 1px solid rgba(255, 255, 255, 0.3);
 border-radius: var(--border-radius-large);
 box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
 padding: 3rem;
 margin-top: calc(var(--header-height) + 2rem);
 margin-bottom: 2rem;
}

.legal-page-content h1 {
 font-size: 2.5rem;
 margin-bottom: 1.5rem;
 color: var(--primary-color);
}

.legal-page-content h2 {
 font-size: 1.8rem;
 margin-top: 2rem;
 margin-bottom: 1rem;
 color: var(--text-color);
}

.legal-page-content h3 {
 font-size: 1.3rem;
 margin-top: 1.5rem;
 margin-bottom: 0.8rem;
 color: var(--text-color);
}

.legal-page-content p {
 margin-bottom: 1rem;
 color: var(--text-light-color);
}

.legal-page-content ul {
 list-style: disc;
 padding-left: 20px;
 margin-bottom: 1rem;
}

.legal-page-content ol {
 list-style: decimal;
 padding-left: 20px;
 margin-bottom: 1rem;
}

.legal-page-content li {
 margin-bottom: 0.5rem;
 color: var(--text-light-color);
}

/* About Page Specific */
.about-hero-section {
 padding: 120px 0 60px;
 background: linear-gradient(135deg, var(--hero-gradient-start) 0%, var(--hero-gradient-end) 100%);
 text-align: center;
 color: var(--text-color);
 position: relative;
 overflow: hidden;
}

.about-hero-section h1 {
 font-size: 3.5rem;
 color: var(--text-color);
}

.about-hero-section p {
 font-size: 1.2rem;
 max-width: 800px;
 margin: 0 auto 2rem;
 color: var(--text-light-color);
}

.about-intro {
 align-items: center;
}

.about-intro-text, .about-intro-image {
 padding: 2rem;
}

.about-intro-text h2 {
 color: var(--primary-color);
 margin-bottom: 1rem;
}

.mission-vision-grid {
 display: grid;
 grid-template-columns: 1fr;
 gap: 2rem;
 margin-bottom: 4rem;
}

@media (min-width: 768px) {
 .mission-vision-grid {
 grid-template-columns: 1fr 1fr;
 }
}

.our-values-section {
 background-color: var(--light-gray);
 padding: 80px 0;
}

.our-values-section h2 {
 text-align: center;
 margin-bottom: 3rem;
 color: var(--primary-color);
}

.values-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: 2rem;
}

.value-card {
 text-align: center;
 padding: 2rem;
}

.value-card h3 {
 color: var(--primary-color);
 margin-bottom: 0.8rem;
 font-size: 1.4rem;
}

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

.team-section {
 padding: 80px 0;
}

.team-section h2 {
 text-align: center;
 margin-bottom: 3rem;
 color: var(--primary-color);
}

.team-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
 gap: 2rem;
}

.team-member-card {
 text-align: center;
 padding: 1.5rem;
}

.team-member-card img {
 width: 150px;
 height: 150px;
 border-radius: 50%;
 object-fit: cover;
 margin: 0 auto 1rem;
 border: 3px solid var(--primary-color);
 box-shadow: var(--shadow-light);
}

.team-member-card h3 {
 margin-bottom: 0.5rem;
 color: var(--text-color);
 font-size: 1.2rem;
}

.team-member-card p {
 color: var(--text-light-color);
 font-size: 0.9rem;
 margin-bottom: 0.5rem;
}

/* Services page (reusing styles but explicit for content) */
.services-introduction h1 {
 font-size: 3rem;
 color: var(--primary-color);
 margin-bottom: 1rem;
}
.services-introduction p {
 font-size: 1.1rem;
 color: var(--text-light-color);
 max-width: 800px;
 margin: 0 auto 2rem;
}

.how-we-work-section {
 padding: 80px 0;
 background-color: var(--light-gray);
}

.how-we-work-section h2 {
 text-align: center;
 margin-bottom: 3rem;
 color: var(--primary-color);
}

.process-steps {
 display: grid;
 grid-template-columns: 1fr;
 gap: 2rem;
}

.process-step {
 padding: 2rem;
 position: relative;
 text-align: center;
}

.process-step::before {
 content: attr(data-step-number);
 position: absolute;
 top: -20px;
 left: 50%;
 transform: translateX(-50%);
 background-color: var(--primary-color);
 color: var(--white-color);
 width: 40px;
 height: 40px;
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 font-weight: 700;
 font-size: 1.2rem;
 box-shadow: var(--shadow-medium);
 z-index: 2;
}

.process-step h3 {
 margin-top: 1.5rem;
 color: var(--text-color);
 font-size: 1.3rem;
}

.process-step p {
 color: var(--text-light-color);
 font-size: 0.95rem;
}

@media (min-width: 768px) {
 .process-steps {
 grid-template-columns: repeat(3, 1fr);
 }
}

/* Blog Page */
.blog-intro {
 text-align: center;
 margin-bottom: 3rem;
}
.blog-intro h1 {
 font-size: 3rem;
 color: var(--primary-color);
}
.blog-intro p {
 font-size: 1.1rem;
 color: var(--text-light-color);
 max-width: 800px;
 margin: 0 auto 2rem;
}

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

.blog-post-card {
 padding: 1.5rem;
 display: flex;
 flex-direction: column;
}

.blog-post-card img {
 height: 200px;
 object-fit: cover;
 margin-bottom: 1rem;
}

.blog-post-card h3 {
 font-size: 1.4rem;
 margin-bottom: 0.8rem;
 color: var(--primary-color);
}

.blog-post-card .post-meta {
 font-size: 0.85rem;
 color: var(--secondary-color);
 margin-bottom: 1rem;
}

.blog-post-card .post-meta a {
 color: var(--secondary-color);
}

.blog-post-card p {
 font-size: 0.95rem;
 color: var(--text-light-color);
 flex-grow: 1;
}

.blog-post-card .btn-secondary {
 align-self: flex-start;
 margin-top: 1.5rem;
}

/* Individual Blog Post */
.blog-post-content {
 background: rgba(255, 255, 255, 0.1);
 backdrop-filter: blur(8px);
 border: 1px solid rgba(255, 255, 255, 0.3);
 border-radius: var(--border-radius-large);
 box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
 padding: 3rem;
 margin-top: calc(var(--header-height) + 2rem);
 margin-bottom: 2rem;
}

.blog-post-content h1 {
 font-size: 2.8rem;
 margin-bottom: 1rem;
 color: var(--primary-color);
}

.blog-post-meta {
 font-size: 0.9rem;
 color: var(--secondary-color);
 margin-bottom: 2rem;
 border-bottom: 1px solid rgba(0, 0, 0, 0.1);
 padding-bottom: 1rem;
}

.blog-post-meta span {
 margin-right: 1rem;
}

.blog-post-hero-image {
 width: 100%;
 height: auto;
 object-fit: cover;
 border-radius: var(--border-radius-medium);
 margin-bottom: 2rem;
}

.blog-post-content article h2 {
 font-size: 2rem;
 margin-top: 2rem;
 margin-bottom: 1rem;
 color: var(--text-color);
}

.blog-post-content article h3 {
 font-size: 1.5rem;
 margin-top: 1.5rem;
 margin-bottom: 0.8rem;
 color: var(--text-color);
}

.blog-post-content article p {
 margin-bottom: 1.5rem;
 line-height: 1.7;
 color: var(--text-light-color);
}

.blog-post-content article ul,
.blog-post-content article ol {
 margin-bottom: 1.5rem;
 list-style-type: disc;
 padding-left: 20px;
 color: var(--text-light-color);
}

.blog-post-content article blockquote {
 background: rgba(var(--primary-color-rgb), 0.05); /* Light primary color background */
 border-left: 5px solid var(--primary-color);
 padding: 1rem 1.5rem;
 margin: 1.5rem 0;
 font-style: italic;
 color: var(--text-light-color);
 border-radius: var(--border-radius-small);
}

.blog-post-author {
 display: flex;
 align-items: center;
 margin-top: 3rem;
 padding-top: 2rem;
 border-top: 1px dashed rgba(0, 0, 0, 0.1);
}

.blog-post-author img {
 width: 80px;
 height: 80px;
 border-radius: 50%;
 object-fit: cover;
 margin-right: 1rem;
 border: 2px solid var(--primary-color);
}

.author-info h3 {
 margin-bottom: 0.3rem;
 font-size: 1.2rem;
 color: var(--primary-color);
}

.author-info p {
 font-size: 0.9rem;
 color: var(--text-light-color);
 margin-bottom: 0;
}

/* Testimonials Page */
.testimonials-page-intro {
 text-align: center;
 margin-bottom: 3rem;
}

.testimonials-page-intro h1 {
 font-size: 3rem;
 color: var(--primary-color);
}

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

.testimonials-page-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 gap: 2rem;
}

/* Gallery Page */
.gallery-intro {
 text-align: center;
 margin-bottom: 3rem;
}

.gallery-intro h1 {
 font-size: 3rem;
 color: var(--primary-color);
}

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

.gallery-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: 1.5rem;
}

.gallery-item {
 position: relative;
 overflow: hidden;
 border-radius: var(--border-radius-medium);
 box-shadow: var(--shadow-light);
 cursor: pointer;
 background: rgba(255, 255, 255, 0.1);
 backdrop-filter: blur(5px);
 transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
 transform: translateY(-5px) scale(1.02);
 box-shadow: var(--shadow-medium);
}

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

.gallery-item:hover img {
 transform: scale(1.05);
}

.gallery-item-overlay {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: rgba(0, 123, 255, 0.7); /* Primary color overlay */
 display: flex;
 justify-content: center;
 align-items: center;
 opacity: 0;
 transition: opacity 0.3s ease;
 border-radius: var(--border-radius-medium);
}

.gallery-item:hover .gallery-item-overlay {
 opacity: 1;
}

.gallery-item-overlay span {
 color: var(--white-color);
 font-size: 1.5rem;
 font-weight: 600;
 z-index: 1;
}

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

.lightbox.active {
 display: flex;
}

.lightbox img {
 max-width: 90%;
 max-height: 90%;
 object-fit: contain;
 border-radius: var(--border-radius-medium);
 box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.lightbox .close-btn {
 position: absolute;
 top: 20px;
 right: 30px;
 color: var(--white-color);
 font-size: 2.5rem;
 cursor: pointer;
 background: none;
 border: none;
 padding: 0.5rem;
}

/* 404 Page */
.error-404-section {
 min-height: calc(100vh - var(--header-height) - 200px); /* Adjust for header/footer */
 display: flex;
 flex-direction: column;
 justify-content: center;
 align-items: center;
 text-align: center;
 background: linear-gradient(135deg, #f0f4f8 0%, #e0e7ee 100%);
 padding: 80px 1rem;
 color: var(--text-color);
}

.error-404-content {
 background: rgba(255, 255, 255, 0.3); /* Glass card for 404 content */
 backdrop-filter: blur(10px);
 border: 1px solid rgba(255, 255, 255, 0.4);
 border-radius: var(--border-radius-large);
 box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
 padding: 3rem 2rem;
 max-width: 700px;
}

.error-404-content h1 {
 font-size: 6rem;
 color: var(--primary-color);
 margin-bottom: 1rem;
 line-height: 1;
}

.error-404-content h2 {
 font-size: 2.5rem;
 margin-bottom: 1.5rem;
 color: var(--text-color);
}

.error-404-content p {
 font-size: 1.1rem;
 margin-bottom: 2rem;
 color: var(--text-light-color);
}

/* Thank You Page */
.thank-you-section {
 min-height: calc(100vh - var(--header-height) - 200px);
 display: flex;
 flex-direction: column;
 justify-content: center;
 align-items: center;
 text-align: center;
 background: linear-gradient(135deg, #e6ffec 0%, #d4f8d9 100%); /* Greenish gradient for success */
 padding: 80px 1rem;
 color: var(--text-color);
}

.thank-you-content {
 background: rgba(255, 255, 255, 0.3);
 backdrop-filter: blur(10px);
 border: 1px solid rgba(255, 255, 255, 0.4);
 border-radius: var(--border-radius-large);
 box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
 padding: 3rem 2rem;
 max-width: 700px;
}

.thank-you-content .icon-success {
 font-size: 4rem;
 color: var(--accent-color);
 margin-bottom: 1rem;
}
.icon-success::before { content: ''; } /* Unicode checkmark */

.thank-you-content h1 {
 font-size: 3rem;
 color: var(--accent-color);
 margin-bottom: 1rem;
}

.thank-you-content p {
 font-size: 1.1rem;
 margin-bottom: 2rem;
 color: var(--text-light-color);
}

.thank-you-content .btn-primary {
 background-color: var(--accent-color);
}
.thank-you-content .btn-primary:hover {
 background-color: #218838;
}

/* Utility classes */
.visible {
 opacity: 1;
 transform: translateY(0);
}

@keyframes fadeIn {
 from { opacity: 0; }
 to { opacity: 1; }
}

[data-animation="fade-in"] {
 opacity: 0;
 transition: opacity 0.6s ease-out;
}
[data-animation="fade-in"].animate {
 opacity: 1;
}

[data-animation="slide-up"] {
 opacity: 0;
 transform: translateY(20px);
 transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
[data-animation="slide-up"].animate {
 opacity: 1;
 transform: translateY(0);
}

@media (max-width: 480px) {
 h1 { font-size: 2rem; }
 h2 { font-size: 1.7rem; }
 h3 { font-size: 1.3rem; }

 .hero-text-box { padding: 2rem 1rem; }
 .hero-text-box h1 { font-size: 2.2rem;}
 .hero-buttons { flex-direction: column; gap: 1rem; }
 .btn { width: 100%; }

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

 .testimonial-card, .service-card, .benefit-card, .metric-card, .value-card, .team-member-card {
 padding: 1rem;
 margin: 0.5rem 0;
 }

 .contact-form-wrapper, .contact-info {
 padding: 1.5rem;
 }

 .footer-content {
 grid-template-columns: 1fr;
 text-align: center;
 }
 .footer-col ul {
 text-align: center;
 }
 .footer-col ul li a {
 display: inline-block; /* For better spacing on mobile */
 margin: 0 0.5rem;
 }
 .footer-col {
 margin: 0;
 }
 .footer-disclaimer {
 padding: 1rem;
 }
 .legal-page-content {
 padding: 1.5rem;
 margin-top: calc(var(--header-height) + 1rem);
 }
 .legal-page-content h1 { font-size: 2rem; }
 .legal-page-content h2 { font-size: 1.5rem; }
 .legal-page-content h3 { font-size: 1.2rem; }

 .error-404-content h1 { font-size: 4rem; }
 .error-404-content h2 { font-size: 1.8rem; }
 .thank-you-content h1 { font-size: 2.2rem; }
}

@media (min-width: 768px) and (max-width: 1023px) {
 .container {
 padding: 0 1.5rem;
 }
 .nav-links li a {
 font-size: 0.95rem;
 }
 .hero-approach-card {
 transform: translateY(20px) translateX(10px);
 }
 .metrics-grid, .benefits-grid, .services-grid, .testimonials-grid, .team-grid, .about-grid {
 grid-template-columns: repeat(2, 1fr);
 }
 .contact-grid {
 grid-template-columns: 1fr;
 }
 .contact-form-wrapper, .contact-info {
 padding: 2rem;
 }
 .footer-content {
 grid-template-columns: repeat(2, 1fr);
 }
 .legal-page-content {
 padding: 2.5rem;
 }
}
/* RGB values for JS to use (optional, but good for dynamic transparency) */
body {
 --primary-color-rgb: 0, 123, 255; /* RGB for #007bff */
 --accent-color-rgb: 40, 167, 69; /* RGB for #28a745 */
}
/* Ensure the body gradient is not overly bright or distracting */
body::before {
 background: linear-gradient(135deg, #e0faff 0%, #f0faff 100%); /* Very subtle light blue/white gradient */
 opacity: 1; /* Make it the primary background, not an overlay */
}