

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

/* @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap'); */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Lora:ital,wght@0,400..700;1,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* @import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap'); */


.service-header{
    background-image: linear-gradient(
        to bottom, 
        rgba(0, 0, 0, 0.856) 0%, 
        rgba(0, 0, 0, 0.651) 60%, 
        rgb(0, 0, 0) 100%
    ), url(background/Practice4.jpeg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    height: 40vh;
    color: white;
    text-align: left;
    padding: 0px 90px;
    box-sizing: border-box;
}

.service-header p{
    font-size: 18px;
}

.service-header .text-head{
    font-size: 2.2em;
    font-weight: 600;
    margin-bottom: 20px;
}

@media (max-width: 768px){
    .service-header{
        padding: 0px 20px;
    }
}

/* Dropdown */

.dropdown-container {
    width: 100%;
    max-width: 50%;
    margin: 50px auto;
}

.dropdown {
    margin-bottom: 10px;
}

.dropdown-btn {
    width: 100%;
    padding: 30px 20px;
    color: #34373F;
    font-size: 16px;
    border-bottom: 2px solid #ccc;
    background-color: #fff;
    cursor: pointer;
    text-align: left;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    
}

.dropdown-btn button{
    background: none;
    border: none;
}

.dropdown-btn i{
    font-size: 1.5em;
}

.dropdown-icon {
    position: absolute;
    right: 10px;
    transition: transform 0.3s ease;
}

.dropdown-active .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-content {
    display: none;
    border: 1px solid #ccc;
    padding: 20px;
    background-color: #fff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.dropdown-active .dropdown-content {
    display: block;
    max-height: fit-content; /* Adjust based on content height */
}

.dropdown-content p, .dropdown-content ul {
    margin: 5px 0;
    line-height: 1.6;
}

.dropdown-content ul {
    padding-left: 20px;
}

@media (max-width: 768px) {
    .dropdown-btn {
        font-size: 14px;
    }
    .dropdown-content {
        font-size: 14px;
    }

    .dropdown-container {
    width: 100%;
    max-width: 90%;
    margin: 50px auto;
}
}