/* About Page Styles */

.about-page {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-header h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
}

.about-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Founder Story */
.founder-story {
    background: white;
    border-radius: 15px;
    padding: 60px 40px;
    margin-bottom: 60px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.story-text h2 {
    color: #022447;
    font-size: 2rem;
    margin-bottom: 10px;
}

.story-text h3 {
    color: #666;
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 500;
}

.story-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.story-text em {
    font-style: italic;
    color: #022447;
}

.highlight-box {
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4ff 100%);
    border-left: 4px solid #022447;
    padding: 30px;
    margin: 30px 0;
    border-radius: 8px;
    position: relative;
}

.highlight-box .fa-quote-left {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 2rem;
    color: #022447;
    opacity: 0.2;
}

.highlight-text {
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
    line-height: 1.7;
    margin: 0;
    padding-left: 40px;
}

.story-image {
    position: relative;
}

.story-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.story-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #022447;
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.badge-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

.badge-text {
    display: block;
    font-size: 0.9rem;
}

/* Values Section */
.our-values {
    margin-bottom: 60px;
}

.our-values h2 {
    text-align: center;
    color: #022447;
    font-size: 2rem;
    margin-bottom: 10px;
}

.section-intro {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

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

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #022447 0%, #034a7b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-card h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Key Numbers */
.key-numbers {
    background: linear-gradient(135deg, #022447 0%, #034a7b 100%);
    padding: 60px 40px;
    border-radius: 15px;
    margin-bottom: 60px;
}

.key-numbers h2 {
    text-align: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 40px;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
}

.number-card {
    text-align: center;
    padding: 20px;
}

.number-value {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.number-label {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
}

/* Approach Timeline */
.our-approach {
    background: white;
    padding: 60px 40px;
    border-radius: 15px;
    margin-bottom: 60px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.our-approach h2 {
    text-align: center;
    color: #022447;
    font-size: 2rem;
    margin-bottom: 10px;
}

.approach-timeline {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 30px;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 29px;
    top: 70px;
    width: 2px;
    height: calc(100% - 20px);
    background: #e0e0e0;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: #022447;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(59, 76, 68, 0.3);
}

.timeline-content h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #666;
    line-height: 1.7;
}

/* Why Bordeaux */
.why-bordeaux {
    background: white;
    padding: 60px 40px;
    border-radius: 15px;
    margin-bottom: 60px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.why-bordeaux h2 {
    text-align: center;
    color: #022447;
    font-size: 2rem;
    margin-bottom: 40px;
}

.bordeaux-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.bordeaux-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.bordeaux-benefits {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.bordeaux-benefits li {
    padding: 12px 0;
    color: #555;
    font-size: 1.05rem;
}

.bordeaux-benefits i {
    color: #022447;
    margin-right: 12px;
    font-size: 1.2rem;
}

.bordeaux-highlight {
    background: #f0f7ff;
    padding: 20px;
    border-left: 4px solid #022447;
    border-radius: 8px;
    font-weight: 500;
    color: #333;
}

.bordeaux-map iframe {
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Founder Quote */
.founder-quote {
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4ff 100%);
    padding: 60px 40px;
    border-radius: 15px;
    margin-bottom: 60px;
}

.quote-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: #022447;
    opacity: 0.2;
    margin-bottom: 20px;
}

.quote-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #333;
    font-style: italic;
    margin-bottom: 30px;
}

.quote-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.quote-author strong {
    font-size: 1.2rem;
    color: #022447;
}

.quote-author span {
    color: #666;
    font-size: 1rem;
}

/* About CTA */
.about-cta {
    text-align: center;
    background: white;
    padding: 60px 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.about-cta h2 {
    color: #022447;
    font-size: 2rem;
    margin-bottom: 15px;
}

.about-cta p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #022447;
    color: white;
}

.btn-primary:hover {
    background: #2a3a32;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 76, 68, 0.3);
}

.btn-secondary {
    background: white;
    color: #022447;
    border: 2px solid #022447;
}

.btn-secondary:hover {
    background: #022447;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 76, 68, 0.3);
}

.btn i {
    margin-right: 8px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .story-content,
    .bordeaux-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .story-image {
        order: -1;
    }

    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline-item {
        gap: 20px;
    }

    .timeline-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 640px) {
    .about-page {
        padding: 60px 0;
    }

    .founder-story,
    .our-approach,
    .why-bordeaux,
    .key-numbers,
    .founder-quote,
    .about-cta {
        padding: 40px 20px;
    }

    .about-header h1 {
        font-size: 2rem;
    }

    .story-text h2 {
        font-size: 1.6rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .numbers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .number-value {
        font-size: 2.5rem;
    }

    .quote-text {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}
