/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Jost', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #F5F7FA;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, #2f625a 0%, #4db6ac 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, #2f625a 0%, #4db6ac 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(47, 98, 90, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1f4a43 0%, #2f625a 100%);
    box-shadow: 0 6px 20px rgba(47, 98, 90, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: #374151;
    border: 2px solid #e5e7eb;
}

.btn-secondary:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    z-index: 1000;
    padding: 10px 0;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.brand-name {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #2f625a;
}

.nav-link.active {
    color: #2f625a;
    font-weight: 600;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    background: none;
    border: none;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background: #374151;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    min-height: 30vh;
    display: flex;
    align-items: center;
}

/* About page hero (even smaller) */
.about-hero {
    padding: 10px 0 10px;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 20px;
    color: #6b7280;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
}

.hero-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.chat-preview {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.chat-message {
    padding: 16px;
    border-radius: 12px;
    max-width: 85%;
    font-size: 14px;
    line-height: 1.5;
}

.chat-message.user {
    background: #2f625a;
    color: white;
    align-self: flex-end;
    margin-left: auto;
}

.chat-message.ai {
    background: #f3f4f6;
    color: #374151;
    align-self: flex-start;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    font-size: 20px;
    color: #6b7280;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    border-color: #2f625a;
    box-shadow: 0 10px 30px rgba(47, 98, 90, 0.1);
    transform: translateY(-4px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #2f625a 0%, #4db6ac 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #2f625a 0%, #4db6ac 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
}

.feature-card h3 {
    margin-bottom: 16px;
    color: #1f2937;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Trust badges */
.trust-badges {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.trust-badge {
    background: rgba(47, 98, 90, 0.1);
    color: #2f625a;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-badges {
        justify-content: center;
    }
}
.how-it-works {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-top: 60px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2f625a 0%, #4db6ac 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 24px;
    position: relative;
    z-index: 2;
}

.step-content h3 {
    margin-bottom: 16px;
    color: #1f2937;
}

.step-content p {
    color: #6b7280;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    text-align: center;
}

.cta h2 {
    margin-bottom: 16px;
    color: white;
}

.cta p {
    font-size: 20px;
    color: #d1d5db;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: #9ca3af;
    margin-top: 16px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
}

.footer-column h4 {
    margin-bottom: 16px;
    color: white;
}

.footer-column a {
    display: block;
    color: #9ca3af;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #4db6ac;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
}

/* About Page Specific Styles */
.about-hero {
    min-height: 60vh;
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.mission-content {
    max-width: 1000px;
    margin: 0 auto;
}

.mission-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.mission-text h3 {
    color: #1f2937;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.mission-text h3:first-child {
    margin-top: 0;
}

.mission-text p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.stats-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    position: sticky;
    top: 120px;
}

.stats-card h3 {
    color: #1f2937;
    margin-bottom: 24px;
    text-align: center;
}

.stat {
    margin-bottom: 24px;
    text-align: center;
}

.stat:last-child {
    margin-bottom: 0;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2f625a 0%, #4db6ac 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.stat-label {
    color: #6b7280;
    font-size: 14px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

/* Board of Directors - 2x2 grid */
.team-section:last-child .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.team-section {
    margin-bottom: 60px;
}

.team-section-title {
    font-size: 1.8rem;
    color: #1f2937;
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e7eb;
}

.team-member {
    background: white;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.team-member:hover {
    box-shadow: 0 10px 30px rgba(47, 98, 90, 0.1);
    transform: translateY(-4px);
}

.team-photo {
    margin-bottom: 24px;
    position: relative;
}

.team-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #e5e7eb;
    margin: 0 auto;
    display: block;
    transition: all 0.3s ease;
}

.team-image:hover {
    border-color: #2f625a;
}

.photo-placeholder {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #2f625a 0%, #4db6ac 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
}

.team-info h3 {
    color: #1f2937;
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.team-role {
    color: #2f625a;
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 1rem;
}

.team-info p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

.social-link {
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    transition: all 0.2s ease;
}

.social-link:hover {
    color: #2f625a;
    border-color: #2f625a;
    background: rgba(47, 98, 90, 0.05);
}

/* About Page Responsive */
@media (max-width: 768px) {
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-card {
        position: static;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .team-section-title {
        font-size: 1.5rem;
    }
    
    .team-image,
    .photo-placeholder {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .btn-large {
        padding: 14px 24px;
        font-size: 16px;
    }

    .feature-card,
    .step {
        padding: 24px;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .features,
    .how-it-works,
    .cta {
        padding: 60px 0;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
    }
}

/* Force smaller about hero - add at the very end */
.about-hero {
    padding: 40px 0 10px !important;
    min-height: 40vh !important;
    max-height: 100vh !important;
    height: auto !important;
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 !important;
}

/* News Page Styles */
.news-hero {
    padding: 110px 0 10px;
    min-height: 25vh;
}

.news-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.news-filters {
    background: white;
    padding: 40px 0;
    border-bottom: 1px solid #e5e7eb;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-tab {
    background: none;
    border: 2px solid #e5e7eb;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    color: #6b7280;
    transition: all 0.2s ease;
}

.filter-tab:hover {
    border-color: #2f625a;
    color: #2f625a;
}

.filter-tab.active {
    background: linear-gradient(135deg, #2f625a 0%, #4db6ac 100%);
    border-color: #2f625a;
    color: white;
}

.featured-article {
    background: white;
    padding: 60px 0;
}

.featured-card {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 20px;
    padding: 60px;
    border: 1px solid #e5e7eb;
}

.featured-badge {
    background: linear-gradient(135deg, #2f625a 0%, #4db6ac 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.featured-card h2 {
    font-size: 2.2rem;
    color: #1f2937;
    margin-bottom: 20px;
    line-height: 1.3;
}

.featured-card p {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 30px;
}

.featured-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 200px;
    height: 150px;
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
}

.articles-section {
    background: #f8fafc;
    padding: 80px 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.article-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    cursor: pointer;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.article-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.article-image .image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 0;
}

.linkedin-post {
    background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
    color: white;
}

.article-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.9);
    color: #374151;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.article-content {
    padding: 30px;
}

.article-content h3 {
    color: #1f2937;
    margin-bottom: 15px;
    font-size: 1.3rem;
    line-height: 1.4;
}

.article-content p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.article-source {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.source-badge {
    background: #f3f4f6;
    color: #6b7280;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.linkedin-badge {
    background: #0077b5;
    color: white;
}

.linkedin-link {
    color: #0077b5;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.linkedin-link:hover {
    text-decoration: underline;
}

.load-more-section {
    text-align: center;
}

.newsletter-signup {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: white;
}

.newsletter-content p {
    font-size: 18px;
    color: #d1d5db;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    background: white;
    color: #333;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(47, 98, 90, 0.3);
}

/* News Page Responsive */
@media (max-width: 768px) {
    .featured-card {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 30px;
    }
    
    .featured-card h2 {
        font-size: 1.8rem;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-tabs {
        gap: 10px;
    }
    
    .filter-tab {
        padding: 10px 18px;
        font-size: 14px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .image-placeholder {
        width: 150px;
        height: 100px;
    }
}

/* Nav Branding (Logo) */
.nav-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.logo-image {
    height: 100px; /* Adjust this value */
    max-height: 100px; /* Prevents it from getting too big */
    width: auto;
}

.logo-image:hover {
    transform: scale(1.02);
}

/* Hide the old text-based brand name */
.brand-name {
    display: none;
}

/* Mobile optimization */
@media (max-width: 768px) {
    .logo-image {
        height: 45px;
    }
}

/* Hide the old text-based brand name */
.nav-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.logo-image {
    height: 70px;
    width: auto;
    transition: all 0.2s ease;
}

.logo-image:hover {
    transform: scale(1.02);
}

/* Hide the old text-based brand name */
.brand-name {
    display: none;
}

/* Mobile optimization */
@media (max-width: 768px) {
    .logo-image {
        height: 45px;
    }
}