* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

.header {
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(142, 53, 55, 0.63), rgba(142, 53, 55, 0.63)),url(Images/IMG_9644.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
    margin-bottom: 40px;
}

nav {
    max-height: 50px;
    background-color: #8e3537;
    display: flex;
    padding: 30px;
    justify-content: space-between;
    align-items: center;
    width: auto;
}

nav img {
    width: auto;
    max-width: 100px;
}

.nav-links {
    flex: 1;
    text-align: right;
    font-weight: bold;
}

.nav-links ul li {
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}

.nav-links ul li a {
    color: white;
    text-decoration: none;
    font-size: 15px;
}

.nav-links ul li::after {
    content: '';
    width: 0%;
    height: 2px;
    background: #d35759;
    display: block;
    margin: auto;
    transition: 0.5s;
}

.nav-links ul li:hover::after {
    width: 100%;
}

.text-box {
    width: 90%;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    max-height: 50%;
}

.text-box h1 {
    font-size: 62px;
    font-weight: 700;
}

.text-box p {
    margin: 10px 0 40px;
    font-size: 14px;
    color: white;
    font-weight: 600;
}

nav .fa {
    display: none;
}

@media(max-width: 700px) {
    .text-box h1 {
        font-size: 55px;
    }
    .nav-links ul li {
        display: block;
    }
    .nav-links {
        position: absolute;
        background-color: #d35759;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav .fa {
        display: block;
        color: white;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .nav-links ul {
        padding: 30px;
    }
}

.accordion {
    background-color:#d35759;
    color: white;
    cursor: pointer;
    padding: 20px;
    width: 60%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    font-size: 20px;
    margin-top: 10px;
  }

.active, .accordion:hover {
    background-color:#8e3537;
    color: white;
}

.panel {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    padding: 0px 0px;
    background-color: rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    display: flex;
    flex-direction: column;
    font-weight: 600;
  }

.accordion:after {
    content: '\002B'; 
    float: right;
    font-size: 20px;
    color: white;
    margin-left: 5px;
  }
  
.active:after {
    content: "\2212"; 
    color: white;
  }
.options {
    padding: 20px;
    text-align: center;
}

.footer {
    width: 100%;
    text-align: center;
    padding: 30px 0;
    margin-top: 50px;
    background-color: #8e3537;
}

.footer h4 {
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 600;
}

.footer p {
    font-size: 15px;
    font-weight: 700;
    color: white;
}

.icons .fa {
    color:white;
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
}

.item {
    display: flex;
    justify-content: space-between;  
    padding: 5px;
  }
  
.service {
    text-align: left;
    padding-right: 2.5px;
}

.price {
    text-align: right; 
    padding-left: 2.5px;
}

.options button {
    font-weight: 600;
}

.serviceDesc {
    text-align: left;
    padding: 5px;
    font-size: 13px;
    font-style: italic;
    font-weight: 500;
}