/* Noble Fir Partners - Custom Styles */

:root {
    --nfp-primary: #004225; /* Dark Forest Green */
    --nfp-secondary: #D4AF37; /* Gold */
    --nfp-dark: #1a1a1a;
    --nfp-light: #f8f8f8;
    --nfp-gray: #666666;
    --nfp-border: #e0e0e0;
    --nfp-shadow: rgba(0, 0, 0, 0.1);
    --nfp-font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --nfp-font-heading: 'Playfair Display', serif;
}

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

body {
    font-family: var(--nfp-font-primary);
    color: var(--nfp-dark);
    line-height: 1.6;
    background-color: #ffffff;
}

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

/* Header */
.nfp-header {
    background: #ffffff;
    box-shadow: 0 2px 10px var(--nfp-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nfp-header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--nfp-dark);
}

.logo-icon {
    font-size: 2.5rem;
    margin-right: 1rem;
}

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

.logo-main {
    font-family: var(--nfp-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--nfp-primary);
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--nfp-gray);
    font-weight: 400;
}

.nfp-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--nfp-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--nfp-primary);
}

.nav-link.active {
    color: var(--nfp-primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--nfp-secondary);
}

.nav-cta {
    background-color: var(--nfp-primary);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background-color: var(--nfp-secondary);
    color: var(--nfp-dark) !important;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--nfp-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    padding: 5rem 0;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.hero-title {
    font-family: var(--nfp-font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--nfp-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--nfp-gray);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

/* Buttons */
.btn {
    padding: 0.875rem 2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
}

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

.btn-primary:hover {
    background-color: #003319;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 66, 37, 0.3);
}

.btn-secondary {
    background-color: white;
    color: var(--nfp-primary);
    border: 2px solid var(--nfp-primary);
}

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

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

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

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* Hero Stats */
.hero-visual {
    margin-top: 3rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.stat {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px var(--nfp-shadow);
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--nfp-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--nfp-gray);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Value Proposition Section */
.value-prop {
    padding: 5rem 0;
    background-color: white;
}

.section-title {
    font-family: var(--nfp-font-heading);
    font-size: 2.5rem;
    text-align: center;
    color: var(--nfp-primary);
    margin-bottom: 3rem;
}

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

.value-card {
    text-align: center;
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

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

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.25rem;
    color: var(--nfp-primary);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--nfp-gray);
    line-height: 1.6;
}

/* Investment Focus Section */
.investment-focus {
    padding: 5rem 0;
    background-color: #f8f8f8;
}

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

.focus-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--nfp-shadow);
    transition: transform 0.3s ease;
}

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

.focus-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: var(--nfp-border);
}

.focus-content {
    padding: 1.5rem;
}

.focus-content h3 {
    color: var(--nfp-primary);
    margin-bottom: 0.75rem;
}

.focus-content p {
    color: var(--nfp-gray);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.focus-link {
    color: var(--nfp-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.focus-link:hover {
    color: var(--nfp-primary);
}

/* Technology Preview Section */
.technology-preview {
    padding: 5rem 0;
    background-color: white;
}

.tech-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.tech-text h2 {
    font-family: var(--nfp-font-heading);
    font-size: 2.5rem;
    color: var(--nfp-primary);
    margin-bottom: 1.5rem;
}

.tech-text p {
    color: var(--nfp-gray);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.tech-features {
    list-style: none;
    margin-bottom: 2rem;
}

.tech-features li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: var(--nfp-gray);
}

.tech-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--nfp-secondary);
    font-weight: bold;
    font-size: 1.25rem;
}

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

.tech-demo {
    background: #f5f5f5;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 10px 30px var(--nfp-shadow);
}

.demo-screen {
    background: white;
    border-radius: 4px;
    padding: 2rem;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.demo-chart {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: 1rem;
}

.chart-bar {
    width: 40px;
    background: linear-gradient(to top, var(--nfp-primary), var(--nfp-secondary));
    border-radius: 4px 4px 0 0;
    transition: height 0.5s ease;
}

.demo-label {
    color: var(--nfp-gray);
    font-size: 0.875rem;
    text-align: center;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background-color: var(--nfp-primary);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-family: var(--nfp-font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.nfp-footer {
    background-color: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

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

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--nfp-secondary);
}

.footer-section p {
    color: #cccccc;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--nfp-secondary);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--nfp-primary);
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--nfp-secondary);
}

.footer-contact {
    margin-top: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
    font-size: 0.875rem;
}

.footer-bottom a {
    color: #999;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--nfp-secondary);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--nfp-primary) 0%, #003319 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-family: var(--nfp-font-heading);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* About Page Styles */
.mission-vision {
    padding: 4rem 0;
    background: white;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mv-item {
    text-align: center;
}

.mv-item h2 {
    font-family: var(--nfp-font-heading);
    color: var(--nfp-primary);
    margin-bottom: 1rem;
}

.company-story {
    padding: 4rem 0;
    background: #f8f8f8;
}

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

.story-content .lead {
    font-size: 1.25rem;
    color: var(--nfp-primary);
    margin-bottom: 2rem;
}

.story-content p {
    margin-bottom: 1.5rem;
    color: var(--nfp-gray);
    line-height: 1.8;
}

.core-values {
    padding: 4rem 0;
    background: white;
}

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

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

.value-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--nfp-secondary);
    margin-bottom: 1rem;
}

.investment-philosophy {
    padding: 4rem 0;
    background: #f8f8f8;
}

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

.philosophy-list {
    list-style: none;
    margin-top: 1.5rem;
}

.philosophy-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.philosophy-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--nfp-secondary);
    font-weight: bold;
}

