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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1c1c1c;
    background: #fcfbf8;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(28, 28, 28, 0.04) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, rgba(28, 28, 28, 0.03) 1px, transparent 1px);
    background-size: 60px 60px, 80px 80px;
    font-weight: 400;
    letter-spacing: -0.01em;
}

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

/* Header */
header {
    background: rgba(252, 251, 248, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(28, 28, 28, 0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    width: 100%;
    min-height: 60px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: block;
    text-decoration: none;
}

.logo-image {
    height: 42px;
    width: auto;
    max-width: 220px;
    transition: opacity 0.2s ease;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.logo-image:hover {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #525252;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    letter-spacing: -0.01em;
}

.nav-links a:hover,
.nav-links a.active {
    color: #1c1c1c;
}

/* Main Content */
main {
    margin-top: 90px;
}

section {
    padding: 5rem 0;
}

h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #374151;
    font-weight: 600;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #22c55e;
    font-weight: 600;
    letter-spacing: -0.01em;
}

p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #525252;
    line-height: 1.7;
}

/* Hero Section */
#hero {
    background: #fcfbf8;
    color: #1c1c1c;
    text-align: center;
    padding: 8rem 0 6rem;
    border-bottom: 1px solid rgba(28, 28, 28, 0.08);
    position: relative;
    overflow: hidden;
}


.hero-logo {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.hero-logo-image {
    height: 160px;
    width: auto;
    max-width: 800px;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#hero h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #1e293b 0%, #374151 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.1;
    position: relative;
    z-index: 2;
}

#hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #525252;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

#hero p:first-of-type {
    font-size: 1.5rem;
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #1e293b 0%, #374151 100%);
    color: #fcfbf8;
    padding: 0.875rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-top: 1rem;
    letter-spacing: -0.01em;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 24px rgba(30, 41, 59, 0.3);
}

.cta-button:active {
    transform: translateY(-1px) scale(1.02);
    transition: all 0.1s ease;
}

/* Services List */
.services-list {
    max-width: 800px;
    margin: 3rem auto 0;
}

.service-item {
    background: #ffffff;
    border: 1px solid rgba(28, 28, 28, 0.06);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-item:hover {
    border-color: rgba(28, 28, 28, 0.12);
    box-shadow: 0 2px 8px rgba(28, 28, 28, 0.04);
}

.service-header {
    display: flex;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-header:hover {
    background: rgba(28, 28, 28, 0.02);
}

.service-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.service-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(28, 28, 28, 0.06);
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1c1c1c;
}

.service-title h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1c1c1c;
}

.service-summary {
    flex: 2;
    color: #525252;
    font-size: 0.95rem;
    margin: 0 1rem;
}

.expand-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(28, 28, 28, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 300;
    color: #1c1c1c;
    transition: all 0.3s ease;
}

.service-item.expanded .expand-icon {
    transform: rotate(45deg);
    background: rgba(28, 28, 28, 0.1);
}

.service-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: rgba(28, 28, 28, 0.01);
}

.service-item.expanded .service-details {
    max-height: 300px;
    padding: 0 2rem 2rem;
}

.service-details p {
    margin-bottom: 1.5rem;
    color: #525252;
    line-height: 1.6;
}

.service-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-details li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #525252;
    font-size: 0.95rem;
}

.service-details li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #1c1c1c;
    font-weight: 600;
}

/* About Section */
#about {
    text-align: center;
    background: #fcfbf8;
    border-top: 1px solid rgba(28, 28, 28, 0.08);
    border-bottom: 1px solid rgba(28, 28, 28, 0.08);
    position: relative;
}


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

.about-content > div {
    margin-bottom: 2.5rem;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #374151;
}

.about-content h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    margin-top: 3rem;
    color: #1c1c1c;
    font-weight: 600;
}

.about-content h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    color: #1c1c1c;
    font-weight: 600;
}

.approach-principles {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.approach-principles li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
    color: #374151;
    line-height: 1.7;
    font-size: 1.05rem;
}

.approach-principles li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #1c1c1c;
    font-weight: 600;
    font-size: 1.2rem;
}

