/* CSS Variables for Brand Colors */
:root {
    --will-green: #27ae60;
    --med-blue: #2980b9;
    --x-red: #c0392b;
    --primary-teal: #16a085;
    --primary-teal-light: #1abc9c;
    --primary-blue: #2980b9;
    --primary-blue-light: #3498db;
    --dark-blue: #1a3a4a;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #6c757d;
    --darker-gray: #495057;
    --dark-text: #212529;
    --light-text: #f8f9fa;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 10px 15px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --border-radius-lg: 16px;
    --section-padding: 5rem 10%;
    --section-padding-mobile: 3rem 5%;
    --header-height: 80px;
    --stat-card-bg: linear-gradient(135deg, var(--primary-teal), var(--primary-blue));
    --case-study-bg: linear-gradient(135deg, #6c5ce7, #00cec9);
    --testimonial-bg: linear-gradient(135deg, var(--dark-blue), #0a2e3c);
    --resource-bg: linear-gradient(135deg, #fd79a8, #e84393);
    --faq-bg: linear-gradient(135deg, #64b3f4, #c2e59c);
    --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --card-shadow-hover: 0 6px 16px rgba(0, 0, 0, 0.12);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: white;
    overflow-x: hidden;
    position: relative;
    padding-top: var(--header-height);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-teal);
    border-radius: 2px;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1.25rem;
}

h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--darker-gray);
}

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

a:hover {
    color: var(--primary-teal);
}

a:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: var(--transition);
}

a:hover:after {
    width: 100%;
}

ul {
    list-style: none;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-teal);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Logo Styling */
.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--dark-blue);
}

.logo span {
    display: inline-block;
}

.logo .will {
    color: var(--will-green);
}

.logo .med {
    color: var(--med-blue);
}

.logo .x {
    color: var(--x-red);
    margin-left: 2px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 0 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
    transition: var(--transition);
}

nav.scrolled {
    padding: 0 10%;
    background: white;
    box-shadow: var(--shadow);
}

.nav-container {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 1.8rem;
    position: relative;
}

.nav-links > li {
    margin-left: 2rem;
}

.nav-links a {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--dark-blue);
    position: relative;
    padding: 5px 0;
    display: block;
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-teal);
    transition: var(--transition);
    bottom: -5px;
}

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

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

.nav-links a.active {
    color: var(--primary-teal);
}

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

.nav-buttons {
    display: flex;
    align-items: center;
    margin-left: 1.5rem;
}

.btn {
    display: inline-block;
    background: var(--primary-teal);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
    text-align: center;
    white-space: nowrap;
}

.btn:hover {
    background: #138d75;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-teal);
    color: var(--primary-teal);
    margin-left: 15px;
}

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

.btn-contact {
    background: var(--primary-blue);
}

.btn-contact:hover {
    background: #2472a4;
}

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

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

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-blue);
    margin-left: 15px;
}

/* Page Structure */
#page-container {
    position: relative;
    min-height: calc(100vh - var(--header-height));
    transition: var(--transition);
}

.page {
    padding: 4rem 0;
    max-width: 1200px;
    margin: 0 auto;
    min-height: calc(100vh - var(--header-height));
}

.page-title {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 10%;
}

.page-title h1 {
    font-size: 3rem;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.page-title h1:after {
    width: 80px;
    height: 5px;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-teal);
}

.page-title p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 1.5rem auto 0;
    color: var(--dark-gray);
}

/* Hero Section */
.hero {
    height: calc(100vh - var(--header-height));
    min-height: 600px;
    background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(248, 249, 250, 0.9));
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 10%;
    position: relative;
}

.hero-content {
    max-width: 650px;
    z-index: 10;
}

.hero h1 {
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    font-size: 3.8rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #2c3e50;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    margin-top: 2rem;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    min-width: 120px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-teal);
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--dark-blue);
    font-weight: 500;
}

/* Key Stats Section */
.key-stats {
    background: var(--light-gray);
    padding: 4rem 10%;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

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

.stat-card .number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-teal);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-card .label {
    font-weight: 600;
    color: var(--dark-blue);
    font-size: 1.1rem;
}

/* About Section */
.about {
    background-color: white;
    padding: 5rem 10%;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    margin-bottom: 1rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.about-stat {
    text-align: center;
    min-width: 120px;
}

.about-stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-teal);
    display: block;
}

.about-stat-label {
    font-weight: 600;
    color: var(--dark-blue);
}

/* Services Section */
.services {
    padding: 5rem 10%;
    background-color: var(--light-gray);
}

.section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-title h2 {
    display: block;
    margin: 0 auto 1.5rem auto;
}

.section-title h2:after {
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-top: 1.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow-hover);
}

