html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}
body {
    line-height: 1.4;
    font-family: "Quicksand", sans-serif;
    background: #f8f2f2;
}
ol,
ul {
    list-style: none;
}
blockquote,
q {
    quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
a {
    text-decoration: none;
}
img{
    display: block;
    width: 100%;
}
 

#cookie_box {
    box-sizing: border-box;
    position: fixed;
    padding: 20px;
    background: #ffffff;
    border-radius: 5px;
    box-shadow: 0 6px 6px rgba(152, 151, 151, 0.25);
    font-family: inherit;
    z-index: 999; 
    overflow: hidden;
    max-width: 400px;
    width: 100%;
    box-sizing: border-box;
    right: 20px;
    bottom: 20px;
    opacity: 0;
    transition: all .3s linear;
    animation: open 3s linear forwards;
}
@keyframes open {
    0%{ 
        overflow: hidden;
        opacity: 0;
    }
    70%{ 
        overflow: hidden;
        opacity: 0;
    }
    100%{ 
        overflow: hidden;
        opacity: 1;
    }
}
 
#cookie_box .btn-wrap {
    display: flex;
    flex-direction: row;
    font-weight: 700;
    justify-content: center;
    margin: 0 -5px 0 -5px;
    flex-wrap: wrap;
}
.content_wrap p{
    font-size: 14px;
    line-height: 1.4;
}
#cookie_box  button { 
    padding: 0 7px;
    margin: 0 5px 10px 5px;
    border-radius: 20px;
    cursor: pointer;
    white-space: nowrap;
    min-width: 130px;
    color: #fff;
    line-height: 36px;
    border: none;  
    font-size: 14px;
    transition: box-shadow 0.3s;
}

#cookie_box button {
    outline: 0;
    border: none; 
    background:  rgb(24, 118, 1);
}
.f_block .list_main_2{
  display: grid;
  grid-template-columns: 1fr;
}.f_block .list_main_2 li{
  width: 100%;
}
#cookie_box a{
    color:  rgb(11, 118, 1);
}

#cookie_box  button:hover {
    transition:
        box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
        transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 30%);
    transform: translate3d(0, -1px, 0);
}
.grid_cokkies{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 20px;
}
#cookie_box .btn-secondary{
    background: #414141;
}
/* BURGER */

.burger{
    width: 30px;
    height: 25px; 
    position: relative;
    cursor: pointer;
    display: none;
  }
  .burger span{
    background-color:#414141;
    position: absolute;
    border-radius: 2px;
    transition: .3s cubic-bezier(.8, .5, .2, 1.4);
    width:100%;
    height: 4px;
    transition-duration: 500ms
  }
  .burger span:nth-child(1){
    top:0px;
    left: 0px;
  }
  .burger span:nth-child(2){
    top:10px;
    left: 0px;
    opacity:1;
  }
  .burger span:nth-child(3){
    bottom:0px;
    left: 0px;
  }
  .burger:not(.open):hover span:nth-child(1){
    transform: rotate(-3deg) scaleY(1.1);
  }
  .burger:not(.open):hover span:nth-child(2){
    transform: rotate(3deg) scaleY(1.1);
  }
  .burger:not(.open):hover span:nth-child(3){
    transform: rotate(-4deg) scaleY(1.1);
  }
  .burger.open span:nth-child(1){
    transform: rotate(45deg);
    top: 13px;
  }
  .burger.open span:nth-child(2){
    opacity:0;
  }
  .burger.open span:nth-child(3){
    transform: rotate(-45deg);
    top: 13px;
  }


  .logo{
    max-width: 120px;
    display: block;
}
.header_navigate ul{
    display: flex;
    gap: 30px;
}
.header_navigate a{
    color: #9b9b9b;
    font-weight: 600;
    transition: all .3s linear;
}
.header_navigate a:hover{
    color: rgb(184, 52, 3);
}
.header_nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}
header{
    position: relative;
    padding: 10px 0;
}
@media screen and (max-width: 992px) {
    /* .burger{
        display: inline-block;
        z-index: 200;
    }
    .header_navigate ul{
        flex-direction: column;
        padding:100px 30px 40px;
    }
    .header_navigate{
        position: absolute;
        top: 0;
        right: 0;
        background: #fff;
        border: 1px solid #999;
        max-width: 0px;
        z-index: 150;
        overflow: hidden;
        transition: all .4s linear;
    }
    .header_navigate.show{
        max-width: 400px;
        width: 100%;
    } */
    #cookie_box.light{
        box-sizing: border-box;
        right: 10px;
        bottom: 10px;
        width: 95%;
    }
}

/* STYLE */
.container {
    padding: 0 20px;
    max-width: 1240px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}
.grid_img_2{
    padding: 20px;
    text-align: center;
}


iframe{
    width: 100%;
    display: block;
}

