@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'roboto', sans-serif;
}

html, body {
    background-color: #a9e0fc18;
}

main {
    height: 100vh;
}

.important-notice {
    text-align: center;
    font-size: 1.2em;
    padding: 20px;
    background-color: #ffeb3b;
    color: #000;
    margin-bottom: 20px;
    border-radius: 10px;
}

.important-notice strong {
    font-size: 1.5em;
    display: block;
    margin-bottom: 10px;
}


.logo-container {
    text-align: center;
    margin-bottom: 20px;
}

.logo {
    width: 300px;
    max-width: 100%;
}

.team-presentation {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
}

.manager-photo {
    width: 250px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.team-text {
    flex: 1;
}

.advantages ul {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

.advantages li {
    padding-left: 1.5em;
    text-indent: -1.5em;
    margin-bottom: 5px;
}

.advantages li::before {
    content: "✔ ";
    color: green;
}

.padding {
    padding: 100px;
}

.border-radius {
    border-radius: 20px;
}

.size {
    width: 50%;
    height: auto;
}

.cgv {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
    width: 50%;
    height: auto;
    padding: 20px;
}

.flex-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.flex-row-reverse {
    flex-direction: row-reverse;
}

.gap-3 {
    gap: 3rem
}

.justify-content-center {
    justify-content: center;
}

.padding-bottom {
    padding-bottom: 100px;
}

.button {
    background-color: #fff;
    color: #0f0e0e;
    border: 0;
    border-radius: 20px;
    cursor: pointer;
    margin-top: 18px;
    letter-spacing: 1px;
    padding: 10px;
    padding-right: 18px;
    padding-left: 18px;
    transition: 0.5s;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

.button:hover {
    transform: scale(1.02);
}


@media (max-width: 768px) {
  .phone {
    display: none;
  }
}

.small {
    font-size: small;
}

footer {
  	display: flex;
    justify-content: center;
    background-color: #333;
    color: #fff;
    padding: 5px 5px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

@media (max-width: 768px) {
  footer {
    display: none;
  }
}
@media (max-width: 768px) {
  header {
    display: none;
  }
}

