```css
/* ==========================================
   RESET & BASE STYLES
   ========================================== */

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

:root {
    /* Colors */
    --primary-color: #d97706; /* Saffron/Gold */
    --secondary-color: #1e40af; /* Deep Blue */
    --accent-color: #059669; /* Green */
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    
    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

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

/* ==========================================
   TYPOGRAPHY
   ========================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: 1.2;
    font-weight: 700;
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-medium);
    max-width: 700px;
}

.section-header.center {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.center .section-label {
    display: block;
}

.section-header.center .section-subtitle {
    margin: 0 auto;
}

.highlight {
    color: var(--primary-color);
    position: relative;
}

.large-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 20px;
}

/* ==========================================
   BUTTONS
   ========================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

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

.btn-primary:hover {
    background: #b45309;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-nav {
    padding: 8px 20px;
    background: var(--primary-color);
    color: white;
    border-radius: 6px;
}

/* ==========================================
   NAVIGATION
   ========================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--primary-color);
    letter-spacing: 0.1em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition-smooth);
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition-smooth);
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: url('images/hero-background.png');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.9) 0%, rgba(30, 64, 175, 0.8) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 16px;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.trust-bar {
    display: flex;
    gap: 48px;
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s ease-out 0.8s backwards;
}

.trust-item {
    display: flex;
    flex-direction: column;
    color: white;
}

.trust-item strong {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.trust-item span {
    font-size: 0.875rem;
    opacity: 0.9;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 0.875rem;
    opacity: 0.8;
    animation: bounce 2s infinite;
}

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

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* ==========================================
   PROBLEM SECTION
   ========================================== */

.problem-section {
    padding: var(--section-padding);
    background: var(--bg-white);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.problem-column {
    padding: 40px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
}

.problem-column.achieved {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-color: #10b981;
}

.problem-column.struggling {
    background: linear-gradient(135deg, #fef2f2 0%, #fecaca 100%);
    border-color: #ef4444;
}

.problem-column h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.check-list, .cross-list {
    list-style: none;
}

.check-list li, .cross-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 1.25rem;
}

.cross-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: 700;
    font-size: 1.25rem;
}

.problem-insight {
    text-align: center;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 12px;
}

.insight-text {
    font-size: 1.25rem;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto;
}

/* ==========================================
   BRIDGE SECTION
   ========================================== */

.bridge-section {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.bridge-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.bridge-image {
    position: relative;
}

.bridge-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
}

.image-caption {
    margin-top: 16px;
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-light);
}

.bridge-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-medium);
}

/* ==========================================
   PRINCIPLES SECTION
   ========================================== */

.principles-section {
    padding: var(--section-padding);
    background: var(--bg-white);
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.principle-card {
    position: relative;
    padding: 32px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition-smooth);
    cursor: pointer;
}

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

.principle-number {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-light);
}

.principle-sanskrit {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.principle-name {
    font-size: 1.25rem;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.principle-english {
    font-size: 0.875rem;
    color: var(--text-medium);
    margin-bottom: 16px;
    font-style: italic;
}

.principle-description {
    font-size: 0.9375rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.principle-icon {
    margin-top: 24px;
    color: var(--primary-color);
    opacity: 0.3;
}

.principles-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
border-radius: 16px;
}
.cta-text {
font-size: 1.25rem;
color: var(--text-dark);
margin-bottom: 24px;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}

/* ==========================================
ABOUT SECTION
========================================== */
.about-section {
padding: var(--section-padding);
background: var(--bg-light);
}
.about-content {
display: grid;
grid-template-columns: 400px 1fr;
gap: 60px;
align-items: start;
}
.about-image {
position: relative;
}
.about-image img {
width: 100%;
border-radius: 16px;
box-shadow: var(--shadow-xl);
}
.about-badge {
position: absolute;
bottom: -20px;
right: -20px;
background: var(--primary-color);
color: white;
padding: 20px;
border-radius: 12px;
text-align: center;
box-shadow: var(--shadow-lg);
}
.badge-number {
display: block;
font-size: 2rem;
font-weight: 700;
}
.badge-text {
display: block;
font-size: 0.875rem;
}
.about-insight {
display: flex;
gap: 16px;
padding: 24px;
background: white;
border-left: 4px solid var(--primary-color);
border-radius: 8px;
margin: 24px 0;
}
.about-insight svg {
flex-shrink: 0;
color: var(--primary-color);
}
.about-finale {
font-size: 1.125rem;
color: var(--text-dark);
}
.about-credentials {
display: flex;
gap: 40px;
margin-top: 40px;
padding-top: 40px;
border-top: 2px solid var(--border-color);
}
.credential-item {
display: flex;
flex-direction: column;
}
.credential-item strong {
font-size: 2rem;
color: var(--primary-color);
margin-bottom: 4px;
}
.credential-item span {
font-size: 0.875rem;
color: var(--text-medium);
}
/* ==========================================
TESTIMONIALS SECTION
========================================== */
.testimonials-section {
padding: var(--section-padding);
background: var(--bg-white);
}
.testimonials-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 32px;
margin-bottom: 60px;
}
.testimonial-card {
padding: 32px;
background: var(--bg-light);
border-radius: 12px;
border: 2px solid transparent;
transition: var(--transition-smooth);
}
.testimonial-card:hover {
border-color: var(--primary-color);
transform: translateY(-4px);
box-shadow: var(--shadow-lg);
}
.testimonial-quote {
font-size: 1rem;
line-height: 1.7;
color: var(--text-dark);
margin-bottom: 24px;
}
.testimonial-author {
display: flex;
align-items: center;
gap: 16px;
margin-bottom: 12px;
}
.author-info strong {
display: block;
font-weight: 600;
color: var(--text-dark);
}
.author-info span {
display: block;
font-size: 0.875rem;
color: var(--text-medium);
}
.testimonial-rating {
color: #fbbf24;
font-size: 1.125rem;
}
.testimonials-stats {
display: flex;
justify-content: center;
gap: 60px;
}
.stat-box {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
.stat-box .stat-number {
font-size: 3rem;
font-weight: 700;
color: var(--primary-color);
margin-bottom: 8px;
}
.stat-box .stat-label {
font-size: 1rem;
color: var(--text-medium);
}
/* ==========================================
CTA SECTION
========================================== */
.cta-section {
position: relative;
padding: var(--section-padding);
background: var(--secondary-color);
overflow: hidden;
}
.cta-background {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-image: url('images/cta-pattern.png');
opacity: 0.1;
}
.cta-content {
position: relative;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}
.cta-text {
color: white;
}
.cta-title {
font-size: 2.5rem;
color: white;
margin-bottom: 16px;
}
.cta-subtitle {
font-size: 1.25rem;
color: rgba(255, 255, 255, 0.9);
margin-bottom: 32px;
}
.cta-benefits {
list-style: none;
}
.cta-benefits li {
display: flex;
align-items: start;
gap: 12px;
padding: 12px 0;
color: rgba(255, 255, 255, 0.95);
}
.cta-benefits svg {
flex-shrink: 0;
color: var(--accent-color);
margin-top: 2px;
}
.cta-form {
background: white;
padding: 40px;
border-radius: 16px;
box-shadow: var(--shadow-xl);
}
.form-container h3 {
font-size: 1.75rem;
margin-bottom: 8px;
color: var(--text-dark);
}
.form-subtitle {
color: var(--text-medium);
margin-bottom: 32px;
}
.form-group {
margin-bottom: 20px;
}
.form-group label {
display: block;
font-weight: 600;
margin-bottom: 8px;
color: var(--text-dark);
}
.form-group input {
width: 100%;
padding: 12px 16px;
border: 2px solid var(--border-color);
border-radius: 8px;
font-size: 1rem;
font-family: var(--font-body);
transition: var(--transition-smooth);
}
.form-group input:focus {
outline: none;
border-color: var(--primary-color);
}
.form-privacy {
text-align: center;
font-size: 0.875rem;
color: var(--text-light);
margin-top: 16px;
}
.form-success {
text-align: center;
padding: 40px 20px;
}
.form-success svg {
margin-bottom: 20px;
}
.form-success h4 {
font-size: 1.5rem;
color: var(--accent-color);
margin-bottom: 8px;
}
.form-success p {
color: var(--text-medium);
}
/* ==========================================
OFFERINGS SECTION
========================================== */
.offerings-section {
padding: var(--section-padding);
background: var(--bg-light);
}
.offerings-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 32px;
}
.offering-card {
position: relative;
background: white;
padding: 40px;
border-radius: 16px;
border: 2px solid var(--border-color);
transition: var(--transition-smooth);
}
.offering-card.featured {
border-color: var(--primary-color);
transform: scale(1.05);
box-shadow: var(--shadow-xl);
}
.offering-card:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-xl);
}
.offering-card.featured:hover {
transform: scale(1.05) translateY(-8px);
}
.offering-badge {
position: absolute;
top: -12px;
right: 32px;
background: var(--primary-color);
color: white;
padding: 6px 16px;
border-radius: 20px;
font-size: 0.875rem;
font-weight: 600;
}
.offering-icon {
font-size: 3rem;
margin-bottom: 20px;
}
.offering-title {
font-size: 1.5rem;
margin-bottom: 16px;
color: var(--text-dark);
}
.offering-description {
color: var(--text-medium);
margin-bottom: 24px;
line-height: 1.6;
}
.offering-price {
display: flex;
align-items: baseline;
gap: 4px;
margin-bottom: 24px;
}
.price-currency {
font-size: 1.5rem;
font-weight: 600;
color: var(--text-medium);
}
.price-amount {
font-size: 3rem;
font-weight: 700;
color: var(--primary-color);
}
.price-period {
font-size: 1rem;
color: var(--text-medium);
}
.offering-features {
margin-top: 24px;
padding-top: 24px;
border-top: 1px solid var(--border-color);
}
.feature-item {
padding: 8px 0;
font-size: 0.9375rem;
color: var(--text-medium);
}
/* ==========================================
FINAL CTA SECTION
========================================== */
.final-cta-section {
padding: var(--section-padding);
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
text-align: center;
}
.final-cta-title {
font-size: 2.5rem;
color: white;
margin-bottom: 24px;
}
.final-cta-text {
font-size: 1.125rem;
color: rgba(255, 255, 255, 0.95);
margin-bottom: 40px;
}
.final-cta-benefits {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 32px;
margin-bottom: 40px;
}
.benefit-item {
display: flex;
align-items: center;
gap: 12px;
color: white;
}
.benefit-item svg {
flex-shrink: 0;
color: var(--accent-color);
}
.final-cta-closing {
font-size: 1.25rem;
color: rgba(255, 255, 255, 0.95);
margin-bottom: 32px;
font-weight: 600;
}
/* ==========================================
FOOTER
========================================== */
.footer {
background: var(--text-dark);
color: white;
padding: 60px 0 32px;
}
.footer-content {
display: grid;
grid-template-columns: 1.5fr 1fr 1fr 1fr;
gap: 60px;
margin-bottom: 60px;
}
.footer-brand {
max-width: 300px;
}
.footer-logo {
margin-bottom: 16px;
}
.footer-tagline {
color: rgba(255, 255, 255, 0.7);
margin-bottom: 24px;
line-height: 1.6;
}
.footer-social {
display: flex;
gap: 16px;
}
.footer-social a {
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
background: rgba(255, 255, 255, 0.1);
border-radius: 8px;
color: white;
transition: var(--transition-smooth);
}
.footer-social a:hover {
background: var(--primary-color);
transform: translateY(-2px);
}
.footer-column h4 {
font-size: 1.125rem;
margin-bottom: 20px;
color: white;
}
.footer-column ul {
list-style: none;
}
.footer-column li {
margin-bottom: 12px;
}
.footer-column a {
color: rgba(255, 255, 255, 0.7);
text-decoration: none;
transition: var(--transition-smooth);
}
.footer-column a:hover {
color: var(--primary-color);
}
.footer-bottom {
padding-top: 32px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
text-align: center;
color: rgba(255, 255, 255, 0.6);
font-size: 0.875rem;
}
.footer-bottom p {
margin-bottom: 8px;
}
.footer-legal {
margin-top: 16px;
}
.footer-legal a {
color: rgba(255, 255, 255, 0.6);
text-decoration: none;
margin: 0 8px;
}
.footer-legal a:hover {
color: var(--primary-color);
}
/* ==========================================
BACK TO TOP BUTTON
========================================== */
.back-to-top {
position: fixed;
bottom: 32px;
right: 32px;
width: 48px;
height: 48px;
background: var(--primary-color);
color: white;
border: none;
border-radius: 50%;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
box-shadow: var(--shadow-lg);
opacity: 0;
visibility: hidden;
transition: var(--transition-smooth);
z-index: 999;
}
.back-to-top.visible {
opacity: 1;
visibility: visible;
}
.back-to-top:hover {
background: #b45309;
transform: translateY(-4px);
}
/* ==========================================
RESPONSIVE DESIGN
========================================== */
@media (max-width: 1024px) {
.section-title {
font-size: 2rem;
}
.hero-title {
    font-size: 2.5rem;
}

.bridge-content,
.about-content,
.cta-content {
    grid-template-columns: 1fr;
    gap: 40px;
}

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

.offering-card.featured {
    transform: none;
}

.footer-content {
    grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 768px) {
.nav-links {
display: none;
}
.mobile-menu-toggle {
    display: flex;
}

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

.hero-subtitle {
    font-size: 1.25rem;
}

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

.trust-bar {
    gap: 24px;
}

.problem-grid,
.testimonials-grid {
    grid-template-columns: 1fr;
}

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

.bridge-stats,
.about-credentials {
    flex-direction: column;
    gap: 24px;
}

.final-cta-benefits {
    flex-direction: column;
    align-items: center;
}

.footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
}
}
@media (max-width: 480px) {
.hero-title {
font-size: 1.75rem;
}
.section-title {
    font-size: 1.75rem;
}

.trust-item strong {
    font-size: 1.5rem;
}

.btn-large {
    padding: 14px 24px;
    font-size: 1rem;
}
}

/* ==========================================
   ADDITIONAL PAGE STYLES
   ========================================== */

/* Page Header */

.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
    color: white;
}

.page-title {
    font-size: 3rem;
    color: white;
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

/* Content Section */
.content-section {
    padding: var(--section-padding);
    background: var(--bg-white);
}

.content-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 60px;
}

/* Sidebar Navigation */
.content-sidebar {
    position: relative;
}

.sidebar-nav {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
}

.sidebar-nav.sticky {
    position: sticky;
    top: 100px;
}

.sidebar-nav h4 {
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.sidebar-nav ul {
    list-style: none;
}

.sidebar-nav li {
    margin-bottom: 12px;
}

.sidebar-nav a {
    color: var(--text-medium);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: var(--transition-smooth);
    display: block;
    padding: 8px 12px;
    border-radius: 6px;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    color: var(--primary-color);
    background: white;
}

/* Content Main */
.content-main {
    max-width: 800px;
}

.content-block {
    margin-bottom: 60px;
}

.content-block h2 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.content-block h3 {
    font-size: 1.5rem;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.content-block h4 {
    font-size: 1.25rem;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.content-block p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--text-medium);
}

.content-list {
    margin: 20px 0;
    padding-left: 24px;
}

.content-list li {
    margin-bottom: 12px;
    line-height: 1.7;
    color: var(--text-medium);
}

/* Callouts */
.callout {
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid;
    margin: 32px 0;
}

.callout h4 {
    margin-top: 0;
    margin-bottom: 12px;
}

.callout-warning {
    background: #fef3c7;
    border-color: #f59e0b;
}

.callout-info {
    background: #dbeafe;
    border-color: #3b82f6;
}

.callout-success {
    background: #d1fae5;
    border-color: #10b981;
}

/* Mission Statement */
.mission-statement {
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
    padding: 40px;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    margin: 40px 0;
    text-align: center;
}

/* Belief Grid */
.belief-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 40px 0;
}

.belief-card {
    padding: 32px;
    background: var(--bg-light);
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: var(--transition-smooth);
}

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

.belief-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.belief-card h4 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.125rem;
}

.belief-card p {
    margin-bottom: 0;
    font-size: 0.9375rem;
}

/* Founder Section */
.founder-intro {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 32px;
    margin: 32px 0;
}

.founder-photo {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.founder-text p:first-child {
    margin-top: 0;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 40px;
    margin: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-marker {
    position: absolute;
    left: -34px;
    top: 4px;
    width: 16px;
    height: 16px;
    background: var(--primary-color);
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--border-color);
}

.timeline-content h4 {
    margin-top: 0;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.timeline-content p {
    margin-bottom: 0;
}

.founder-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 40px 0;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 12px;
}

/* Approach Comparison */
.approach-comparison {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin: 40px 0;
}

.comparison-column h3 {
    margin-top: 0;
    margin-bottom: 24px;
    text-align: center;
}

.comparison-list {
    list-style: none;
    padding: 0;
}

.comparison-list li {
    padding: 16px;
    margin-bottom: 8px;
    border-radius: 8px;
    position: relative;
    padding-left: 48px;
}

.comparison-list.negative li {
    background: #fef2f2;
    color: var(--text-dark);
}

.comparison-list.negative li::before {
    content: '✗';
    position: absolute;
    left: 16px;
    color: #ef4444;
    font-weight: 700;
    font-size: 1.25rem;
}

.comparison-list.positive li {
    background: #ecfdf5;
    color: var(--text-dark);
}

.comparison-list.positive li::before {
    content: '✓';
    position: absolute;
    left: 16px;
    color: #10b981;
    font-weight: 700;
    font-size: 1.25rem;
}

/* Methodology Steps */
.methodology-steps {
    margin: 40px 0;
}

.method-step {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    padding: 24px;
    background: var(--bg-light);
    border-radius: 12px;
    align-items: start;
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h4 {
    margin-top: 0;
    margin-bottom: 8px;
}

.step-content p {
    margin-bottom: 0;
}

/* Values List */
.values-list {
    margin: 40px 0;
}

.value-item {
    padding: 24px;
    margin-bottom: 16px;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.value-item h4 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.125rem;
}

.value-item p {
    margin-bottom: 0;
}

/* Content CTA */
.content-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
    border-radius: 16px;
    border: 2px solid var(--border-color);
    margin-top: 60px;
}

.content-cta h2 {
    margin-bottom: 16px;
}

.content-cta p {
    font-size: 1.125rem;
    margin-bottom: 32px;
    color: var(--text-medium);
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* ==========================================
   BLOG PAGE STYLES
   ========================================== */

.blog-section {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    gap: 40px;
}

/* Blog Post Cards */
.blog-post {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    transition: var(--transition-smooth);
}

.blog-post:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Featured Post */
.featured-post {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.featured-post .post-image {
    height: 100%;
}

.featured-post .post-content {
    padding: 40px;
}

/* Regular Posts */
.blog-post:not(.featured-post) {
    display: grid;
    grid-template-columns: 300px 1fr;
}

.blog-post:not(.featured-post) .post-content {
    padding: 32px;
}

/* Post Image */
.post-image {
    position: relative;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.blog-post:hover .post-image img {
    transform: scale(1.05);
}

.post-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Post Meta */
.post-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
    font-size: 0.875rem;
}

.post-category {
    color: var(--primary-color);
    font-weight: 600;
}

.post-date,
.post-read-time {
    color: var(--text-light);
}

/* Post Content */
.post-title {
    margin-bottom: 16px;
}

.post-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.post-title a:hover {
    color: var(--primary-color);
}

.featured-post .post-title {
    font-size: 1.75rem;
}

.blog-post:not(.featured-post) .post-title {
    font-size: 1.25rem;
}

.post-excerpt {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.6;
}

.post-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.post-link:hover {
    color: #b45309;
}

/* Blog Sidebar */
.blog-sidebar {
    position: relative;
}

.sidebar-widget {
    background: white;
    padding: 32px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    margin-bottom: 32px;
}

.sidebar-widget h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

/* Sidebar Form */
.sidebar-form {
    margin-bottom: 16px;
}

.sidebar-form input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 12px;
    font-family: var(--font-body);
}

.sidebar-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-note {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Category List */
.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 12px;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 6px;
    transition: var(--transition-smooth);
}

.category-list a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.category-list span {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Popular Posts */
.popular-posts {
    list-style: none;
}

.popular-posts li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.popular-posts li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.popular-posts a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
    transition: var(--transition-smooth);
}

.popular-posts a:hover {
    color: var(--primary-color);
}

.popular-meta {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Sidebar CTA */
.sidebar-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.sidebar-cta h3,
.sidebar-cta p {
    color: white;
}

.sidebar-cta p {
    margin-bottom: 20px;
}

/* ==========================================
   RESPONSIVE DESIGN FOR NEW PAGES
   ========================================== */

@media (max-width: 1024px) {
    .content-layout {
        grid-template-columns: 1fr;
    }
    
    .sidebar-nav.sticky {
        position: static;
    }
    
    .belief-grid {
        grid-template-columns: 1fr;
    }
    
    .founder-intro {
        grid-template-columns: 1fr;
    }
    
    .founder-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .approach-comparison {
        grid-template-columns: 1fr;
    }
    
    .blog-layout {
        grid-template-columns: 1fr;
    }
    
    .featured-post {
        grid-template-columns: 1fr;
    }
    
    .blog-post:not(.featured-post) {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .timeline {
        padding-left: 24px;
    }
    
    .timeline-marker {
        left: -26px;
    }
    
    .founder-stats {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 100px 0 40px;
    }
    
    .belief-card,
    .method-step,
    .value-item,
    .sidebar-widget {
        padding: 20px;
    }
}
/* ==========================================
   FAQ PAGE STYLES
   ========================================== */

.faq-section {
    padding: var(--section-padding);
    background: var(--bg-light);
}

/* Quick Links */
.faq-quick-links {
    background: white;
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 60px;
    border: 2px solid var(--border-color);
}

.faq-quick-links h3 {
    font-size: 1.125rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.quick-link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.quick-link {
    padding: 12px 20px;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: var(--transition-smooth);
}

.quick-link:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: white;
}

/* FAQ Categories */
.faq-category {
    margin-bottom: 60px;
}

.category-title {
    font-size: 2rem;
    margin-bottom: 32px;
    color: var(--text-dark);
    padding-bottom: 16px;
    border-bottom: 3px solid var(--primary-color);
}

/* FAQ Items */
.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    border: 2px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    flex-shrink: 0;
    color: var(--primary-color);
    transition: var(--transition-smooth);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 2000px;
}

.faq-answer > *:first-child {
    padding-top: 0;
    margin-top: 0;
}

.faq-answer > *:last-child {
    padding-bottom: 32px;
    margin-bottom: 0;
}

.faq-answer p,
.faq-answer ul,
.faq-answer ol {
    padding: 0 32px;
    margin-bottom: 16px;
    line-height: 1.7;
    color: var(--text-medium);
}

.faq-answer strong {
    color: var(--text-dark);
}

.faq-answer ul,
.faq-answer ol {
    padding-left: 60px;
}

.faq-answer li {
    margin-bottom: 12px;
}

.principle-list {
    counter-reset: principle-counter;
    list-style: none;
    padding-left: 32px;
}

.principle-list li {
    counter-increment: principle-counter;
    position: relative;
    padding-left: 8px;
    margin-bottom: 16px;
}

.principle-list li::before {
    content: counter(principle-counter) ". ";
    color: var(--primary-color);
    font-weight: 700;
}

.inline-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid var(--primary-color);
    transition: var(--transition-smooth);
}

.inline-link:hover {
    color: #b45309;
    border-bottom-color: #b45309;
}

/* FAQ CTA */
.faq-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 60px 40px;
    border-radius: 16px;
    text-align: center;
    color: white;
}

.faq-cta-content h2 {
    color: white;
    margin-bottom: 16px;
}

.faq-cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 32px;
}

.faq-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
}

.faq-cta-note {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .quick-link-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .faq-answer p,
    .faq-answer ul,
    .faq-answer ol {
        padding: 0 20px;
    }
    
    .faq-cta-buttons {
        flex-direction: column;
    }
}