body {
    font-family: 'Quicksand', sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 50px 5%;
    text-align: center;
}


h2 {
    text-align: center;
    font-size: 50px;
    margin-bottom: 20px;
}

@media (min-width: 900px) {
    h2 {
        margin-left: 0;
    }
}


.logo {
    max-width: 90px; 
    margin-bottom: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.form-group {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
}


.form-group label {
    position: absolute;
    left: 15px; 
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #666;
    pointer-events: none;
}

/* Styling for inputs */
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    padding-right: 60px; 
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}


.contact-form textarea {
    resize: none;
    min-height: 150px;
}


.contact-form button {
    width: 100%;
    max-width: 300px;
    padding: 15px;
    font-size: 18px;
    background-color: #b92f0c;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 0 auto;
}

.contact-form button:hover {
    background-color: #e75b24;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 20px; 
    margin-top: 15px;
}


.checkbox-group input[type="checkbox"] {
    width: 20px; 
    height: 20px;
    margin: 0;
    cursor: pointer;
}


.checkbox-group label {
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px; 
    line-height: 1.5;
}
#loading-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* Adds spacing between spinner and text */
    margin-top: 20px; /* Adjusts positioning */
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 480px) { /* Targets smaller phones */
    .g-recaptcha {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
    }
  }