.founder-section strong,
.approach-section strong,
.network-section strong,
.methodology-section strong {
    color: #1c1c1c;
    font-weight: 600;
}

.approach-link {
    color: #1c1c1c;
    text-decoration: underline;
    text-decoration-color: rgba(28, 28, 28, 0.3);
    text-underline-offset: 3px;
    transition: all 0.2s ease;
}

.approach-link:hover {
    text-decoration-color: #1c1c1c;
    color: #525252;
}

.founder-link {
    color: #1c1c1c;
    text-decoration: underline;
    text-decoration-color: rgba(28, 28, 28, 0.3);
    text-underline-offset: 3px;
    transition: all 0.2s ease;
}

.founder-link:hover {
    text-decoration-color: #1c1c1c;
    color: #525252;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(28, 28, 28, 0.04), 0 8px 32px rgba(28, 28, 28, 0.03);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(28, 28, 28, 0.03);
    cursor: pointer;
}

.testimonial-card:hover {
    box-shadow: 0 6px 24px rgba(28, 28, 28, 0.08), 0 20px 56px rgba(28, 28, 28, 0.10);
    transform: translateY(-6px) scale(1.01);
    border-color: rgba(28, 28, 28, 0.08);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #525252;
}

.testimonial-card cite {
    font-weight: 500;
    color: #1c1c1c;
}

.testimonial-link {
    color: #1c1c1c;
    text-decoration: underline;
    text-decoration-color: rgba(28, 28, 28, 0.3);
    text-underline-offset: 2px;
    transition: all 0.2s ease;
}

.testimonial-link:hover {
    text-decoration-color: #1c1c1c;
    color: #525252;
}

.testimonials-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(28, 28, 28, 0.08);
}

.testimonials-footer p {
    color: #525252;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Resources */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.resource-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(28, 28, 28, 0.04), 0 8px 32px rgba(28, 28, 28, 0.03);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(28, 28, 28, 0.03);
}

.resource-card::before {
    content: '';
    position: absolute;
    top: 16px;
    right: 16px;
    width: 6px;
    height: 6px;
    background: rgba(28, 28, 28, 0.08);
    border-radius: 50%;
}

.resource-card:hover {
    box-shadow: 0 4px 16px rgba(28, 28, 28, 0.06), 0 16px 48px rgba(28, 28, 28, 0.08);
    transform: translateY(-2px);
    border-color: rgba(28, 28, 28, 0.06);
}

.resource-card h3 {
    color: #1c1c1c;
    margin-bottom: 1rem;
}

.resource-card h3 a {
    color: #1c1c1c;
    text-decoration: none;
}

.resource-card h3 a:hover {
    color: #525252;
}

/* Community */
#community {
    text-align: center;
    background: #fcfbf8;
    background-image: 
        radial-gradient(circle at 30% 70%, rgba(28, 28, 28, 0.025) 2px, transparent 2px);
    background-size: 80px 80px;
    border-top: 1px solid rgba(28, 28, 28, 0.08);
    border-bottom: 1px solid rgba(28, 28, 28, 0.08);
}

.community-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.community-link {
    display: inline-block;
    background: #1c1c1c;
    color: #fcfbf8;
    padding: 0.875rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    letter-spacing: -0.01em;
}

.community-link:hover {
    background: #0a0a0a;
    transform: translateY(-1px);
}

/* Blog */
.blog-posts {
    margin-top: 3rem;
}

.blog-post {
    background: #fcfbf8;
    padding: 2rem;
    border: 1px solid rgba(28, 28, 28, 0.08);
    border-radius: 8px;
    margin-bottom: 2rem;
    transition: all 0.2s ease;
}

.blog-post:hover {
    border-color: rgba(28, 28, 28, 0.12);
}

.blog-post h3 {
    color: #1c1c1c;
    margin-bottom: 1rem;
}

/* Contact Section */
#contact {
    background: #fcfbf8;
    border-top: 1px solid rgba(28, 28, 28, 0.08);
    position: relative;
    text-align: center;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fcfbf8;
    margin: 3% auto;
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.close, .close-modal {
    color: #525252;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 15px;
}