.philosophy-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.phil-stat {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px var(--nfp-shadow);
}

.phil-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--nfp-primary);
}

.phil-label {
    font-size: 0.875rem;
    color: var(--nfp-gray);
}

.company-timeline {
    padding: 4rem 0;
    background: white;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--nfp-border);
}

.timeline-item {
    position: relative;
    padding: 2rem 0;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 55%;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 55%;
}

.timeline-year {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: var(--nfp-secondary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
}

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

.about-cta {
    padding: 4rem 0;
    background: var(--nfp-primary);
    color: white;
    text-align: center;
}

/* Portfolio Page Styles */
.portfolio-overview {
    padding: 3rem 0;
    background: white;
}

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

.overview-stat {
    text-align: center;
    padding: 2rem;
    background: #f8f8f8;
    border-radius: 8px;
}

.stat-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.featured-properties {
    padding: 4rem 0;
    background: #f8f8f8;
}

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

.property-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--nfp-shadow);
    transition: transform 0.3s ease;
}

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

.property-image {
    position: relative;
    height: 200px;
    background: var(--nfp-border);
}

.placeholder-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 4rem;
}

.property-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--nfp-secondary);
    color: var(--nfp-dark);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
}

.property-details {
    padding: 1.5rem;
}

.property-location {
    color: var(--nfp-gray);
    margin-bottom: 0.5rem;
}

.property-specs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--nfp-gray);
}

.portfolio-breakdown {
    padding: 4rem 0;
    background: white;
}

.breakdown-grid {
    display: grid;
    gap: 2rem;
}

.breakdown-item {
    padding: 2rem;
    border: 1px solid var(--nfp-border);
    border-radius: 8px;
}

.breakdown-bar {
    width: 100%;
    height: 20px;
    background: #f0f0f0;
    border-radius: 10px;
    margin: 1rem 0;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(to right, var(--nfp-primary), var(--nfp-secondary));
    border-radius: 10px;
}

.breakdown-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--nfp-gray);
}

.geographic-distribution {
    padding: 4rem 0;
    background: #f8f8f8;
}

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

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

.market-list {
    list-style: none;
}

.market-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--nfp-border);
}

.market-count {
    color: var(--nfp-secondary);
    font-weight: 600;
}

.investment-criteria {
    padding: 4rem 0;
    background: white;
}

.criteria-intro {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: var(--nfp-gray);
}

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

.criteria-item {
    text-align: center;
    padding: 2rem;
    background: #f8f8f8;
    border-radius: 8px;
}

.portfolio-cta {
    padding: 4rem 0;
    background: var(--nfp-primary);
    color: white;
    text-align: center;
}

/* Technology Page Styles */
.tech-header {
    background: linear-gradient(135deg, var(--nfp-primary) 0%, var(--nfp-secondary) 100%);
}

.tech-overview {
    padding: 4rem 0;
    background: white;
}

.tech-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.tech-intro .lead {
    font-size: 1.25rem;
    color: var(--nfp-gray);
    max-width: 800px;
    margin: 0 auto;
}

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

.tech-stat {
    text-align: center;
    padding: 2rem;
    background: #f8f8f8;
    border-radius: 8px;
}

.tech-stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--nfp-secondary);
    margin-bottom: 0.5rem;
}

.tech-stat-label {
    color: var(--nfp-gray);
    font-size: 0.875rem;
}

.platform-features {
    padding: 4rem 0;
    background: #f8f8f8;
}

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

.feature-showcase {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px var(--nfp-shadow);
}

.feature-icon-large {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.feature-list {
    list-style: none;
    margin-top: 1rem;
}

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

.feature-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--nfp-secondary);
}

