  .home{
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: url(../images/home-bg.png); 
    background-size:cover;
    background-position: center;
    padding-left: 5rem;
  }

  .home h1{
    font-size: 5rem;
    color: var(--third-color);
  }

  .home h2{
    font-size: 3rem;
    color: var(--third-color);
  }

  .home p{
    font-size: 1.6rem;
    color: var(--third-color);
  }

  .home button{
    width: 15rem;
    height: 5rem;
    background-color: var(--second-color);
    color: var(--third-color);
    box-shadow: 1px 1px 1px rgba(0,0,0,0.4);
    margin-top: 3rem;
    cursor: pointer;
    border: 1px solid var(--second-color);
  }

  .home button:hover{
    background: var(--third-color);
    color: var(--second-color);
    transition: 0.3s ease-in;
  }

  .form h1{
    margin: 0;
  }
  .form{
    padding: 5rem 13rem;
    display: flex;
    flex-direction: column;
    gap: 6rem;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.2);
    justify-content: center;
    
    
}
.form button{
    width: 15rem;
    height: 4rem;
    border: none;
    background-color: var(--third-color);
    color: var(--second-color);
    
    
}
.form button:hover{
    color: var(--third-color);
    background-color: var(--second-color);
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.form input{
    
    width: 50rem;
    height: 5rem;
    background-color: var(--third-color);
    border: 1px solid var(--koyu-yesil) ;  
    color: var(--acik-yesil); 
    
    padding: 2rem;
    
}

.servicesTitle h2{
  text-align: center;
  margin-top: 10rem;
  font-size: 3rem;
  padding-top: 5rem;
}

.servicesContainer{
  display: grid;
grid-template-columns: repeat(auto-fit, minmax(30rem,auto));
grid-gap: 6rem;  
row-gap: 5rem;
padding: 1rem;
padding: 5rem 10%;
background-color: white;
}



.service{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--third-color);
  padding: 2rem 2rem;
  -webkit-box-shadow: 0px 0px 15px 1px rgba(0,0,0,0.3);
  -moz-box-shadow: 0px 0px 15px 1px rgba(0,0,0,0.3);
  box-shadow: 0px 0px 15px 1px rgba(0,0,0,0.3);
  border-radius: 2rem;
}

.service img{
  width: 6rem;
  margin-left: auto;
  margin-right: auto;
  height: 8rem;
  top: 0;
  transition: 0.4s ease-in;
}

.service h3{
  font-size: 2rem;
  margin-top: 3rem;
  color: var(--second-color);
  transition: 0.4s ease-in;
}

.service p{
  font-size: 1.6rem;
  text-align: center;
  margin-top: 2rem;
  color: var(--second-color);
  transition: 0.4s ease-in;
}

.service button{
  margin-top: 3rem;
  width: 15rem;
  height: 4rem;
  background-color: var(--second-color);
  color: var(--third-color);
  font-size: 1.6rem;
  border-radius: 2rem;
  cursor: pointer;
  opacity: 0;
  border: 1px solid var(--second-color);
  transition: 0.4s ease-in;
}

.service:hover img{
  opacity: 0;
  transition: 0.4s ease-in;
}

.service:hover h3{
  color: var(--main-color);
  margin-top: -10rem;
  transition: 0.4s ease-in;
}

.service:hover button{
  opacity: 1;
  transition: 0.4s ease-in;
}

.service button:hover{
  color: var(--second-color);
  background-color: var(--third-color);
  
  transition: 0.4s ease-in;
}
 
.hakkimizdaContainer{
  width: 70%;
  margin-left: 15%;
  display: flex;
  margin-top: 5rem;
}

.hakkimizdaGorsel img{
  height: 40rem;
  -webkit-box-shadow: 0px 0px 15px 1px rgba(0,0,0,0.6);
-moz-box-shadow: 0px 0px 15px 1px rgba(0,0,0,0.6);
box-shadow: 0px 0px 15px 1px rgba(0,0,0,0.6);
}

.hakkimizdaText{
  padding: 0rem 5rem;
}

.hakkimizdaText h2{
  font-size: 4rem;
  color: var(--second-color);
}
.hakkimizdaText h2 span{
  color: var(--main-color);
}

.hakkimizdaText ul p{
  margin-top: 3rem;
  font-size: 1.6rem;
  color: var(--second-color);
  text-transform: none;
}

.hakkimizdaText ul li{
  margin-top: 3rem;
  font-size: 1.6rem;
  list-style:none;
  color: var(--second-color);
  text-transform: none;
  
}

.faq-container {
  width: 100%;
  height: 60vh;
  display: flex;
  margin-top: 10rem;
  overflow: hidden;
  background-color: #fff;
}