/* FOOTER */
.footer_linl{
    display: flex;
    gap: 50px;
    justify-content: center;
    padding: 30px 0 13px;
}
.footer_linl a{
    transition: all .3s linear;
    color: #7f7f7f;
    font-size: 14px;
}
.footer_items p{
    font-size: 13px;
    margin: 0;
    text-align: center;
    padding: 10px 0;
    border-top: 1px solid #414141;
}
@media screen and (max-width: 767px) {
    .footer_linl{
        flex-direction: column;
        justify-content: start;
        gap: 10px;
        font-size: 14px;
        padding: 20px 0;
    }
    .footer_items p{
        text-align: left;
    }
}

/* DOP DOG */
.wrapper_doc p, .wrapper_doc li{
    font-size:16px;
    margin: 0 0 20px;
    font-weight: 300;
    line-height: 1.4;
    color: #bbb;
}
.wrapper_doc li{
    margin: 0 0 20px;
}
.wrapper_doc h3{
    font-size: 22px;
    font-weight: 500;
    margin: 0 0 20px;
}
.wrapper_doc  ul{
    list-style: numbers;
}
.wrapper_doc  ol{
    list-style: lower-alpha;
}
.wrapper_doc{
    padding: 50px 0 100px;
}
.wrapper_doc li{
    margin: 0 0 10px;
    margin-left: 20px;
}
 h2 {
  font-size: 26px;
  font-weight: 800;
  text-align: center;
  margin: 0 0 30px;
  position: relative;
  display: inline-block;
  color: #333;
}

  h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #f8b88b, #f7cfa1, #c4dbf9);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
 h2::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #f8b88b, #f7cfa1, #c4dbf9);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}



/* /FORM */
.flag {
    display: inline-block;
    width: 32px;
    height: 32px;
    background: url('./flags/flags.png') no-repeat;
    vertical-align: middle;
    background-position: 32px 32px;
  }
  .form_box{
    max-width: 360px;
    padding: 20px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  } 
  .form_box input{
    padding: 16px;
    width: 100%;
    display: block;
    box-sizing: border-box;
    border: none;
    outline: 1px solid #999;
    border-radius: 4px;
    margin: 0 0 10px;
  }
  .iti{
    width: 100%;
    margin: 0 0 10px;
  }
  .form_box input:focus, .form_box input:active{
    outline-color: aqua;
  }
  .submit_btn{
    display: block;
    width: 100%;
    padding: 12px;
    box-sizing: border-box;
    font-size: 20px;
    cursor: pointer;
  }
  .grid_bl{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  h1{
    font-size: 40px;
    font-weight: 900;
    color: rgb(31, 153, 42);
    margin: 0 0 20px;
    line-height: 1;
    font-style: italic;
    text-shadow: 0 1px 1px #000;
  }
  .f_block p{
    color: #444;
  }
  .main_container>div{
    padding: 78px 0;
  }
  p{
    color: rgba(33, 33, 33, 0.705);
    line-height: 1.5;
  }
  .prev{
    background: #e1f3e9;
  }
  .bg_sm{
    padding: 30px;
    background: #e7e7e7;
    border-radius: 20px;
  }
  .list_wrap li{
    padding: 15px;
    border-radius: 10px; 
    box-sizing: border-box;
    width: 47%;
    text-align: center;
    font-weight: 600;
    background: #3475a1;
  }
  .map_box {
  background: linear-gradient(135deg, #fff7ef, #fbe2c2);
  padding: 60px 0;
}

.map_text h2, .map_text h3 {
  color: #333;
  margin-bottom: 15px;
}

.map_text p, .map_text li {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

.map_text a {
  color: #f57c00;
  text-decoration: none;
}

.map_text a:hover {
  text-decoration: underline;
}

  .list_main {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .list_main li{
     list-style: disc;
    font-style: italic;
     font-weight: 600;
     margin-left: 20px;
  }
  .list_wrap{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .list_wrap b{
    color: antiquewhite;
  }
  b{
    font-weight: 600;
    color: rgb(118, 5, 1);
  }
  h2{
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 20px;
    color: rgb(11, 115, 180);
  }
  .f_block{
  background: linear-gradient(135deg, #c4ecf9 0%, #a1aff768 40%, #8bd7f880 100%);


  }
  .grid_img{
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px #ffffff60;
  }
  .map_box{
    background: #c4dbf9;
  }
  .grid_img img{
    max-width: 1200px;
    max-height: 1200px;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  p{
    margin: 0 0 20px;
  }
  h3{
    color: #27ae60;
    font-size: 20px; 
    font-weight: 800;
    margin: 0 0 20px;
  }
  .time li{
    color: rgb(13, 14, 15);
    margin: 6px 0;
  }
  .contact{
    min-width: 220px;
    padding: 13px;
    text-align: center;
    background: #000;
    border: 1px solid #fff;
    border-radius: 10px;
    color: #fff;
    text-align: center;
    margin-top: 30px;
    display: inline-block;
    transition: all .3s linear;
  }
  .contact:hover{
    background: #fff;
    color: #000;
  }
  #footer_box{
    background: #becaa8;
    padding: 24px 0 0 ;
  }
  .time a{
    color: #27ae60;
    font-weight: 900;
  }
  .flex_box{
    display: grid;
    grid-template-columns: 400px auto;
    gap: 40px;
    align-items: center;
  }
  .test_f p{
    font-size: 13px;
    opacity: .7;
    margin: 10px 0;
    font-style: italic;
  }
  .accordion {
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Buton */
.accordion-button {
  background: #fff;
  color: #302e2e;
  cursor: pointer;
  padding: 18px 20px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  font-size: 18px;
  font-weight: 500;
  transition: background 0.3s, color 0.3s;
  position: relative;
}

.accordion-button:hover {
  background: #f9f3e7;
}

.accordion-button::after {
  content: '+';
  font-size: 22px;
  position: absolute;
  right: 20px;
  transition: transform 0.3s;
}

.accordion-button.active::after {
  content: '-';
  transform: rotate(180deg);
}

/* İçerik */
.accordion-content {
  background-color: #fff8f0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 20px;
}

.accordion-content p,
.accordion-content ul {
  margin: 15px 0;
}

.accordion-content ul li {
  margin-left: 20px;
  margin-bottom: 8px;
  position: relative;
}

.accordion-content ul li::before {
  content: '•';
  color: #f57c00;
  font-weight: bold;
  position: absolute;
  left: -15px;
}

.course-section {
  
  color: #333;
}

.prise_block h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 20px; 
}

.course {
  background-color: #f9f9f9;
  border-left: 5px solid rgb(118, 5, 1);
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
}
.prise_block>div{
  padding: 30px;
  background: #c4dbf9;
  border-radius: 30px;
}
.course h3 {
  font-size: 22px;
  color: rgb(118, 5, 1);
  margin-bottom: 10px;
  font-weight: 600;
}

.course ul {
  list-style-type: none;
  padding-left: 0;
}

.course ul li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}
.course-section{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr; 
  margin: 0 auto;
  gap: 30px;
}
.course ul li::before {
  content: "✔️";
  position: absolute;
  left: 0;
}
.price::before{
  content: none !important;
}
.price {
  font-weight: bold;
  font-size: 18px;
  color: #27ae60;
}
/* ==== FOOTER STYLING ==== */
#footer_box {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #f5f5f5;
  padding: 60px 0 30px;
  font-family: "Poppins", sans-serif;
  position: relative;
  overflow: hidden;
}

#footer_box .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Flex Layout --- */
#footer_box .flex_box {
  display: flex; 
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}
.flex_box>div:first-child{
  min-width: 300px;
}

/* --- Logo & Contact --- */
#footer_box .logo img {
  width: 120px;
  height: auto;
  margin-bottom: 10px;
}

#footer_box h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

#footer_box .time li {
  list-style: none;
  font-size: 15px;
  margin-bottom: 5px;
}

#footer_box .time a {
  color: #9ad1ff;
  text-decoration: none;
  transition: color 0.3s;
}

