/* style.css */

/* Réinitialisation basique */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Typographie générale */
body {
    font-family: 'Open Sans', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

/* En-tête */
#header {
    background-color: #343a40;
    padding: 10px 0;
    color: #fff;
}

#header .navbar ul {
    list-style: none;
}

#header .navbar ul li {
    display: inline;
    margin-right: 15px;
}

#header .navbar ul li a {
    color: #fff;
    text-decoration: none;
}

/* Section Hero */
#hero {
    background-color: #0093d5;
    color: white;
    padding: 60px 0;
    text-align: center;
}

#hero h1 {
    font-size: 48px;
    font-weight: 600;
}

#hero p {
    font-size: 18px;
    margin: 20px 0;
}

/* Sections */
.section-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 40px;
}

/* Services */
.service-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.service-item i {
    font-size: 40px;
    margin-bottom: 15px;
}

.service-item h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-item p {
    font-size: 16px;
    color: #777;
}

/* Footer */
#footer {
    background-color: #343a40;
    color: white;
    padding: 40px 0;
    text-align: center;
}

#footer p {
    font-size: 16px;
    color: #ffffff;
}

#spinner {
    margin-left: 10px;
    width: 1.5rem;
    height: 1.5rem;
  }