.close:hover,
.close:focus,
.close-modal:hover,
.close-modal:focus {
    color: #1c1c1c;
}

.modal-content h2, .modal-content h3 {
    margin-bottom: 2rem;
    color: #374151;
    text-align: center;
}

.modal-content ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.modal-content li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: #1c1c1c;
}

.view-notes-btn {
    background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 0.5rem;
}

.view-notes-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}


#contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #1c1c1c;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid rgba(28, 28, 28, 0.12);
    border-radius: 6px;
    font-size: 0.95rem;
    transition: border-color 0.2s ease;
    background: #fcfbf8;
    color: #1c1c1c;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1c1c1c;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: normal;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

.submit-button {
    background: #1c1c1c;
    color: #fcfbf8;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    letter-spacing: -0.01em;
}

.submit-button:hover {
    background: #0a0a0a;
    transform: translateY(-1px);
}

/* Footer */
footer {
    background: #1c1c1c;
    color: #fcfbf8;
    text-align: center;
    padding: 2rem 0;
}

footer p {
    margin-bottom: 0.5rem;
    color: #a3a3a3;
    font-size: 0.9rem;
}

footer a {
    color: #fcfbf8;
    text-decoration: none;
    font-weight: 500;
}

footer a:hover {
    color: #a3a3a3;
}

/* Blog Page Styles */
#blog-header {
    background: #fcfbf8;
    text-align: center;
    padding: 4rem 0;
    margin-top: 90px;
    border-bottom: 1px solid rgba(28, 28, 28, 0.08);
}

#blog-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1c1c1c;
    font-weight: 600;
    letter-spacing: -0.02em;
}

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

.blog-post-card {
    background: #fcfbf8;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(28, 28, 28, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.blog-post-card::before {
    content: '';
    position: absolute;
    top: 8px;
    right: 8px;
    width: 4px;
    height: 4px;
    background: rgba(28, 28, 28, 0.15);
    border-radius: 50%;
}

.blog-post-card:hover {
    box-shadow: 0 8px 32px rgba(28, 28, 28, 0.12);
    transform: translateY(-4px);
}

.blog-post-card h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    text-align: left;
    font-weight: 600;
}

.blog-post-card h2 a {
    color: #1c1c1c;
    text-decoration: none;
}

.blog-post-card h2 a:hover {
    color: #525252;
}

.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #525252;
}

.category {
    background: rgba(28, 28, 28, 0.06);
    color: #1c1c1c;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.8rem;
}

.read-more {
    color: #1c1c1c;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
}

.read-more:hover {
    color: #525252;
}

/* Individual Blog Post Styles */
.blog-post-full {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.post-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(28, 28, 28, 0.08);
}

.post-header h1 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #1c1c1c;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.post-content {
    line-height: 1.7;
    font-size: 1rem;
}

.post-content h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-align: left;
    font-weight: 600;
    color: #1c1c1c;
}

.post-content h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #1c1c1c;
}

.post-content .lead {
    font-size: 1.1rem;
    font-weight: 400;
    color: #525252;
    margin-bottom: 2rem;
}

.post-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.post-content li {
    margin-bottom: 0.5rem;
}

.post-navigation {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(28, 28, 28, 0.08);
}

.back-to-blog {
    color: #1c1c1c;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
}

.back-to-blog:hover {
    color: #525252;
}

/* Resources Page Styles */
#resources-header {
    background: #fcfbf8;
    text-align: center;
    padding: 4rem 0;
    margin-top: 90px;
    border-bottom: 1px solid rgba(28, 28, 28, 0.08);
}

#resources-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1c1c1c;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.category-section {
    margin-bottom: 4rem;
}

.category-section h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
    color: #1c1c1c;
    font-weight: 600;
}

.resource-meta {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #525252;
}

.resource-type {
    background: rgba(28, 28, 28, 0.06);
    color: #1c1c1c;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.8rem;
}

.resource-length {
    background: rgba(28, 28, 28, 0.06);
    color: #1c1c1c;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.8rem;
}