#footer_box .time a:hover {
  color: #ffffff;
}

/* --- Text Section --- */
#footer_box .test_f p {
  font-size: 15px;
  line-height: 1.7;
  color: #e0e0e0;
  margin-bottom: 10px;
}

/* --- Footer Links --- */
.footer_items {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  text-align: center;
}

.footer_linl {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-bottom: 20px;
  padding: 0;
}

.footer_linl li {
  list-style: none;
}

.footer_linl a {
  color: #a0c8ff;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer_linl a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* --- Disclaimer --- */
#footer_box .disclaimer {
  max-width: 900px;
  margin: 15px auto;
  font-size: 13px;
  line-height: 1.6;
  color: #cccccc;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 15px 20px;
}

/* --- Copyright --- */
#footer_box p:last-child {
  font-size: 14px;
  color: #bbbbbb;
  margin-top: 10px;
}

/* --- Decorative gradient overlay --- */
#footer_box::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 140%;
  height: 200px;
  background: radial-gradient(circle at center, rgba(255,255,255,0.1), transparent 70%);
  pointer-events: none;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  #footer_box .flex_box {
    flex-direction: column;
    text-align: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  #footer_box h3 {
    margin-top: 10px;
  }

  .footer_linl {
    flex-direction: column;
    gap: 10px;
  }

  #footer_box .disclaimer {
    font-size: 12px;
  }
}

@media screen and (max-width: 767px) {
    h1{
        font-size: 29px;
    }
    .grid_bl{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .grid_img{
        order: 1;
    }
    .flex_box{
        display: flex;
        flex-direction: column-reverse;
        gap: 20px;
        align-items: start;
    }
    .list_wrap{
        flex-direction: column;
    }
    .list_wrap li{
        width: 100%;
    }
    .main_container>div{
        padding: 50px 0;
    }
    .header_nav{
        flex-direction: column;
        gap: 10px;
    }
    header{
        box-shadow: 0 1px 5px #000;
        padding-bottom: 10px;
    }
    .course-section{
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
}
@media screen and (max-width: 500px) {
  .list_main{
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .list_main li{
    width: 100%;
    max-width: 100%;
  }
}