body {
    margin: 0;
    padding: 0;
    height: 100%;
    background: linear-gradient(45deg, #ffbba7, #fa9ec1, #8ed3ec, #acf5e4);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}
@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}
.container-top {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 20px;
}

.rounded-image {
    width: 100%; /* Make the image responsive */
    max-width: 600px; /* Set maximum width */
    height: auto; /* Maintain aspect ratio */
    border-radius: 20px; /* Rounded corners */
    
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
    overflow: hidden; /* Hide overflow for cropping */
}

.container {
    text-align: center;
    margin-top: 20px; /* Add some spacing */
}

.container h1 {
    font-family: 'Montserrat', sans-serif;
    color: rgb(110, 94, 255);
    font-size: 65px;
    opacity: 0;
    transform: translateY(-20px);
    animation: slideFadeIn 1.5s ease forwards;
}

@keyframes slideFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.container2 {
    text-align: center;
    color: brown;
    font-size: 1.5em;
    font-weight: 700;
    margin-top: 10px; /* Add some spacing */
    text-align: center;
    font-size: 24px;
    animation: slideIn 2s forwards;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;

}
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px); /* Change -50px to adjust initial position */
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container-top img {
    display: block;
    margin-top: -5px; /* Crop 5px from the top */
}

body {
    background-color: aliceblue;
    max-width: 100%;
}

/* Stylish and mobile responsive CSS for the welcome paragraph */
.welcome-message {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    text-align: center;
    padding: 20px;
    margin-top: 1em;
    margin-left: 15%;
    margin-right: 15%;
    max-width: 80%;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.welcome-message h2 {
    font-size: 27px;
    font-weight: bold;
    color: #007bff;
    margin-top: 0;
}

.welcome-message p {
    margin-bottom: 15px;
}

.welcome-message a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.welcome-message a:hover {
    color: #0056b3;
}
.therapy-list {
    
    max-width: 1000px;
    margin: 0 auto;
}

ul {
    list-style: none;
    padding: 0;
}

li {
   
    padding: 10px 0;
    border-bottom: 1px solid #ccc;
}
.text-container {
    text-align: center;
    margin-top: 50px;
    max-width: 800px;
    margin: 50px auto;
    padding: 0 20px;
}

.text-container h2 {
    font-family: 'Arial', sans-serif;
    font-size: 36px;
    font-weight: bold;
    color: #007bff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.text-container p {
    font-family: 'Arial', sans-serif;
    font-size: 20px;
    color: #333;
    line-height: 1.6;
}

.text-container a {
    font-weight: bold;
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.text-container a:hover {
    color: #0056b3;
}



@media (max-width: 1000px) {
    
    .rounded-image {
        width: 100%; /* Make the image responsive */
        max-width: 700px; /* Set maximum width */
        height: auto; /* Maintain aspect ratio */
        border-radius: 20px; /* Rounded corners */
        border: 2px solid #ddd; /* Add a border */
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
        margin-top: 200px;
        margin-left: 30px;
    }
    .container-top {
        display: block;

    }
    .container h1 {
        font-family: 'Montserrat', sans-serif;
    color: rgb(110, 94, 255);
        font-size: 50px;
        opacity: 0;
        transform: translateY(-20px);
        animation: slideFadeIn 1.5s ease forwards;
    }

    @keyframes slideFadeIn {
        0% {
            opacity: 0;
            transform: translateY(-20px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .welcome-message {
        margin-left: 20%;
        font-size: 14px;
        border-radius: 0;
    }

    .welcome-message h2 {
        font-size: 20px;
    }
    .therapy-list {
        padding: 0 10px;
    }
    .container {
        margin-left: 10%;
        margin-right: 5%;
        text-align: center;
        color: blueviolet;
    }

    .container2 {
        margin-bottom: 20px;
        text-align: center;
        color: brown;
        font-size: 1em;
        font-weight: 700;
    }

    /* Stylish presentation for the text */
    .text-container h2 {
        font-size: 28px;
    }

    .text-container p {
        font-size: 16px;
    }


}

/* Stylish and mobile responsive CSS for the text container */