.service-icon {
    height: 80px;
    background: var(--stat-card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.service-content {
    padding: 2rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

.service-card p {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--primary-teal);
    font-weight: 600;
    display: flex;
    align-items: center;
    width: fit-content;
}

.service-link:after {
    content: '→';
    margin-left: 5px;
    transition: var(--transition);
}

.service-link:hover:after {
    margin-left: 10px;
}

/* Solutions Section */
.solutions {
    background-color: white;
    padding: 5rem 10%;
}

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

.solution-card {
    background: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--medium-gray);
}

.solution-card:hover {
    background: white;
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary-teal);
}

.solution-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-teal);
}

.solution-card h3 {
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

/* Featured Case Study Section */
.featured-case-study {
    background: var(--case-study-bg);
    color: white;
    padding: 5rem 10%;
    position: relative;
    overflow: hidden;
}

.featured-case-study:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%236c5ce7" opacity="0.1"/><path d="M0 50 L100 50 L100 100 L0 100 Z" fill="%2300cec9" opacity="0.15"/></svg>');
    background-size: cover;
    z-index: 0;
}

.case-study-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.case-study-text {
    flex: 1;
    min-width: 300px;
}

.case-study-text h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.case-study-text h2:after {
    background: white;
}

.case-study-text p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.case-study-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-box {
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: center;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-box .number {
    font-size: 2.2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-box .label {
    font-size: 1rem;
    font-weight: 500;
}

.case-study-image {
    flex: 1;
    min-width: 300px;
    height: 350px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: bold;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.read-case-study {
    display: inline-block;
    background: white;
    color: var(--primary-teal);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: var(--transition);
}

.read-case-study:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
    color: var(--primary-teal);
}

/* Testimonials Section */
.testimonials {
    background: var(--testimonial-bg);
    color: var(--light-text);
    text-align: center;
    padding: 6rem 10%;
}

.testimonials .section-title h2 {
    color: white;
}

.testimonials .section-title h2:after {
    background: var(--primary-teal-light);
}

.testimonials .section-title p {
    color: rgba(255, 255, 255, 0.85);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card:before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-content {
    margin-top: 20px;
    font-style: italic;
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    margin-right: 15px;
    color: white;
    flex-shrink: 0;
    background: linear-gradient(45deg, var(--primary-teal), var(--primary-blue));
}

.author-info h4 {
    color: white;
    margin-bottom: 0.25rem;
}

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

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-blue) 100%);
    color: white;
    text-align: center;
    padding: 5rem 10%;
}

.cta h2 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.cta h2:after {
    background: white;
    width: 80px;
    left: 50%;
    transform: translateX(-50%);
}

.cta p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
    color: rgba(255, 255, 255, 0.9);
}

.cta .btn {
    background: white;
    color: var(--primary-teal);
    font-size: 1.2rem;
    padding: 15px 45px;
    font-weight: 700;
}

.cta .btn:hover {
    background: var(--light-gray);
    transform: translateY(-3px);
}

/* Contact Section */
.contact {
    padding: 5rem 10%;
    background-color: white;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
}

.contact-icon {
    min-width: 60px;
    height: 60px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-teal);
    flex-shrink: 0;
}

.contact-details h3 {
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

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

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 3px rgba(22, 160, 133, 0.2);
}

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

.contact-form .btn {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    margin-top: 10px;
}

/* Footer */
footer {
    background: var(--dark-blue);
    color: rgba(255, 255, 255, 0.85);
    padding: 5rem 10% 2rem;
    margin-top: 5rem;
}

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

.footer-col h3 {
    color: white;
    font-size: 1.6rem;
    margin-bottom: 1.8rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-teal);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    transition: var(--transition);
    display: block;
    padding: 5px 0;
    width: fit-content;
}

.footer-links a:hover {
    color: var(--primary-teal-light);
    transform: translateX(5px);
}

.footer-links a:after {
    display: none;
}

.footer-about p {
    margin-bottom: 1.5rem;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

.copyright a {
    color: var(--primary-teal-light);
}

.copyright a:hover {
    color: white;
}

/* Breadcrumbs */
.breadcrumbs {
    background: var(--light-gray);
    padding: 15px 10%;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.breadcrumbs a {
    color: var(--primary-blue);
}

.breadcrumbs a:hover {
    color: var(--primary-teal);
}

.breadcrumbs span:not(:last-child):after {
    content: ' / ';
    margin: 0 8px;
    color: var(--dark-gray);
}

/* Page Content Sections */
.page-content {
    line-height: 1.7;
    color: var(--darker-gray);
    margin-top: 2rem;
    padding: 0 10%;
}

.page-content h2 {
    margin: 2.5rem 0 1.5rem;
    font-size: 2.2rem;
}

.page-content h3 {
    margin: 2rem 0 1.25rem;
    font-size: 1.7rem;
    color: var(--dark-blue);
}

.page-content p {
    margin-bottom: 1.25rem;
}

.highlight-box {
    background: var(--light-gray);
    border-left: 4px solid var(--primary-teal);
    padding: 1.5rem;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    margin: 2rem 0;
}

/* Leadership Grid */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.leader-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--light-gray);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.leader-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--primary-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
}

