.custom-container {
   height: 100px;
    border-radius: 8px;
    background-color: lightblue;
    padding: 10px;
    box-sizing: border-box;
    display: flex;
}

form {

    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

label, input, select {
    margin-bottom: 10px;
    width: calc(200px);
    box-sizing: border-box;
    width: 200px;
}

input, select {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    box-sizing: border-box;
}

input[type="submit"]:hover {
    background-color: #45a049;
}

.flex3{
    margin-left: 580px;
    margin-top: -46px;
}


.flex{
    margin-left: 30px;
    margin-top: 20px;
}

.flex2{
    margin-left: 300px;
    margin-top: -50px;
}
.flex4 {
    margin-left: 1000px;
   margin-top: -48px;
}


.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.services {
    flex: 1;
    margin: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    max-width: 300px;
    text-align: center;
    box-shadow: 2px 3px 5px -2px black;
}

.services h2 {
    text-align: center;
}

.service-list {
    list-style-type: none;
    padding: 0;
}

.service-list li {
    margin-bottom: 5px;
}

@media screen and (max-width: 600px) {
    .services {
        flex: 100%;
        max-width: none;
    }
}



.highlights-container {
    display: flex;
    justify-content: space-around;
}

.highlights {
    flex: 1;
    margin: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    max-width: 300px;
    text-align: center;
    background-color: lightgray;
    box-shadow: 2px 3px 5px -2px black;
}

.highlights h2 {
    text-align: center;
}

.highlight-list {
    list-style-type: none;
    padding: 0;
}

.highlight-list li {
    margin-bottom: 5px;
}

.fa-check{
    color: red;
}



/* Add media queries for responsiveness */
@media (min-width: 300px) and (max-width: 700px) {
    .custom-container {
        height: 300px;
         border-radius: 8px;
         background-color: #f9f9f9;
         padding: 10px;
         box-sizing: border-box;
         display: flex;
     }
     
     form {
     
         flex-direction: column;
         height: 100%;
         justify-content: space-between;
     }
     
     label, input, select {
         margin-bottom: 10px;
         width: calc(100% - 22px);
         box-sizing: border-box;
         width: 200px;
        
     }
     
     input, select {
         padding: 8px;
         border: 1px solid #ccc;
         border-radius: 4px;
     }
     
     input[type="submit"] {
         background-color: #4CAF50;
         color: white;
         padding: 10px 20px;
         border: none;
         border-radius: 4px;
         cursor: pointer;
         font-size: 16px;
         box-sizing: border-box;
     }
     
     input[type="submit"]:hover {
         background-color: #45a049;
     }
     
     .flex3{
         margin-left: 50px;
         margin-top: 10px;
     }
     
     
     .flex{
         margin-left: 40px;
         margin-top: 20px;
     }
     
     .flex2{
         margin-left: 30px;
         margin-top: 10px;
     }
     .flex4 {
         margin-left: 100px;
        margin-top: 10px;
     }
}
