*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", serif;
}
body{
  background-color: #fff;
}
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.bg-text-section{
    background-color: #EDF6F4;
    padding: 40px 0px 30px;
}
.Title-text-section{
    text-align: center;
    max-width: 70%;
    position: relative;
    margin: 80px auto;
}
.Title-text-section h1{
    font-family: "Rosarivo", serif;
    font-size: 40px;
    margin-bottom: 25px;
}

.Title-text-section p{
    font-size: 22px;
    margin-bottom: 20px;
    color: #484847;
}
.form-group label{
    font-size: 21px;
    font-weight: 500;
}
.form-group ::placeholder,
.form-group select,
.form-group input{
    font-size: 18px;
    font-weight: 400;
    color: #8F8989;
}
input[type="email"],
select {
    width: 100%;
    font-size: 18px;
    padding: 15px;
    border: 1px solid #ccc;
    box-sizing: border-box; 
}
.form-container {
    width: 60%;
    margin: 40px auto;
    padding: 20px;
}

.form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.two-fields {
    display: flex;
    gap: 10px;
}

.two-fields input,
.two-fields select {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
}

textarea {
    width: 100%;
    height: 150px;
    resize: none;
    padding: 15px;
    border: 1px solid #ccc;
}

.contact-text {
    grid-column: span 2;
    font-size: 14px;
    margin-top: -10px;
    margin-bottom: 10px;
    color: #484847;
}

.contact-text a {
    color: #007b5e;
    text-decoration: underline;
}

.submit-btn {
    background-color: #007b5e;
    color: white;
    font-size: 19px;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    width: 500px;
    margin-top: 10px;
    transition: background-color 0.3s;
    border: solid 1px;
}

.submit-btn:hover {
    background-color: #ffffff;
    border: solid 1px;
    border-color: #007b5e;
    color: black;
}
.button-container{
    text-align: center;
}


@media(max-width: 1440px){
    .banner-title{
      font-size: 55px;
    }
    .Title-text-section{
        max-width: 80%;
        margin: 80px auto;
    }
    .Title-text-section h1{
        font-size: 36px;
        margin-bottom: 25px;
    }
    .Title-text-section p{
        font-size: 20px;
        margin-bottom: 20px;
    }
    .form-container {
        width: 70%;
        padding: 20px;
    }
    .form-group label{
        font-size: 18px;
    }
    .form-group ::placeholder,
    .form-group select,
    .form-group input{
        font-size: 16px;
    }
    .two-fields input,
    .two-fields select {
        padding: 13px;
    }
    
    input[type="email"],
    select {
        font-size: 16px;
        padding: 13px;
    }
    textarea {
        height: 80px;
        padding: 15px;
    }
    .contact-text {
        font-size: 13px;
    }
    .submit-btn {
        font-size: 18px;
        padding: 11px 20px;
        width: 500px;
        margin-top: 15px;
    }
    
    }
    @media(max-width: 1250px){
        .banner-title{
          font-size: 45px;
        }
        .Title-text-section{
            max-width: 80%;
            margin: 70px auto;
          }
          .Title-text-section h1{
            font-size: 33px;
            margin-bottom: 25px;
          }
          .Title-text-section p{
            font-size: 17px;
            margin-bottom: 20px;
          }
          .form-container {
            padding: 20px;
        }
        .form-group label{
            font-size: 16px;
        }
        .form-group ::placeholder,
        .form-group select,
        .form-group input{
            font-size: 14px;
        }
        .two-fields input,
        .two-fields select {
            padding: 10px;
        }
        
        input[type="email"],
        select {
            font-size: 14px;
            padding: 10px;
        }
        .contact-text {
            font-size: 12px;
            margin-top: -13px;
        }
        .submit-btn {
            font-size: 15px;
            padding: 10px 20px;
            width: 450px;
        }
        }
        @media(max-width: 1024px){
            .banner-title{
              font-size: 38px;
            }
            .Title-text-section{
                max-width: 85%;
                margin: 60px auto;
            }
            .Title-text-section h1{
                font-size: 28px;
                margin-bottom: 25px;
            }
            .Title-text-section p{
                font-size: 14px;
                margin-bottom: 20px;
            }
            .form-container {
                width: 80%;
                margin: 40px auto;
                padding: 20px;
            }
            .form {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
            .form-group label{
                font-size: 14px;
            }
            .form-group ::placeholder,
            .form-group select,
            .form-group input{
                font-size: 12px;
            }
            .two-fields input,
            .two-fields select {
                padding: 9px;
            }
            
            input[type="email"],
            select {
                width: 100%;
                font-size: 12px;
                padding: 9px;
            }
            textarea {
                height: 80px;
                padding: 15px;
            }
            .contact-text {
                font-size: 11px;
                margin-top: -13px;
                margin-bottom: 10px;
            }
            .submit-btn {
                font-size: 14px;
                padding: 8px 20px;
                width: 380px;
                margin-top: 15px;
            }
            }
    @media(max-width: 768px){
        .banner-title{
            font-size: 30px;
        }

        .Title-text-section{
            max-width: 85%;
            margin: 35px auto;
        }
        .Title-text-section h1{
            font-size: 20px;
            margin-bottom: 20px;
        }
        .Title-text-section p{
            font-size: 11px;
            margin-bottom: 15px;
        }
        .form-container {
            width: 90%;
            margin: 40px auto;
            padding: 10px;
        }
        .form {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }
        .form-group label{
            font-size: 12px;
        }
        .form-group ::placeholder,
        .form-group select,
        .form-group input{
            font-size: 9px;
        }
        .two-fields input,
        .two-fields select {
            padding: 6px;
        }
        
        input[type="email"],
        select {
            width: 100%;
            font-size: 9px;
            padding: 6px;
        }
        textarea {
            height: 80px;
            padding: 15px;
        }
        .contact-text {
            font-size: 8px;
            margin-top: -5px;
            margin-bottom: 10px;
        }
        .submit-btn {
            font-size: 11px;
            padding: 5px 20px;
            width: 280px;
            margin-top: 15px;
        }
    }
    @media (max-width: 500px) {
        .form-container {
            width: 85%;
            padding: 15px;
            margin-top: 20px;
            margin-bottom: 20px;
        }
    
        .form {
            display: flex;
            flex-direction: column; 
            gap: 10px;
        }
        .form-group label{
            margin-bottom: 4px;
        }
    
        .two-fields {
            flex-direction: column; 
        }
    
        input, select, textarea {
            width: 100%; 
            padding: 12px;
            font-size: 16px; 
        }
    
        .submit-btn {
            width: 100%;
            padding: 7px;
            font-size: 13px;
            text-align: center;
        }
    }
    