@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Source+Sans+Pro:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #073b4c;
    --light-shade: #e6ebee;
    --dark-shade: #052633;
    --text-color: #052633;
    --background-color: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-border: rgba(255, 255, 255, 0.18);
}

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

body {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
    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: 500;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.glassCard {
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
}

.mainMenu {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--light-shade);
    z-index: 1000;
    padding: 1rem 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.navbarBrand img {
    height: 50px;
    width: auto;
}

.navToggle {
    display: none;
}

.navToggleLabel {
    display: none;
}

.hamburger {
    width: 30px;
    height: 3px;
    background: var(--text-color);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger:before,
.hamburger:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--text-color);
    transition: all 0.3s ease;
}

.hamburger:before {
    top: -8px;
}

.hamburger:after {
    top: 8px;
}

.navWrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
}

.navItem {
    list-style: none;
}

.navLink {
    color: var(--text-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.navLink:hover {
    background: var(--light-shade);
    color: var(--primary-color);
}

.welcomeIntro {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--light-shade) 0%, rgba(255, 255, 255, 0.8) 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.welcomeContent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.textContent h1 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.textContent p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.ctaButtons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.primaryBtn, .secondaryBtn {
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.primaryBtn {
    background: var(--primary-color);
    color: white;
}

.primaryBtn:hover {
    background: var(--dark-shade);
    transform: translateY(-2px);
}

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

.secondaryBtn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.heroImage {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.flexibilityAssessment {
    padding: 4rem 0;
    background: var(--background-color);
}

.assessmentCard {
    text-align: center;
    margin-bottom: 2rem;
}

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

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

.featureItem {
    padding: 1.5rem;
    border-radius: 15px;
    background: rgba(7, 59, 76, 0.05);
    transition: transform 0.3s ease;
}

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

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

.assessmentImage {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    margin-top: 2rem;
}

.benefitsTimeline {
    padding: 4rem 0;
    background: var(--light-shade);
}

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

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

.timelineItem {
    position: relative;
}

.timelineContent {
    text-align: center;
    height: 100%;
}

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

.timelineImage {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    display: block;
    margin: 0 auto;
}

.professionalGuidance {
    padding: 4rem 0;
    background: var(--background-color);
}

.guidanceContent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

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

.servicesList {
    margin-top: 2rem;
}

.serviceItem {
    background: var(--glass-bg);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--glass-border);
}

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

.servicePrice {
    display: block;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 1rem;
}

.guidanceImage {
    width: 100%;
    border-radius: 20px;
}

.mobilityTracker {
    padding: 4rem 0;
    background: var(--light-shade);
}

.trackerCard {
    text-align: center;
}

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

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

.trackerItem {
    background: rgba(255, 255, 255, 0.5);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: left;
}

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

.workshopsSection {
    padding: 4rem 0;
    background: var(--background-color);
}

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

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

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

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

.workshopDetails {
    display: flex;
    justify-content: space-between;
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(7, 59, 76, 0.05);
    border-radius: 10px;
}

.duration, .price {
    font-weight: 600;
    color: var(--primary-color);
}

.workshopBtn {
    background: var(--primary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.workshopBtn:hover {
    background: var(--dark-shade);
    transform: translateY(-2px);
}

.workshopsImage {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    display: block;
    margin: 0 auto;
}

.freeTrialOffer {
    padding: 4rem 0;
    background: var(--light-shade);
}

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

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

.trialBenefits {
    margin: 2rem 0;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

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

.trialBenefits li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.trialBenefits li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.trialBtn {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.trialBtn:hover {
    background: var(--dark-shade);
    transform: translateY(-2px);
}

.emergencyContact {
    padding: 4rem 0;
    background: var(--background-color);
}

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

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

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

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

.mainFooter {
    background: var(--primary-color);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footerSection h3 {
    color: var(--light-shade);
    margin-bottom: 1rem;
}

.footerLogo img {
    height: 40px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footerLinks {
    list-style: none;
}

.footerLinks li {
    margin-bottom: 0.5rem;
}

.footerLinks a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footerLinks a:hover {
    color: var(--light-shade);
}

.footerBottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media screen and (max-width: 768px) {
    .navToggleLabel {
        display: block;
        cursor: pointer;
        padding: 15px;
        z-index: 2;
    }

    .navWrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #fff;
        transition: all 0.3s ease;
        padding-top: 80px;
        flex-direction: column;
        align-items: center;
    }

    .navItem {
        width: 100%;
        text-align: center;
        margin: 15px 0;
    }

    .navLink {
        display: inline-block;
        padding: 10px 20px;
        font-size: 18px;
        color: var(--text-color);
    }

    .navToggle:checked ~ .navWrapper {
        left: 0;
    }

    .navToggle:checked ~ .navToggleLabel .hamburger {
        background: transparent;
    }

    .navToggle:checked ~ .navToggleLabel .hamburger:before {
        transform: rotate(45deg);
        top: 0;
    }

    .navToggle:checked ~ .navToggleLabel .hamburger:after {
        transform: rotate(-45deg);
        top: 0;
    }

    .welcomeContent {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .textContent {
        order: 2;
    }

    .imageContent {
        order: 1;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

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

    .ctaButtons {
        flex-direction: column;
        align-items: center;
    }

    .primaryBtn, .secondaryBtn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .timelineContainer {
        grid-template-columns: 1fr;
    }

    .workshopsGrid {
        grid-template-columns: 1fr;
    }

    .workshopDetails {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

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

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

    .glassCard {
        padding: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 1.8rem;
    }

    .welcomeIntro {
        padding: 2rem 0;
    }

    .primaryBtn, .secondaryBtn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .glassCard {
        padding: 1rem;
    }

    .serviceItem {
        padding: 1.5rem;
    }
}

.blogArticle {
    padding: 4rem 0;
    background: var(--background-color);
}

.articleCard {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.articleCard h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
}

.articleMeta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(7, 59, 76, 0.1);
}

.articleDate, .articleAuthor {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
}

.articleContent p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    text-align: justify;
}

.contactSection {
    padding: 4rem 0;
    background: var(--light-shade);
}

.contactCard {
    max-width: 1000px;
    margin: 0 auto;
}

.contactCard h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contactCard > p {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.contactForm {
    margin-bottom: 3rem;
}

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

.inputGroup {
    position: relative;
    margin-bottom: 2rem;
}

.inputGroup.fullWidth {
    grid-column: 1 / -1;
}

.inputGroup input,
.inputGroup select,
.inputGroup textarea {
    width: 100%;
    padding: 1rem 0 0.5rem;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(7, 59, 76, 0.3);
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.inputGroup input:focus,
.inputGroup select:focus,
.inputGroup textarea:focus {
    border-bottom-color: var(--primary-color);
}

.inputGroup input:focus + label,
.inputGroup input:valid + label,
.inputGroup select:focus + label,
.inputGroup select:valid + label,
.inputGroup textarea:focus + label,
.inputGroup textarea:valid + label {
    transform: translateY(-1.5rem);
    font-size: 0.8rem;
    color: var(--primary-color);
}

.inputGroup label {
    position: absolute;
    top: 1rem;
    left: 0;
    color: rgba(5, 38, 51, 0.6);
    transition: all 0.3s ease;
    pointer-events: none;
}

.inputLine {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.inputGroup input:focus ~ .inputLine,
.inputGroup select:focus ~ .inputLine,
.inputGroup textarea:focus ~ .inputLine {
    width: 100%;
}

.inputGroup select {
    cursor: pointer;
}

.inputGroup select option {
    background: white;
    color: var(--text-color);
}

.inputGroup textarea {
    resize: vertical;
    min-height: 100px;
}

.submitBtn {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-shade));
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 2rem auto 0;
    box-shadow: 0 4px 15px rgba(7, 59, 76, 0.3);
}

.submitBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(7, 59, 76, 0.4);
    background: linear-gradient(135deg, var(--dark-shade), var(--primary-color));
}

.contactInfo {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(7, 59, 76, 0.1);
}

.contactInfo .contactItem h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contactInfo .contactItem p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {
    .formRow {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .articleMeta {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

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

    .submitBtn {
        width: 100%;
        max-width: 300px;
    }
}

@media screen and (max-width: 480px) {
    .contactSection {
        padding: 2rem 0;
    }

    .contactCard {
        padding: 1.5rem;
    }

    .inputGroup {
        margin-bottom: 1.5rem;
    }

    .submitBtn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

.aboutHero {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-shade) 100%);
    color: white;
    text-align: center;
}

.aboutHero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.aboutHero p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
}

.approachPhilosophy {
    padding: 4rem 0;
    background: var(--background-color);
}

.philosophyContent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.philosophyPoints {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.pointItem {
    padding: 1.5rem;
    background: rgba(7, 59, 76, 0.05);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.pointItem h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.philosophyImage {
    width: 100%;
    border-radius: 20px;
}

.scientificResearch {
    padding: 4rem 0;
    background: var(--light-shade);
}

.researchCard {
    text-align: center;
}

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

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

.researchItem {
    background: rgba(255, 255, 255, 0.5);
    padding: 2rem;
    border-radius: 15px;
    text-align: left;
}

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

.accessibilityStandards {
    padding: 4rem 0;
    background: var(--background-color);
}

.accessibilityContent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.accessibilityFeatures {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.accessibilityImage {
    width: 100%;
    border-radius: 20px;
}

.continuingEducation {
    padding: 4rem 0;
    background: var(--light-shade);
}

.educationCard {
    text-align: center;
}

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

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

.educationTimeline .timelineItem {
    background: rgba(255, 255, 255, 0.5);
    padding: 2rem;
    border-radius: 15px;
    text-align: left;
}

.educationTimeline .timelineItem h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.communityImpact {
    padding: 4rem 0;
    background: var(--background-color);
}

.impactContent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

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

.statItem {
    text-align: center;
    padding: 1.5rem;
    background: rgba(7, 59, 76, 0.05);
    border-radius: 15px;
}

.statItem h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

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

.impactInitiatives li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.impactInitiatives li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.impactImage {
    width: 100%;
    border-radius: 20px;
}

.thankYouHero {
    padding: 4rem 0;
    background: var(--light-shade);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

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

.successCard {
    text-align: center;
    padding: 3rem;
}

.successIcon {
    margin-bottom: 2rem;
}

.checkmark {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin: 0 auto;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.successCard h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.responseInfo {
    margin: 3rem 0;
    text-align: left;
}

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

.nextSteps {
    display: grid;
    gap: 2rem;
}

.stepItem {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.stepNumber {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.stepContent h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.urgentContact {
    background: rgba(7, 59, 76, 0.05);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

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

.phoneLink {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    margin: 1rem 0;
}

.phoneLink:hover {
    background: var(--dark-shade);
}

.hours {
    font-size: 0.9rem;
    color: rgba(5, 38, 51, 0.7);
}

.additionalInfo {
    padding: 4rem 0;
    background: var(--background-color);
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-shade));
    color: white;
    padding: 1rem 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text p {
    margin: 0;
    font-size: 0.95rem;
}

.btn {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

@media screen and (max-width: 768px) {
    .philosophyContent,
    .accessibilityContent,
    .impactContent {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .impactStats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .statItem {
        padding: 1rem;
    }

    .statItem h3 {
        font-size: 2rem;
    }

    .aboutHero h1 {
        font-size: 2rem;
    }

    .aboutHero p {
        font-size: 1.1rem;
    }

    .successCard {
        padding: 2rem;
    }

    .checkmark {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .stepItem {
        flex-direction: column;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cookie-text {
        order: 1;
    }

    .cookie-action {
        order: 2;
    }
}

@media screen and (max-width: 480px) {
    .researchGrid,
    .educationTimeline {
        grid-template-columns: 1fr;
    }

    .infoGrid {
        grid-template-columns: 1fr;
    }

    .impactStats {
        grid-template-columns: 1fr;
    }
}