body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.header {
    background-color: white;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
    font-family: 'Ganache', 'Poppins', Arial, sans-serif;
    font-size: 2rem;
    font-weight: bold;
    text-decoration: none;
}


.logo-img {
    max-width: 200px;
    margin-bottom: 30px;
}

.logo-small-img {
    max-width: 100px;
    margin-left: 2rem;
}

.services {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

@media (max-width: 991.98px) {

  /* Bootstrap lg breakpoint */
  .services {
    flex-direction: column;
    align-items: center;
  }

  .service-card {
    max-width: 100% !important;
  }
}

.service-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    max-width: 50%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.c {
    background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.5)), url('conciergerie/img/kevin-et-laurianne-langlais-0MGo3nl5iF4-unsplash') no-repeat center center/cover;
}

.s {
    background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.5)), url('secretariat/img/marissa-grootes-flRm0z3MEoA-unsplash.jpg') no-repeat center center/cover;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    max-width: 200px;
    height: auto;
    padding: 20px 0;
}

.btn,
.btnC,
.btnS {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}

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

.btn {
    color: white;
    background-color: #007BFF;
}

.btnC {
    color: white;
    background-color: #668756;
}

.btnC:hover {
    background-color: #415737;
}

.btnS {
    color: black;
    background-color: #FFA07A;
}

.btnS:hover {
    background-color: #cc8062;
}