html{scroll-behavior: smooth;}
*{box-sizing:border-box;}

h1{
    font-size:70px;
    margin:0px;
    font-weight:100;
}

h2 {
    font-size:35px;
    font-weight:200;
    margin:0px;
    margin-bottom:10px;
}

h3 {
    font-weight:800;
    font-size:25px;
    margin:5px;
    margin-top:20px;
}

p {
    font-size:18px;
    font-weight:250;
    margin-top:5px;
    margin-bottom:30px;
}

li{
    list-style: none;
}

.container {
    display: flex;
    width: 100%;  
    overflow: hidden; 
}

.column{
    flex: 1; 
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    text-align: justify;
    margin-right:90px;
}

#headsec{
    margin-top:55px;
    height:300px;
}

.leftcol {
    flex: 1; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-left:65px;
    
}
.leftcol p {
    max-width:400px;
}

.rightcol {
    flex: 2; 
    display: flex;
    flex-direction: column;
    justify-content:center;
    position: relative;
    height:500px;
    
}

.rightcol img {
    width:100%;
    height:100%;
    object-fit: cover;
    object-position:center 80%;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, white, transparent);
    pointer-events: none; 
}

.columnlj{
    flex: 1; 
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: justify;
    text-align-last: left;
    margin-left:90px;
}

.material-symbols-outlined{
    color:black;
    font-size:30px;
}

.listlj{
    list-style:none;
    padding:0;
}

.listlj li{
    position:relative;
    padding-left:40px;
    font-size:20px;
    font-weight:400;
    margin-bottom:10px;

}

.listlj .li1::after,
.listlj #li2::after,
.listlj #li3::after {
    content: "";
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px; 
    background-size: contain;
    background-repeat: no-repeat;
}

.listlj .li1::after {
    background-image: url("../../public/icons/mail_icon_black.png");
}

.listlj #li2::after {
    background-image: url("../../public/icons/call_icon_black.png");
}

.listlj #li3::after {
    background-image: url("../../public/icons/location_icon_black.png");
}

.form-group {
    margin-bottom: 1rem;
}

.form-row {
    display: flex;
    gap: 1rem; 
}

.form-row .form-group {
    flex: 1; 
    min-width: 0;
}

select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1rem;
    background-color: white;
}
select:invalid {
    color: gray; 
}

option[disabled] {
    color: #999;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

input, textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1rem;
}

textarea {
    resize: vertical;
}

.error-message {
    color: red;
    font-size: 0.875rem;
    display: none;
}

.submit-button {
    background-color: rgb(60, 140, 175);
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: rgb(43, 121, 154);
}

#contactForm{
    width:90%;
}

.accordion {
    background-color: #eee;
    color: black;
    font-size:18px;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
}

.active, .accordion:hover {
    background-color: #ccc;
}
  
.panel {
    background-color: white;
    max-height:0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;

    border-bottom: 0.5px solid rgb(145, 145, 145);
}

.panel p {
    padding-top:20px;
    line-height:25px;
    padding-left:18px;
}

.faq{
    margin:90px;
}

.faq h2{
    border-bottom: 0.5px solid black;
    padding-bottom:10px;
}

.faq li{
    line-height:25px;
    font-weight:250;
    font-size:18px;
    list-style:circle;
}

#dropdown {
    float:right;
}

#contactsec{
    margin-top:60px;
    margin-bottom:60px;
}
  
@media only screen and (max-width: 1024px) {
    .container{
        flex-direction:column;
    }

    .leftcol{
        padding:20px;
        margin:10px;  
      }

      .gradient-overlay{
        background: linear-gradient(to bottom, white, transparent);
        width:100%;
        height:50%;
    }

    .rightcol{
        height:auto;
      }

    .rightcol img {
        object-fit:cover;
    }

      #headsec{
        height:auto;
      }

      .columnlj {
        align-items:center;
        justify-content:center;
        text-align:center;

        padding:0px;
        margin:0px;
      }

      .column {
        margin:0px;
        align-items:center;
        justify-content:center;
        text-align:center;
      }

      #contactForm {
        margin-top:60px;
      }

      .faq{
        margin:20px;
        margin-top:80px;
        margin-bottom:80px;
      }

      .panel p {
        overflow-wrap:break-word;
      }

      .accordion {
        display:flex;
        flex-direction:row;
        justify-content:space-between;
        align-items:center;
      }


  }