.ai-models {
    padding: 4rem 0;
    background: white;
}

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

.model-card {
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.model-card:hover {
    border-color: var(--nfp-secondary);
}

.data-sources {
    padding: 4rem 0;
    background: #f8f8f8;
}

.section-subtitle {
    text-align: center;
    color: var(--nfp-gray);
    margin-bottom: 2rem;
}

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

.data-category {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 8px;
}

.tech-benefits {
    padding: 4rem 0;
    background: white;
}

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

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

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.security-compliance {
    padding: 4rem 0;
    background: #f8f8f8;
}

.security-content {
    text-align: center;
}

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

.security-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
}

.security-icon {
    font-size: 1.5rem;
}

.tech-cta {
    padding: 4rem 0;
    background: var(--nfp-primary);
    color: white;
    text-align: center;
}

/* Team Page Styles */
.executive-team {
    padding: 4rem 0;
    background: white;
}

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

.team-member {
    display: flex;
    gap: 1.5rem;
}

.member-photo {
    flex-shrink: 0;
}

.photo-placeholder {
    width: 120px;
    height: 120px;
    background: #f0f0f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.member-info h3 {
    color: var(--nfp-primary);
    margin-bottom: 0.25rem;
}

.member-title {
    color: var(--nfp-secondary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--nfp-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.member-social {
    display: flex;
    gap: 0.5rem;
}

.member-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--nfp-primary);
    border-radius: 4px;
    color: white;
    transition: background 0.3s ease;
}

.member-social a:hover {
    background: var(--nfp-secondary);
}

.senior-leadership {
    padding: 4rem 0;
    background: #f8f8f8;
}

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

.leader-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

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

.leader-title {
    color: var(--nfp-secondary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.advisory-board {
    padding: 4rem 0;
    background: white;
}

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

.advisor-card {
    padding: 2rem;
    border: 2px solid var(--nfp-border);
    border-radius: 8px;
}

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

.advisor-title {
    color: var(--nfp-secondary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.advisor-expertise {
    color: var(--nfp-gray);
    font-size: 0.875rem;
}

.culture-values {
    padding: 4rem 0;
    background: #f8f8f8;
}

.culture-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--nfp-gray);
    margin-bottom: 2rem;
}

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

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

.culture-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.join-us {
    padding: 4rem 0;
    background: var(--nfp-primary);
    color: white;
    text-align: center;
}

/* Contact Page Styles */
.contact-content {
    padding: 4rem 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.contact-form {
    margin-top: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--nfp-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--nfp-border);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--nfp-primary);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    width: auto;
}

.form-message {
    display: none;
    margin-top: 1rem;
}

.success-message {
    background: #d4f8d4;
    color: #155724;
    padding: 1rem;
    border-radius: 4px;
    border: 1px solid #c3e6c3;
}

.info-card {
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

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

.info-card address {
    font-style: normal;
    line-height: 1.6;
}

.info-card a {
    color: var(--nfp-secondary);
    text-decoration: none;
}

.info-card a:hover {
    text-decoration: underline;
}

.office-location {
    margin-bottom: 1rem;
}

.office-location:last-child {
    margin-bottom: 0;
}

.map-section {
    padding: 0;
}

.map-placeholder {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, #e0e0e0 0%, #c0c0c0 100%);
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Legal Pages Styles */
.legal-content {
    padding: 4rem 0;
    background: white;
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-intro {
    font-size: 1.125rem;
    color: var(--nfp-gray);
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f8f8;
    border-radius: 8px;
    border-left: 4px solid var(--nfp-secondary);
}

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

.legal-section h2 {
    font-family: var(--nfp-font-heading);
    color: var(--nfp-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--nfp-border);
}

.legal-section h3 {
    color: var(--nfp-primary);
    font-size: 1.125rem;
    margin: 1.5rem 0 0.75rem;
}

.legal-section p {
    color: var(--nfp-gray);
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0 1rem 2rem;
    color: var(--nfp-gray);
}

.legal-section li {
    margin-bottom: 0.5rem;
}

.legal-section strong {
    color: var(--nfp-dark);
}

.contact-info {
    background: #f8f8f8;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.contact-info a {
    color: var(--nfp-secondary);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nfp-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 5px 20px var(--nfp-shadow);
    }

    .nfp-nav.mobile-active {
        display: flex;
    }

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

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

    .tech-content {
        grid-template-columns: 1fr;
    }

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

    .footer-social {
        justify-content: center;
    }

    .mv-grid,
    .philosophy-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 60px;
        margin-right: 0;
        text-align: left;
    }

    .timeline-year {
        left: 20px;
        transform: translateX(-50%);
    }

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

    .member-photo {
        margin: 0 auto;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}