body {
    margin: 0px;
    width: 100vw;
    overflow-x: hidden;
}
a {
    text-decoration: none;
    color: inherit;
}
h3 {
    font-size: 2.5rem;
}
p {
    font-size: 1.5rem;
}
li {
    font-size: 1.3rem;
}
@media screen and (max-width:800px) {
    h3 {
        font-size: 1.5rem;
    }
    p {
        font-size: 1rem;
    }
    li {
        font-size: 1rem;
    }
}


.hero {
    height: 100vh;
    background-image: url('lake.jpg');         
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: white; 
    text-align: center; 
    font-family: "Verdana", "Helvetica", sans-serif;
    font-weight: light
}
.hero-container {
    width: 100vw;
}
.hero-bottom {
    margin-top: 40vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.hero h1 {
    margin-bottom: 15vw;
    font-size: 4rem;
    background-color: rgba(56, 61, 59, 0.7);
    min-width: 100vw;
    padding: 10px 0px
}
.hero h2 {
    color: white;
    font-size: 2.5rem;
    margin-top: 9vh
}
.hero a {
    background-color: #383d3b;
    padding: 20px 30px;
    border-radius: 15px;
    font-size: 1.5rem
}
.hero a:hover {
    background-color: #3498db
}
.big {
    transition: transform 0.3s ease; 
}
.big:hover {
    transform: scale(1.1);
}
@media screen and (max-width: 800px) {
    .hero h1 {
      font-size: 2.5rem
    }
    .hero h2 {
        font-size: 1.4rem;
        margin-top:
    }
    .hero a {
        font-size: 1rem
    }
    .hero-bottom {
        margin-top: 32vh
    }
  }

.teletherapy, .footer {
    background-color: #5DA9E9;
    padding: 10px 10vw;
    margin: 2rem 0rem;
}
@media screen and (max-width: 800px) {
    .teletherapy {
        margin-top: 0rem;
    }
}

.supervision-contact {
    display: flex;  
}
.supervision-container {
    padding: 20px 5vw 20px 10vw;
}
.supervision-container h3 {
    margin-top: 0px
}
.contact-container {
    background-color: #E9C384;
    border-top-left-radius: 15px; 
    border-bottom-left-radius: 15px; 
    padding: 15px 80px 15px 35px;
    max-height: 325px
}
.contact-container:hover {
    background-color: #dfad5c
}
.contact-container h3 {
    font-size: 2rem;
    margin: 20px 0px 0px 0px;
}
.icon-text {
    display: flex;
    align-items: center;
}
.icon-text:hover {
    color: white;
}
.icon-text p:hover {
    text-decoration: underline;
}
.icon-text p {
    font-size: 1.2rem;
    margin: 15px 0px
}
i {
    font-size: 1.8rem ;
    margin-right: 15px
}
@media screen and (max-width: 800px) {
    .supervision-contact {
        flex-direction: column;  
    }
    .contact-container {
        border-radius: 0px
    }
    .contact-container h3 {
        font-size: 1.5rem;
    }
    .icon-text p {
        font-size: 1rem
    }
    .icon-text i {
        font-size: 1.5rem
    }
}


.insurance {
    margin: 2rem 10vw
}
.insurance-container {
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #E9C384
}
.insurance-container h3 {
    margin: 0px
}

.team {
    display: flex;
    justify-content: space-around;
    margin: 0px 10vw;
    flex-wrap: wrap;
    
}
.team-card {
    max-width: 450px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px;
    background-color: #fff;
    text-align: center;
    padding: 15px
}
.team-card-container img {
    margin-top: 15px;
    width: 85%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}
@media screen and (max-width: 800px) {
    .team-card-container img {
        height: 100%;
        width: 100%;
    }
}
.team-card h4 {
    font-size: 2.4rem;
    margin: 10px 0px 0px 0px;
}
.team-card h5 {
    font-size: 1.2rem;
    margin: 5px 0px 15px 0px;
    color: #5DA9E9;
}
.team-card p {
    padding: 0 15px;
    margin: 10px 0;
    text-align: left;
}
.team-card a {
    color: #3498db;
    text-decoration: none;
}
.team-card a:hover {
    text-decoration: underline;
}

.footer {
    font-family: "Verdana", "Helvetica", sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 0
}
.footer-contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.footer-contact-container a {
    padding: 0px 10px
}
@media screen and (max-width: 800px) {
    .footer-contact-container {
        justify-content: start;
    }
}

.design-footer {
    display: flex;
    justify-content: center;
    align-items: center;
}
.design-footer p {
    font-size: .8rem
}