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

:root {
    --primary-color: #4D869A;
    --secondary-color: #35355D;
    --accent-color: #599BB3;
    --dark-color: #101040;
    --light-color: #f8f9fa;
    --white: #ffffff;
    --text-color: #2c3e50;
    --text-light: #6c757d;
    --border-color: #e0e0e0;
    --gradient-1: linear-gradient(135deg, #35355D 0%, #4D869A 100%);
    --gradient-2: linear-gradient(135deg, rgba(77, 134, 154, 0.1) 0%, rgba(53, 53, 93, 0.05) 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.15);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    overflow-x: hidden;
    background: var(--white);
}

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

ul {
    list-style: none;
}

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
}

.logo h1 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo span {
    font-size: 0.7rem;
    color: var(--secondary-color);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.8;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    margin: 4px 0;
    transition: var(--transition);
    border-radius: 2px;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
    letter-spacing: 0.3px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
    border-radius: 2px;
}

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

.cta-link {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 12px 28px !important;
    border-radius: 50px;
    font-weight: 600;
}

.cta-link::after {
    display: none;
}

.cta-link:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(77, 134, 154, 0.3);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-1);
    color: var(--white);
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    animation-delay: 5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(30px, -30px); }
    66% { transform: translate(-20px, 20px); }
}

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

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 900px;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.7;
    max-width: 900px;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

/* Button */
.btn {
    display: inline-block;
    padding: 18px 40px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    margin-top: 1rem;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* Sections */
.section {
    padding: 120px 24px;
}

.bg-gradient {
    background: var(--gradient-2);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.section-line {
    width: 100px;
    height: 5px;
    background: var(--primary-color);
    margin: 1.5rem auto 2rem;
    border-radius: 3px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Mission Box */
.mission-box {
    background: var(--gradient-1);
    color: var(--white);
    padding: 3.5rem;
    border-radius: 20px;
    margin-bottom: 4rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.mission-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.mission-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.mission-icon svg {
    width: 36px;
    height: 36px;
}

.mission-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.mission-box p {
    font-size: 1.15rem;
    line-height: 1.8;
    opacity: 0.95;
}

/* About Intro */
.about-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 5rem;
    padding: 3rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.about-intro h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-intro p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-color);
}

/* Feature Grid */
.feature-grid {
    display: grid;
    gap: 3rem;
    margin-bottom: 5rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: var(--white);
    padding: 3.5rem 4rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(77, 134, 154, 0.1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-number {
    position: absolute;
    top: -20px;
    left: 40px;
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.feature-card h3 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.feature-card p {
    font-size: 1.08rem;
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    max-width: 100%;
}

.feature-highlight {
    background: var(--gradient-2);
    padding: 2.5rem;
    border-radius: 12px;
    margin-top: 2rem;
    border-left: 4px solid var(--primary-color);
}

.feature-highlight h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.feature-highlight p {
    margin-bottom: 0;
    font-size: 1.08rem;
    line-height: 1.9;
}

/* Values Section */
.values-section {
    margin-bottom: 5rem;
}

.values-section h3 {
    text-align: center;
    color: var(--secondary-color);
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.values-intro {
    max-width: 900px;
    margin: 0 auto 2rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.values-tagline {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    font-style: italic;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

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

.value-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(77, 134, 154, 0.1);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.value-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--primary-color);
}

.value-card h4 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
}

/* Origin Story */
.origin-story {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 5rem;
    padding: 4.5rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.origin-content h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.origin-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.origin-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.compass {
    width: 250px;
    height: 250px;
    position: relative;
    animation: rotate 30s linear infinite;
}

.compass-ring {
    width: 100%;
    height: 100%;
    border: 8px solid var(--primary-color);
    border-radius: 50%;
    position: absolute;
    opacity: 0.3;
}

.compass-center {
    width: 40px;
    height: 40px;
    background: var(--gradient-1);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: var(--shadow-md);
}

.compass-needle {
    width: 4px;
    height: 120px;
    background: linear-gradient(to bottom, var(--accent-color), var(--primary-color));
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: var(--shadow-sm);
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Confidentiality Note */
.confidentiality-note {
    background: var(--gradient-2);
    padding: 3.5rem;
    border-radius: 20px;
    border-left: 5px solid var(--primary-color);
    max-width: 1000px;
    margin: 0 auto;
}

.confidentiality-note h3 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.confidentiality-note p {
    font-size: 1.08rem;
    line-height: 1.9;
    color: var(--text-color);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    padding: 3.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
}

.service-card.featured {
    border-color: var(--primary-color);
}

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

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-1);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
    letter-spacing: 1px;
}

.service-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.3;
}

.service-card > p {
    font-size: 1.08rem;
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.service-benefits {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 2px solid var(--gradient-2);
}

.service-benefits h4 {
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.service-benefits p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

/* Approach Timeline */
.methodology-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.15rem;
    color: var(--text-color);
    line-height: 1.8;
}

.approach-timeline {
    max-width: 900px;
    margin: 0 auto 5rem;
    position: relative;
}

.approach-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 30px;
    bottom: 30px;
    width: 4px;
    background: var(--gradient-2);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-marker {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    z-index: 1;
}

.timeline-content {
    flex: 1;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.timeline-content h3 {
    color: var(--secondary-color);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.timeline-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
}

/* Beliefs Panel */
.beliefs-panel {
    background: var(--white);
    padding: 4rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--primary-color);
    max-width: 1000px;
    margin: 0 auto;
}

.beliefs-panel h3 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.beliefs-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 1.8rem;
}

.beliefs-content p:last-child {
    margin-bottom: 0;
}

/* Results Carousel */
.results-carousel-container {
    position: relative;
    max-width: 950px;
    margin: 0 auto;
}

.results-carousel {
    overflow: hidden;
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    min-height: 450px;
}

.result-slide {
    padding: 4rem;
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.result-slide.active {
    display: block;
}

.result-badge {
    display: inline-block;
    background: var(--gradient-1);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.result-slide h3 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    line-height: 1.4;
    font-weight: 700;
}

.result-slide p {
    line-height: 1.9;
    color: var(--text-color);
    font-size: 1.08rem;
}

/* Carousel Controls */
.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.carousel-btn {
    background: var(--white);
    border: 3px solid var(--primary-color);
    color: var(--primary-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    font-weight: 700;
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.15);
    box-shadow: var(--shadow-lg);
}

.carousel-btn.prev {
    margin-left: -30px;
}

.carousel-btn.next {
    margin-right: -30px;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2.5rem 0;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.4);
    border-color: var(--primary-color);
}

.dot:hover {
    background: var(--accent-color);
    transform: scale(1.2);
}

/* Carousel Filter */
.carousel-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.filter-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.contact-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.contact-avatar {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-md);
}

.contact-card h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.contact-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-details a {
    color: var(--accent-color);
    font-size: 0.95rem;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--primary-color);
    transform: translateX(3px);
}

.contact-info {
    background: var(--gradient-2);
    padding: 3rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
}

.contact-info-item svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-color);
    flex-shrink: 0;
}

