.dropdown-container {
    cursor: pointer;
    padding: 10px 0;
    border-bottom: 1px solid white;
}
.dropdown-container:last-child {
    border-bottom: none;
}
.dropdown-content {
    display: none;
    padding-top: 10px;
}
.dropdown-arrow {
    float: right;
    width: 20px;
    height: 20px;
}
.contact-content span {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 400;
}


.image-comparison {
    max-width: 700px;
    margin: 40px auto;
}
.image-comparison img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
}

.image-comparison .images-container {
    position: relative;
    display: flex;
}
.image-comparison .images-container .before-image {
    position: absolute;
    top: 0;
    width: 50%;
}
.image-comparison .slider {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.image-comparison .slider-line {
    position: absolute;
    height: 100%;
    width: 4px;
    background-color: #fff;
    transform: translateX(-50%);
}

.image-comparison .slider-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 60px;
    height: 60px;
    color: #fff;
    transform: translate(-50%, -50%);
}
.contactform {
    margin-top: 10%;
}
.contact-form {
    padding: 20px;
    background-color: transparent; /* Set the background color of the form to transparent */
    border-radius: 10px;
    color: #fff; /* Text color for form elements */
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    border: 1px solid #fff;
    background-color: transparent; /* Make inputs transparent to inherit parent background */
    padding: 10px;
    margin-bottom: 15px;
    color: #fff;
}

.contact-form input::placeholder,
.contact-form select::placeholder,
.contact-form textarea::placeholder {
    color: rgb(181, 175, 175);
}

.contact-form select {
    height: 40px;
}

.contact-form textarea {
    min-height: 100px;
    resize: vertical;
}

.contact-form p {
    color: #fff;
    margin-bottom: 5px;
}

.contact-form .checkboxes label {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #fff;
}

.contact-form .checkboxes input {
    margin-right: 10px;
}

.contact-form button {
    padding: 10px;
    border: 1px solid #fff;
    background-color: transparent;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: rgba(255, 255, 255, 0.2);
}
select option {
    color: #000;
}
.privacypol {
    color: orange;
    text-decoration: none;
}
.support {
    margin-top: 8%;
}