


:root{
--headr-bar-color:   #1E3028;
--hover-color:    #4A7C59;
--background-color:  #d0e8e7;
--text-color1:    #C4A882;
--text-color2:     #6B5744;
}


*{
    margin: 0;
    padding: 0;
} 


body{
    background-color: var(--background-color);
    color: var(--text-color1);
    font-family:'Segoe UI', sans-serif ;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
    letter-spacing: 0.5px;
}

h1{
    margin-bottom: 30px;
    font-size: 40px;
    color: var(--text-color2);
}


.faq-container {
    width: 90%;
    max-width: 700px;
    justify-content: space-between;
}


.para{
    text-align: center;
    font-size: 20px;
    color: var(--text-color2);
    margin-bottom: 5px;

}

summary{
    color: var(--text-color1);
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    list-style: none;
    align-items: center;
    
}


details{
    background: #c6dbdab0;
    border: 1px solid var(--headr-bar-color);
    border-radius: 12px;
    padding: 12px 20px ;
    margin-bottom: 15px;
    width: 100%;
    max-width: 700px;
    transition: all 0.5s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(58, 58, 58, 0.02);
}

.icon{
    color: var(--hover-color);
    transition: transform 0.5s ease;
    font-size: 1.2rem;
    display: inline-block;

}
.answer{
    color: var(--text-color2);
    padding-top: 10px;
    font-size: 18px;
    line-height: 1.5;
    border-top: 1px solid rgba(2, 2, 1, 0.05);
    margin-top: 10px;
}
.answer img {
    max-width: 100%;
    border-radius: 8px;
    margin-top: 10px;
    border: 1px solid #2D333B;
}

details[open] .icon{
    transform: rotate(180deg);
}


details:hover{
    background: var(--background-color);
    border-color: var(--headr-bar-color);
    transform: translateY(-1px);
}


.circle-1 { top: 70%; left: -15%; width: 700px; height: 700px; }
.circle-2 { top: 20%; right: -20%; width: 500px; height: 500px; }
.circle-3 { top: 5%; right: 60%; width: 160px; height: 160px; }
.circle-4 { top: 40%; left: 60%; width: 700px; height: 700px; }
.circle-5 { top: 60%; right: 80%; width: 500px; height: 500px; }
.circle-6 { top: 10%; right: 80%; width: 160px; height: 160px; }

.circle-1,.circle-2,.circle-3,.circle-4,.circle-5,.circle-6{
    position:fixed;
    z-index: -1;
    filter: blur(10px);
    opacity: 0.2;
}


/* زرار ال scroll */
#up {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(to right, #578164, #3a5a45);
  color: white;
  font-size: 20px;
  cursor: pointer;
  display: none; 
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: 0.3s;
}
#up:hover {
  transform: scale(1.1);
  background: black;
}