.contact-info a {
    color: var(--accent-color);
    font-weight: 600;
    transition: var(--transition);
}

.contact-info a:hover {
    color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 3rem 24px;
    text-align: center;
}

.footer p {
    opacity: 0.9;
    font-size: 0.95rem;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .origin-story {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .compass {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 85px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hero {
        padding: 140px 20px 80px;
    }

    .section {
        padding: 80px 20px;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .services-grid,
    .values-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid {
        gap: 2rem;
    }

    .approach-timeline::before {
        left: 20px;
    }

    .timeline-item {
        gap: 1.5rem;
    }

    .timeline-marker {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .carousel-btn {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .carousel-btn.prev {
        margin-left: -20px;
    }

    .carousel-btn.next {
        margin-right: -20px;
    }

    .result-slide {
        padding: 2.5rem 2rem;
    }

    .result-slide h3 {
        font-size: 1.5rem;
    }

    .carousel-filter {
        flex-direction: column;
    }

    .filter-btn {
        width: 100%;
    }

    .mission-box,
    .about-intro,
    .feature-card,
    .confidentiality-note,
    .beliefs-panel {
        padding: 2.5rem;
    }

    .contact-info {
        padding: 2rem;
    }

    .contact-info-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        height: 75px;
    }

    .logo h1 {
        font-size: 1.3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .result-slide {
        padding: 2rem 1.5rem;
    }

    .result-slide h3 {
        font-size: 1.3rem;
    }

    .carousel-controls {
        display: none;
    }

    .mission-box,
    .about-intro,
    .feature-card,
    .confidentiality-note,
    .beliefs-panel,
    .service-card,
    .timeline-content {
        padding: 2rem;
    }

    .feature-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        left: 30px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.2rem;
    }

    .contact-avatar {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .nav-toggle,
    .carousel-controls,
    .carousel-dots,
    .carousel-filter {
        display: none;
    }

    .result-slide {
        display: block !important;
        page-break-inside: avoid;
    }
}