/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://media.istockphoto.com/id/942682414/photo/businessman-working-in-office-with-using-calculator-and-laptop-concept-finance-and-accounting.jpg?s=612x612&w=0&k=20&c=HGBNg6WJ166u8IF8OO7xUYSqGgaxyfiuNRUyd5XabWo=');
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 0;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    margin-bottom: 1.5rem;
    font-size: 3.5rem;
    color: white;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

/* À propos Section */
.about {
    background-color: var(--light);
}

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

.about-img {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-content h2 {
    text-align: left;
    font-size: 2.5rem;
}

.about-content h2:after {
    left: 0;
    transform: none;
}

.about-content p {
    margin-bottom: 20px;
}

/* Solutions Section */
.solutions {
    background-color: #f9f9f9;
}

.solutions h2 {
    margin-bottom: 3rem;
}

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

.solution-card {
    display: flex;
    align-items: stretch;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: all 0.3s ease;
    min-height: 100px;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(139, 111, 71, 0.15);
    border-color: #ddd;
}

.sol-icon {
    width: 85px;
    min-width: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.sol-text {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #333;
    font-weight: 600;
    line-height: 1.3;
    background-color: #fcfcfc;
    flex: 1;
}

/* Updated colors to be more professional and matching */
.sol-auto { background-color: #64748b; } /* Slate Blue-Grey */
.sol-batiment { background-color: #fbbf24; } /* Keep Yellow as requested */
.sol-boulangerie { background-color: #e67e22; } /* Bread/Grain Orange */
.sol-dentiste { background-color: #3b82f6; } /* Medical Blue */
.sol-coiffure { background-color: #db2777; } /* Beauty Pink */
.sol-commerce { background-color: #10b981; } /* Green for Commerce as requested */
.sol-hotellerie { background-color: #f43f5e; } /* Warm Rose for Hospitality */
.sol-medecin { background-color: #0369a1; } /* Healthcare Blue */
.sol-presse { background-color: #4b5563; } /* Ink/News Grey */

@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content h2 {
        text-align: center;
        font-size: 2rem;
    }
    
    .about-content h2:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-content {
        text-align: center;
    }
}

@media (max-width: 1100px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .sol-icon {
        width: 70px;
        min-width: 70px;
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 100vh;
        min-height: 500px;
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
}