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

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
}

.logo img {
    max-height: 50px;
}

.login-icon a img {
    border-radius: 50%;
}

.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 10px 0;
    margin: 0;
    background-color: #333;
}

.main-nav li a {
    text-decoration: none;
    color: #fff;
    padding: 10px 15px;
    display: block;
}

.main-nav li a:hover {
    background-color: #575757;
}

.hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.slogan-container {
    flex: 1;
    text-align: center;
}

.slogan-container p {
    font-size: 2em;
    font-weight: bold;
    color: #333;
}

.slider-container {
    flex: 2;
    overflow: hidden;
}

.slider-image-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slider-image-wrapper img {
    width: 100%;
    flex-shrink: 0;
    border-radius: 8px;
}

.info-sections, .therapists-section {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 20px;
}

.section-card, .therapist-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    margin: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    flex-basis: calc(33% - 40px);
    text-align: center;
}

.section-card a {
    text-decoration: none;
    color: inherit;
}

.section-card img, .therapist-card img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 8px;
}

.therapist-card img {
    border-radius: 50%;
}