/* Individual Resource Styles */
.resource-full {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.resource-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(28, 28, 28, 0.08);
}

.resource-header h1 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #1c1c1c;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.resource-description {
    font-size: 1.1rem;
    color: #525252;
    margin-top: 1rem;
}

.resource-content {
    line-height: 1.7;
    font-size: 1rem;
}

.table-of-contents {
    background: rgba(28, 28, 28, 0.02);
    padding: 2rem;
    border: 1px solid rgba(28, 28, 28, 0.08);
    border-radius: 8px;
    margin-bottom: 3rem;
}

.table-of-contents h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    text-align: left;
    font-weight: 600;
    color: #1c1c1c;
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
}

.table-of-contents li {
    margin-bottom: 0.5rem;
}

.table-of-contents a {
    color: #1c1c1c;
    text-decoration: none;
    font-weight: 500;
}

.table-of-contents a:hover {
    color: #525252;
}

.resource-content section {
    margin-bottom: 3rem;
}

.resource-content h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-align: left;
    color: #1c1c1c;
    font-weight: 600;
}

.resource-content h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #1c1c1c;
    font-weight: 600;
}

.resource-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.resource-content li {
    margin-bottom: 0.5rem;
}

.resource-navigation {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(28, 28, 28, 0.08);
}

.back-to-resources {
    color: #1c1c1c;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
}

.back-to-resources:hover {
    color: #525252;
}

/* Problem-First Approach Page */
#approach-header {
    background: #fcfbf8;
    text-align: center;
    padding: 4rem 0;
    margin-top: 90px;
    border-bottom: 1px solid rgba(28, 28, 28, 0.08);
}

#approach-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1c1c1c;
    font-weight: 600;
    letter-spacing: -0.02em;
}

#approach-header .lead {
    font-size: 1.25rem;
    color: #525252;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.approach-full {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.approach-intro {
    margin-bottom: 3rem;
}

.approach-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #374151;
}

.detailed-principles {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.detailed-principles li {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(28, 28, 28, 0.06);
    transition: all 0.3s ease;
}

.detailed-principles li:hover {
    border-color: rgba(28, 28, 28, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(28, 28, 28, 0.06);
}

.detailed-principles h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1c1c1c;
    font-weight: 600;
}

.detailed-principles p {
    color: #525252;
    margin: 0;
    line-height: 1.6;
}

.approach-conclusion {
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(28, 28, 28, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(28, 28, 28, 0.04);
}

.approach-conclusion p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #374151;
    margin: 0;
}

.approach-navigation {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(28, 28, 28, 0.08);
}

.back-link {
    color: #1c1c1c;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.back-link:hover {
    color: #525252;
}

/* Community Page Styles */
#community-hero {
    background: #fcfbf8;
    text-align: center;
    padding: 4rem 0;
    margin-top: 90px;
    border-bottom: 1px solid rgba(28, 28, 28, 0.08);
}

#community-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1c1c1c;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.hero-tagline {
    font-size: 1.25rem;
    color: #525252;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: #374151;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.community-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.community-philosophy h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1c1c1c;
    font-weight: 600;
    text-align: center;
}

.community-philosophy p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #374151;
}

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

.value-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(28, 28, 28, 0.06);
    transition: all 0.3s ease;
}

.value-item:hover {
    border-color: rgba(28, 28, 28, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(28, 28, 28, 0.06);
}

.value-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1c1c1c;
    font-weight: 600;
}

.value-item p {
    color: #525252;
    margin: 0;
    line-height: 1.6;
}

#previous-speakers {
    padding-top: 0;
}

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

.tshirt-image {
    max-width: 300px;
    height: auto;
    border-radius: 8px;
}

.speakers-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #525252;
    margin-bottom: 3rem;
}

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

.speaker-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(28, 28, 28, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
}

