body {
    margin: 0;
    font-family: 'Noto Sans', sans-serif;
    background-color: #000;
    color: #fff;
    text-align: center;
    position: relative;
}

#splash-screen {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#splash-screen img {
    max-width: 80%;
    cursor: pointer;
}

#main-content {
    display: none;
}

#main-content.active {
    display: block;
}

h1 {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 3em;
}

h2, h3 {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
}

p {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 100;
}

.team-member {
    display: inline-block;
    text-align: center;
    margin: 20px;
    overflow: hidden;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid;
}

.team-member h2 {
    margin-top: 10px;
}

.team-member:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease-in-out;
}

.contact-form {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 20px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
    color: #000;
    animation: fadeIn 0.5s ease-in-out;
    z-index: 1000;
    width: 300px;
}

form {
    display: flex;
    flex-direction: column;
}

.contact-form input, .contact-form textarea {
    padding: 15px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
    background-color: #FFF;
    color: #000;
    border: 1px solid #fff;
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.1em;
    border-color: #00AEEF
}

.contact-form button {
    background-color: #00AEEF;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.1em;
    transition: background-color 0.3s ease-in-out;
}

.contact-form button:hover {
    background-color: #008CBA;
}

.corner-image {
    position: fixed;
    z-index: -1;
    width: 100%;
    height: auto;
}

.corner-right {
    top: 0;
    right: 0;
}

.corner-left {
    bottom: 0;
    left: 0;
}

.chat-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #00AEEF;
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 1.5em;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: background-color 0.3s ease-in-out;
}

.chat-icon:hover {
    background-color: #008CBA;
}

.reviews-container {
    width: 100vw;
    overflow: hidden;
}

.reviews {
    margin-top: 40px;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.review {
    background-color: #fff;
    color: #000;
    padding: 20px;
    border-radius: 10px;
    margin: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    min-width: 300px;
    max-width: 300px;
    flex: 1 1 30%;
}

.stars {
    color: #FFD700;
}

.fixed-logo {
    display: none;
    position: fixed;
    top: 10px;
    left: 10px;
    width: 70px;
    z-index: 1000;
}

.active .fixed-logo {
    display: block;
}

.confirmation-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #00AEEF;
    color: white;
    text-align: center;
    padding: 10px 0;
    z-index: 1001;
    transform: translateY(-100%);
    transition: transform 0.5s ease-in-out;
}

.confirmation-banner.show-banner {
    transform: translateY(0);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(20px);
    }
}

@media (max-width: 768px) {
    .fixed-logo {
        display: none !important;
    }
    h1 {
        font-size: 2em;
    }
    #main-content {
        margin-bottom: 20px;
    }
}