.faq-image {
  margin: 3rem;
  flex: 1;
  background-image: url(../images/faq.jpg);
  background-size: cover;
  background-position: center;
  -webkit-box-shadow: 0px 0px 15px 1px rgba(0,0,0,0.3);
  -moz-box-shadow: 0px 0px 15px 1px rgba(0,0,0,0.3);
  box-shadow: 0px 0px 15px 1px rgba(0,0,0,0.3);
}

.faq-content {
  flex: 1;
  padding: 3rem 7rem;
  overflow: hidden;
}

.faq-content h2 {
  margin-bottom: 2rem;
  color: #333;
  font-size: 4rem;
}

.faq-content h2 span{
  color: var(--main-color);
}

.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 2rem;
  padding-top: 1rem;
  
}

.faq-question {
  font-weight: bold;
  cursor: pointer;
  font-size: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3px 1rem;
  transition: 0.5s ease;
  color: var(--second-color);
  text-transform: none;
}


.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--second-color);
  font-size: 1.6rem;
  padding-left: 1rem;
  text-transform: none;
}

.faq-item.open .faq-answer {
  max-height: 15rem; /* Uzun cevaplar için yeterince büyük bir değer */
  transition: 0.5s ease;
}

.faq-item.open .faq-question{
  color: var(--main-color);
  transition: 0.3s ease;
}

.whyContainer{
  width: 100%;
  height: 50vh;
  background-color: var(--third-color);
  padding: 4rem;
  margin-top: 10rem;
}

.whyContainer h2{
  text-align: center;
  font-size: 3rem;
  color: var(--second-color);
  
}

.why{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  gap: 5rem;
  
}

.whyBox{
  height: 25rem;
  width: 25rem;
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 0;
  gap: 1rem;
  -webkit-box-shadow: 0px 0px 15px 1px rgba(0,0,0,0.3);
  -moz-box-shadow: 0px 0px 15px 1px rgba(0,0,0,0.3);
  box-shadow: 0px 0px 15px 1px rgba(0,0,0,0.3);
}

.whyBox i{
  font-size: 4rem;
  color: var(--main-color);
}

.whyBox p{
  font-size: 3rem;
  color: var(--second-color);
  font-weight: 600;
}

.whyBox h3{
  font-size: 2rem;
  color: var(--second-color);
  margin-top: 1rem;
}

 .whyBox .decor{
  width: 6rem;
  height: 0.5rem;
  background-color: var(--main-color);
  border-radius: 1rem;
  margin-top: 1rem;
}

.tagembed-widget{
  margin-top: 5rem;
}

@media (max-width:1366px) {
  .home{
    justify-content: center;
    flex-direction: row;
    gap: 5rem;
  }
  .home .titles{
    text-align: center;
    margin-top: -10rem;
  }

  .home h1{
    font-size: 4rem;
  }

  .home button{
    margin-top: 1rem;
  }
  
  .home .titles h2{
    margin-top: 0rem;
  }
  .form{
    padding: 4rem 5rem;
    gap: 3rem;
  }

  .form h1{
    font-size: 3.5rem;
  }

  
  .hakkimizdaContainer{
    width: 100%;
    margin-left: 0;
    display: flex;
    margin-top: 5rem;
    align-items: center;
  }
  
  .hakkimizdaGorsel img{
    height: 30rem;
  }
  
  .hakkimizdaText ul p{
    margin-top: 2rem;
    font-size: 1.7rem;
  }
  
  .hakkimizdaText ul li{
    margin-top: 2rem;
    font-size: 1.7rem;
  }

  .faq-image{
    display: none;
  }

  .faq-container{
    width: 90%;
    margin-left: 5%;
    height: auto;
  }

  .whyContainer .why .whyBox h3{
    text-align: center;
    font-size: 1.5rem;
  }
  
}

@media (max-width:800px) {
  .home{
    justify-content: center;
    align-items: center;
    margin-top: rem;
    padding-left: 0rem;
    flex-direction: column;
  }

  .home h1{
    font-size: 3rem;
    text-align: center;
  }

  .form{
    padding: 3rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.2);
    justify-content: center;
}
.form input{
    width: 35rem;
}

.servicesContainer{
  grid-template-columns: repeat(auto-fit, minmax(25rem,auto));
  }

.hakkimizdaContainer{
  width: 100%;
  margin-left: 0;
  display: flex;
  margin-top: 5rem;
  align-items: center;
  flex-direction: column;
  gap: 5rem;
}

.hakkimizdaGorsel img{
  height: 25rem;
  width: 35rem;
}

.hakkimizdaContainer .hakkimizdaText h1{
  text-align: center;
}


.faq-container {
  height: auto;
}


.faq-content {
  padding: 3rem 0rem;
}

.faq-content h2 {
  text-align: center;
}

.faq-question {
  font-size: 1.6rem;
}

.whyContainer{
  height: auto;
}


.why{
 flex-direction: column;
 margin-top: 5rem;
}


  
}