.leader-info h3 {
    margin-bottom: 0.5rem;
}

.leader-info h4 {
    color: var(--primary-teal);
    margin-bottom: 0.5rem;
}

.leader-info p {
    font-style: italic;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

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

.blog-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

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

.blog-image {
    height: 200px;
    background: linear-gradient(45deg, var(--primary-blue), var(--primary-teal));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    font-weight: bold;
}

.blog-content {
    padding: 1.75rem;
}

.blog-content h3 {
    margin-bottom: 0.75rem;
    color: var(--dark-blue);
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-excerpt {
    color: var(--darker-gray);
    margin-bottom: 1.25rem;
}

.read-more {
    color: var(--primary-teal);
    font-weight: 600;
    display: flex;
    align-items: center;
}

.read-more:after {
    content: '→';
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover:after {
    margin-left: 10px;
}

/* Event Grid */
.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.event-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: var(--border-radius);
}

/* FAQ Accordion */
.faq-container {
    max-width: 800px;
    margin: 3rem auto;
}

.faq-item {
    background: white;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.faq-question {
    padding: 1.5rem;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--dark-blue);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.85);
}

.faq-question:after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-teal);
    transition: var(--transition);
}

.faq-item.active .faq-question:after {
    content: '-';
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--darker-gray);
    background: rgba(255, 255, 255, 0.95);
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

/* Map Section */
.map-section {
    margin: 3rem 0;
    text-align: center;
}

.map-placeholder {
    height: 300px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    margin-top: 1rem;
    font-size: 1.5rem;
    color: var(--dark-gray);
}

/* Social Media */
.social-media {
    text-align: center;
    margin: 3rem 0;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
    font-weight: bold;
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary-teal);
    transform: translateY(-3px);
}

/* Testimonial Form */
.testimonial-form {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-top: 3rem;
}

.testimonial-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    margin: 1rem 0;
}

/* Emergency Contact */
.emergency-contact {
    margin: 3rem 0;
}

.emergency-contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.emergency-item {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

/* Responsive Design */
@media (max-width: 992px) {
    h1 {
        font-size: 3rem;
    }
    h2 {
        font-size: 2.2rem;
    }
    .hero h1 {
        font-size: 3.2rem;
    }
    .about-content {
        flex-direction: column;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .btn-outline {
        margin-left: 0;
        margin-top: 15px;
    }
    section {
        padding: 4rem 8%;
    }
    .page {
        padding: 3rem 8%;
    }
    nav {
        padding: 0 5%;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 4rem 5%;
        --header-height: 70px;
    }
    body {
        padding-top: var(--header-height);
    }
    nav {
        padding: 0 5%;
        height: var(--header-height);
    }
    .hamburger {
        display: block;
    }
    .nav-links {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        width: 85%;
        height: calc(100vh - var(--header-height));
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        z-index: 999;
        overflow-y: auto;
    }
    .nav-links.active {
        right: 0;
    }
    .nav-links li {
        margin: 1.2rem 0;
        width: 100%;
    }
    .has-submenu > a:after {
        display: none;
    }
    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0;
        margin-top: 0.5rem;
        display: none;
    }
    .has-submenu.active .submenu {
        display: block;
    }
    .submenu a {
        padding: 8px 15px;
    }
    .nav-buttons {
        display: none;
    }
    .hero {
        padding: 0 5%;
        text-align: center;
        height: auto;
        min-height: calc(100vh - var(--header-height));
        padding-top: 2rem;
        padding-bottom: 3rem;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-buttons {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        margin-top: 3rem;
    }
    .section-title h2 {
        font-size: 2rem;
    }
    .section-title p {
        font-size: 1.1rem;
    }
    .contact-container {
        grid-template-columns: 1fr;
    }
    footer {
        padding: 4rem 5% 2rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-col h3:after {
        left: 50%;
        transform: translateX(-50%);
    }
    .social-links {
        justify-content: center;
    }
    .page-title h1 {
        font-size: 2.5rem;
    }
    .page {
        padding: 2.5rem 5%;
    }
    .case-study-content {
        flex-direction: column;
    }
    .case-study-image {
        width: 100%;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.5rem;
    }
    .hero h1 {
        font-size: 2.7rem;
    }
    .hero p {
        font-size: 1.15rem;
    }
    .stat-number {
        font-size: 2rem;
    }
    .stat-label {
        font-size: 1rem;
    }
    .btn {
        padding: 10px 20px;
        font-size: 0.95rem;
        width: 100%;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .btn-outline {
        margin-top: 10px;
    }
    .section-title h2 {
        font-size: 1.8rem;
    }
    .page-title h1 {
        font-size: 2.2rem;
    }
    .case-study-stats {
        grid-template-columns: 1fr;
    }
    .recognition-grid {
        grid-template-columns: 1fr;
    }
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}