/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.page-container {
    min-height: 100vh;
    background-color: white;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #8B4513 0%, #1e40af 100%);
    color: white;
    padding: 5rem 1rem;
}

.hero-content {
    max-width: 72rem;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: white;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #dbeafe;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.625;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.5rem;
    }
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    font-size: 1.125rem;
}

@media (min-width: 640px) {
    .hero-stats {
        flex-direction: row;
    }
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stat-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.stat-divider {
    display: none;
    width: 1px;
    height: 1.5rem;
    background-color: #93c5fd;
}

@media (min-width: 640px) {
    .stat-divider {
        display: block;
    }
}

/* Mission Section */
.mission-section {
    padding: 5rem 1rem;
    background-color: #f9fafb;
}

.mission-container {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: #8B4513;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

.mission-card {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
    .mission-card {
        padding: 3rem;
    }
}

.mission-icon {
    width: 4rem;
    height: 4rem;
    color: #8B4513;
    margin: 0 auto 1.5rem auto;
    display: block;
}

.mission-text {
    font-size: 1.25rem;
    color: #374151;
    line-height: 1.625;
}

@media (min-width: 768px) {
    .mission-text {
        font-size: 1.5rem;
    }
}

/* Features Section */
.features-section {
    padding: 5rem 1rem;
}

.features-container {
    max-width: 72rem;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    max-width: 32rem;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    text-align: center;
}

.feature-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    transition: background-color 0.3s ease;
}

.feature-card:hover .feature-icon {
    opacity: 0.8;
}

.blue-bg {
    background-color: #dbeafe;
}

.blue-bg:hover {
    background-color: #bfdbfe;
}

.green-bg {
    background-color: #dcfce7;
}

.green-bg:hover {
    background-color: #bbf7d0;
}

.orange-bg {
    background-color: #fed7aa;
}

.orange-bg:hover {
    background-color: #fdba74;
}

.purple-bg {
    background-color: #e9d5ff;
}

.purple-bg:hover {
    background-color: #ddd6fe;
}

.feature-icon .icon {
    width: 2.5rem;
    height: 2.5rem;
}

.blue-bg .icon {
    color: #8B4513;
}

.green-bg .icon {
    color: #16a34a;
}

.orange-bg .icon {
    color: #ea580c;
}

.purple-bg .icon {
    color: #9333ea;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.feature-description {
    color: #4b5563;
    line-height: 1.625;
}

/* Journey Section */
.journey-section {
    padding: 5rem 1rem;
    background-color: #f9fafb;
}

.journey-container {
    max-width: 64rem;
    margin: 0 auto;
}

.journey-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-item {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.timeline-number {
    background-color: #8B4513;
    color: white;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.timeline-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
}

.timeline-description {
    color: #4b5563;
    line-height: 1.625;
}

/* Values Section */
.values-section {
    padding: 5rem 1rem;
}

.values-container {
    max-width: 72rem;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.value-card {
    text-align: center;
}

.value-icon {
    background-color: #8B4513;
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.value-icon .icon {
    width: 2rem;
    height: 2rem;
    color: white;
}

.value-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.value-description {
    color: #4b5563;
    line-height: 1.625;
}

/* CTA Section */
.cta-section {
    padding: 5rem 1rem;
    background: linear-gradient(90deg, #8B4513 0%, #8B4513 100%);
    color: white;
}

.cta-container {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 2.25rem;
    }
}

.cta-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #dbeafe;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.btn-primary {
    background-color: white;
    color: #8B4513;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #f3f4f6;
}

.btn-secondary {
    border: 2px solid white;
    color: white;
    background-color: transparent;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: white;
    color: #8B4513;
}