@import url('root.css');

body {
    margin-top: 150px;
}

.services {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
}

.services-titre h1 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 2rem;
}

.service-grid {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;

}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-logo {
    width: 100px;
    height: 100px;
    margin-bottom: 1rem;
}

.service-item h2 {
    margin-bottom: 0.5rem;
}

.service-item p {
    text-align: center;
}

.search-bar {
    display: flex;
    align-items: center;
    margin: 1rem auto;
    max-width: 500px;
    padding: 0.5rem;
    background-color: var(--text-secondary);
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.search-input {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    outline: none;
}

.search-btn {
    padding: 0.5rem;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-btn:hover {
    background-color: #0056b3;
}