/* About Page - Styles supplémentaires */

/* Company Story - SECTION MISE À JOUR */
.company-story {
    padding: 80px 0;
    background: #f8f9fa;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    color: var(--primary-color);
    font-size: 36px;
    margin-bottom: 30px;
}

.story-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 25px;
}

.story-text strong {
    color: var(--primary-color);
}

/* NOUVELLE SECTION PHOTO FONDATEUR */
.founder-profile {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.founder-photo {
    width: 100%;
    max-width: 350px;
    height: auto;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.founder-info h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.founder-title {
    color: #666;
    font-size: 1rem;
    margin-bottom: 20px;
    font-style: italic;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0077B5;
    text-decoration: none;
    font-weight: 500;
    padding: 12px 24px;
    border: 2px solid #0077B5;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.linkedin-link:hover {
    background: #0077B5;
    color: white;
}

.linkedin-link svg {
    width: 24px;
    height: 24px;
    transition: fill 0.3s ease;
}

.linkedin-link:hover svg {
    fill: white;
}

/* Expertise Section */
.expertise-section {
    background: var(--bg-color);
    padding: 80px 0;
}

.expertise-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 36px;
    margin-bottom: 20px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.expertise-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.expertise-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.expertise-card h3 {
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 15px;
}

.expertise-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Approach Section */
.approach-section {
    background: white;
    padding: 80px 0;
}

.approach-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 36px;
    margin-bottom: 60px;
}

.approach-content {
    max-width: 900px;
    margin: 0 auto;
}

.approach-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    align-items: start;
}

.approach-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
}

.approach-text h3 {
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 12px;
}

.approach-text p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 16px;
}

/* Technology Section */
.technology-section {
    background: var(--bg-color);
    padding: 80px 0;
}

.technology-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 36px;
    margin-bottom: 20px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.tech-item {
    background: white;
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.tech-item h4 {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
}

.tech-item ul {
    list-style: none;
}

.tech-item li {
    padding: 8px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 20px;
}

.tech-item li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

/* Values Section */
.values-section {
    background: white;
    padding: 80px 0;
}

.values-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 36px;
    margin-bottom: 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.value-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
}

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

.value-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.value-card p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.95;
}

/* Responsive */
@media (max-width: 1200px) {
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
    }
    
    .story-text h2 {
        font-size: 28px;
    }
    
    .founder-photo {
        max-width: 280px;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .approach-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}
