.contact-us {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: var(--secondary-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    gap: 20px;
}

.contact-us-left, .contact-us-right {
    padding: 10px;
    flex: 1;
    width: 48%;
    margin-top: 20px;
    margin-bottom: 20px;
    background-color: var(--neutral-accent);
    border-radius: 8px;
}

.contact-us-left {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-us h4 {
    color: var(--primary-color);
    font-size: 24px;
    padding: 10px;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    margin-bottom: 15px;
    padding: 12px;
    font-size: 16px;
    border: 1px solid var(--dark-accent);
    border-radius: 4px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.multiple-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    transition: opacity 0.3s ease, height 0.3s ease;
    opacity: 1;
    height: auto;
}

.multiple-form.hide {
    opacity: 0;
    height: 0;
    overflow: hidden;
}


.multiple-form-left, .multiple-form-right {
    flex: 1 1 48%; /* Allows for flexibility and sets the base width to 48% */
    max-width: 48%; /* Ensures the maximum width does not exceed 48% */
}

.select-items, input[type="text"] {
    width: 100%; /* Ensures the select and input elements take up 100% of their container's width */
    margin-bottom: 15px;
    padding: 12px;
    font-size: 16px;
    border: 1px solid var(--dark-accent);
    border-radius: 4px;
}

.select-items:focus, input[type="text"]:focus {
    border-color: var(--primary-color);
    outline: none;
}

.submit-button {
    padding: 12px;
    font-size: 16px;
    color: var(--secondary-color);
    background-color: var(--primary-color);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: var(--complementary-blue);
}
.not-active {
    background: gray;
    cursor: not-allowed;
}

.google-map{
    background-color: var(--secondary-color);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}


.company-info {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.company-info h2 {
    margin-bottom: 10px;
    font-size: 24px;
    color: #333;
}

.company-info h5 {
    margin-bottom: 5px;
    font-size: 16px;
    color: #555;
}

.company-info p {
    margin: 5px 0;
    font-size: 14px;
    color: #777;
}

.company-info span {
    font-weight: bold;
    color: #333;
}


@media (max-width: 768px) {
    .contact-us {
        flex-direction: column;
    }

    .contact-us-left, .contact-us-right {
        width: 100%;
        margin: 10px 0;
    }
}

.message {
  position: relative;
  padding: 2rem 2.5rem;
  margin: 1.5rem auto;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  font-weight: bold;
  color: white;
  display: none;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15);
  background: linear-gradient(45deg, #4CAF50, #388E3C);
  transition: background 0.3s ease-in-out;
}

.message.error {
  background: linear-gradient(45deg, #f44336, #d32f2f);
}

.close-button {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: color 0.3s ease-in-out;
  display: flex;
  align-items: center;
}

.close-button:hover {
  color: rgba(255, 255, 255, 1);
}

.close-button::after {
  content: "X";
  font-size: 1.25rem;
  margin-left: 0.5rem;
}






/* Add your CSS styles here */
.check-robot {
    display: flex;
    flex-direction: column; /* Stack question and answers divs in a column */
    align-items: flex-start;
    margin-bottom: 20px;
}
.check-robot.invalid {
    background-color: #ffcccc; /* Light red color */
}

.questions {
    width: 100%; /* Full width for the question */
    margin-bottom: 20px; /* Add some space between question and answers */
}

.answers {
    width: 100%; /* Full width for the answers */
    display: flex;
    flex-direction: column; /* Arrange answer items in a column */
    align-items: flex-start;
}

.answers-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* Add gap between items */
    justify-content: stretch;
    width: 100%; 
}

.answers-items div {
    flex: 0 0 calc(50% - 5px); /* Two items per row, minus the gap */
    box-sizing: border-box;
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    white-space: nowrap; /* Prevent text from wrapping */
    overflow: hidden; /* Hide overflow text */
    text-overflow: ellipsis; /* Add ellipsis (...) for overflow text */
    text-align: center; /* Center align text */
    
}

.answers-items div.selected {
    background-color: #f0f0f0;
}

/* Media query for larger screens */
@media (min-width: 768px) {
    .answers-items {
        justify-content: center;
    }

    .answers-items div {
        flex: 0 0 calc(45% - 5px); /* Two items per row, leaving some space */
        max-width: 45%; /* Smaller items on larger screens */
    }
}




.modal-termsConditions {
    display: none; 
    position: fixed; 
    z-index: 5; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.4); 
    padding-top: 60px; 
}
.modal-termsConditions-content {
    background-color: #fefefe;
    margin: 5% auto; 
    padding: 10px;
    border: 1px solid #888;
    width: 90%; 
}
.modalClose {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}
.modalClose:hover,
.modalClose:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