.speaker-card:hover {
    border-color: rgba(28, 28, 28, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(28, 28, 28, 0.06);
}

.speaker-photo {
    height: 200px;
    background: rgba(28, 28, 28, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(28, 28, 28, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #525252;
    font-size: 0.9rem;
}

.speaker-info {
    padding: 1.5rem;
}

.speaker-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1c1c1c;
    font-weight: 600;
}

.speaker-title {
    color: #525252;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.session-topic {
    color: #374151;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.expand-session {
    background: rgba(28, 28, 28, 0.06);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    color: #1c1c1c;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.expand-session:hover {
    background: rgba(28, 28, 28, 0.12);
}

.session-details {
    padding: 0 1.5rem 1.5rem;
    border-top: 1px solid rgba(28, 28, 28, 0.06);
    background: rgba(28, 28, 28, 0.01);
    display: none;
}

.session-details p {
    margin-bottom: 0.75rem;
    color: #374151;
    font-size: 0.95rem;
    line-height: 1.6;
}

.session-details strong {
    color: #1c1c1c;
}

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

.access-note {
    background: rgba(28, 28, 28, 0.02);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    border: 1px solid rgba(28, 28, 28, 0.04);
}

.access-note p {
    color: #374151;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

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

.access-path {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(28, 28, 28, 0.06);
    transition: all 0.3s ease;
}

.access-path:hover {
    border-color: rgba(28, 28, 28, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(28, 28, 28, 0.06);
}

.access-path h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1c1c1c;
    font-weight: 600;
}

.access-path p {
    color: #525252;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.course-link {
    color: #1c1c1c;
    text-decoration: underline;
    text-decoration-color: rgba(28, 28, 28, 0.3);
    text-underline-offset: 2px;
    transition: all 0.2s ease;
}

.course-link:hover {
    text-decoration-color: #1c1c1c;
    color: #525252;
}

.access-button {
    display: inline-block;
    background: #1c1c1c;
    color: #fcfbf8;
    padding: 0.875rem 1.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.access-button:hover {
    background: #0a0a0a;
    transform: translateY(-1px);
}

.access-button.secondary {
    background: rgba(28, 28, 28, 0.06);
    color: #1c1c1c;
}

.access-button.secondary:hover {
    background: rgba(28, 28, 28, 0.12);
    transform: translateY(-1px);
}

.cta-section {
    background: rgba(28, 28, 28, 0.02);
    padding: 2rem;
    border: 1px solid rgba(28, 28, 28, 0.08);
    border-radius: 8px;
    text-align: center;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    width: 3px;
    height: 30px;
    background: rgba(30, 41, 59, 0.4);
}

.cta-section h3 {
    margin-bottom: 1rem;
    color: #1c1c1c;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    #hero h2 {
        font-size: 2.5rem;
    }
    
    #hero p {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .community-links {
        flex-direction: column;
        align-items: center;
    }
    
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 3rem 0;
    }

    nav {
        padding: 0.75rem 15px;
    }
    
    .logo-image {
        height: 28px !important;
        max-width: 140px;
    }
    
    .hero-logo-image {
        height: 80px !important;
        max-width: 240px;
    }
    
    #hero {
        padding: 6rem 0 3rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 1.875rem;
    }
    
    #hero h2 {
        font-size: 1.75rem;
    }
    
    nav {
        padding: 0.5rem 10px;
    }
    
    .logo-image {
        height: 24px !important;
        max-width: 120px;
    }
    
    .hero-logo-image {
        height: 60px !important;
        max-width: 200px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    #hero p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .service-card,
    .testimonial-card,
    .resource-card,
    .blog-post {
        padding: 1.5rem;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
        max-height: 90vh;
        overflow-y: auto;
    }
}

/* Extra specific mobile logo fixes */
@media screen and (max-width: 768px) {
    header .logo-image,
    nav .logo-image,
    .logo .logo-image {
        height: 28px !important;
        max-width: 140px !important;
    }
    
    #hero .hero-logo-image,
    .hero-logo .hero-logo-image {
        height: 80px !important;
        max-width: 240px !important;
    }
}

@media screen and (max-width: 480px) {
    header .logo-image,
    nav .logo-image,
    .logo .logo-image {
        height: 24px !important;
        max-width: 120px !important;
    }
    
    #hero .hero-logo-image,
    .hero-logo .hero-logo-image {
        height: 60px !important;
        max-width: 200px !important;
    }
}