

.about-hero {
    background: linear-gradient(135deg, #e8dfd7 0%, #f5f1ed 100%);
    text-align: center;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about-hero h1 {
    text-align: center;
    margin-inline: auto;
    color: #2c2416;
}

.hero-lead {
    text-align: center;
    margin-inline: auto;
    max-width: 700px;
    font-size: 1.25rem;
    line-height: 1.8;
    color: #2c2416;
}

.mission-section {
    background-color: #f5f1ed;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin-inline: auto;
}

.mission-item {
    background-color: #e8dfd7;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #8b5a2b;
}

.mission-item h2 {
    color: #1a1410;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: left;
}

.mission-item p {
    color: #2c2416;
    line-height: 1.8;
    text-align: left;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.story-section {
    background-color: #e8dfd7;
}

.story-section h2 {
    text-align: center;
    margin-inline: auto;
    color: #1a1410;
}

.story-timeline {
    max-width: 900px;
    margin-inline: auto;
    position: relative;
    padding: 2rem 0;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #8b5a2b;
    opacity: 0.3;
    transform: translateX(-50%);
}

.timeline-item {
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    text-align: right;
    padding-right: 52%;
}

.timeline-item:nth-child(even) {
    text-align: left;
    padding-left: 52%;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    background-color: #8b5a2b;
    color: #f5f1ed;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 1;
}

.timeline-content {
    background-color: #f5f1ed;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.timeline-content h3 {
    color: #1a1410;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #2c2416;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .story-timeline::before {
        left: 20px;
    }

    .timeline-item {
        text-align: left;
        padding-left: 80px !important;
    }

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

.values-section {
    background-color: #f5f1ed;
}

.values-section h2 {
    text-align: center;
    margin-inline: auto;
    color: #1a1410;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin-inline: auto;
}

.value-card {
    background-color: #e8ddf5;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border-top: 3px solid #8b5a2b;
}

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

.value-card h3 {
    color: #1a1410;
    margin-bottom: 1rem;
}

.value-card p {
    color: #2c2416;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.team-section {
    background-color: #e8dfd7;
}

.team-section h2 {
    text-align: center;
    margin-inline: auto;
    color: #1a1410;
}

.team-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin-inline: auto;
    align-items: center;
}

.team-text {
    color: #2c2416;
}

.team-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #1a1410;
    font-weight: 500;
}

.team-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.team-list li {
    background-color: #f5f1ed;
    padding: 1.5rem;
    border-radius: 8px;
    color: #2c2416;
    font-size: 0.95rem;
    line-height: 1.6;
    border-left: 3px solid #8b5a2b;
}

.team-list strong {
    color: #1a1410;
}

.team-graphic {
    width: 100%;
    max-width: 250px;
    height: auto;
    margin-inline: auto;
    color: #8b5a2b;
}

@media (max-width: 768px) {
    .team-content {
        grid-template-columns: 1fr;
    }
}

.approach-section {
    background-color: #f5f1ed;
}

.approach-section h2 {
    text-align: center;
    margin-inline: auto;
    color: #1a1410;
}

.approach-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin-inline: auto;
}

.approach-item {
    background-color: #e8dfd7;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.approach-step {
    width: 45px;
    height: 45px;
    background-color: #8b5a2b;
    color: #f5f1ed;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.approach-item h3 {
    color: #1a1410;
    margin-bottom: 1rem;
}

.approach-item p {
    color: #2c2416;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

.trust-section {
    background-color: #e8dfd7;
}

.trust-section h2 {
    text-align: center;
    margin-inline: auto;
    color: #1a1410;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin-inline: auto;
}

.trust-item {
    background-color: #f5f1ed;
    padding: 2rem;
    border-radius: 8px;
    border-top: 3px solid #8b5a2b;
}

.trust-item h3 {
    color: #1a1410;
    margin-bottom: 1rem;
}

.trust-item p {
    color: #2c2416;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.gallery-section {
    background-color: #f5f1ed;
}

.gallery-section h2 {
    text-align: center;
    margin-inline: auto;
    color: #1a1410;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin-inline: auto;
}

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

.gallery-placeholder {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.gallery-caption {
    text-align: center;
    color: #2c2416;
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
}

.contact-cta {
    background-color: #e8dfd7;
    text-align: center;
}

.contact-cta h2 {
    text-align: center;
    margin-inline: auto;
    color: #1a1410;
}

.cta-text {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
    color: #2c2416;
    font-size: 1rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", sans-serif;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    border: none;
}

.cta-primary {
    background-color: #8b5a2b;
    color: #f5f1ed;
}

.cta-primary:hover {
    background-color: #6d4623;
}

.cta-secondary {
    background-color: transparent;
    color: #8b5a2b;
    border: 2px solid #8b5a2b;
}

.cta-secondary:hover {
    background-color: #8b5a2b;
    color: #f5f1ed;
}

@media (max-width: 768px) {
    .values-grid,
    .approach-items,
    .trust-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .story-timeline::before {
        display: none;
    }

    .timeline-item {
        padding-left: 0 !important;
        text-align: left !important;
    }

    .timeline-marker {
        position: static;
        transform: none;
        margin-bottom: 1rem;
        display: inline-block;
    }

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

    .cta-primary,
    .cta-secondary {
        width: 100%;
        max-width: 300px;
    }
}

.cta-primary h1, .cta-primary h2, .cta-primary h3,
.cta-button h1, .cta-button h2, .cta-button h3,
.cta-email h1, .cta-email h2, .cta-email h3,
.footer h1, .footer h2, .footer h3 { color: #fff; }

.mission-section { color: #111111 !important; }
.mission-item { color: #111111 !important; }

.story-section { color: #111111 !important; }
.timeline-content { color: #111111 !important; }

.values-section { color: #111111 !important; }
.value-card { color: #111111 !important; }

.team-section { color: #111111 !important; }

.approach-section { color: #111111 !important; }
.approach-item { color: #111111 !important; }

.trust-section { color: #111111 !important; }
.trust-item { color: #111111 !important; }

.gallery-section { color: #111111 !important; }

.contact-cta { color: #111111 !important; }
