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.5;
    font-family: "IBM Plex Sans", sans-serif;
}
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%;
}
#cookieNotice.display-right {
    right: 20px;
    bottom: 20px;
    max-width: 500px;
    width: 90%;
}

#cookieNotice {
    background-color: #1a1a1a; 
    color: #fff;
    box-shadow: 0 2px 5px #fff;
}

#cookieNotice {
    box-sizing: border-box;
    position: fixed;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 6px 6px rgb(0 0 0 / 25%);
    font-family: inherit;
    z-index: 999997; 
    overflow: hidden;
    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;
    }
}
 

#cookieNotice h4 {
    font-family: inherit;
    font-weight: 700;
    font-size: 18px;
}

#cookieNotice.light p,
#cookieNotice.light ul {
    color: #393d4d;
    color: #bfb9b9;
    line-height: 1.3;
}

#cookieNotice p,
#cookieNotice ul {
    font-size: 14px;
    margin-bottom: 20px;
}

#cookieNotice .btn-wrap {
    display: flex;
    flex-direction: row;
    font-weight: 700;
    justify-content: center;
    margin: 0 -5px 0 -5px;
    flex-wrap: wrap;
}

#cookieNotice .btn-wrap button {
    flex-grow: 1;
    padding: 0 7px;
    margin: 0 5px 10px 5px;
    border-radius: 20px;
    cursor: pointer;
    white-space: nowrap;
    min-width: 130px;
    line-height: 36px;
    border: none;
    font-family: inherit;
    font-size: 16px;
    transition: box-shadow 0.3s;
}

#cookieNotice button {
    outline: 0;
    border: none;
    appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background: darkorange;
}

#cookieNotice .btn-wrap 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);
}
/* BURGER */

.nav-icon-5{
    width: 30px;
    height: 25px; 
    position: relative;
    cursor: pointer;
    display: none;
  }
  .nav-icon-5 span{
   background: linear-gradient(157deg,rgba(0, 6, 18, 0.68) 0%, rgba(2, 84, 83, 0.57) 30%, rgba(1, 39, 18, 1) 67%, rgba(0, 0, 0, 0.68) 100%);
    position: absolute;
    border-radius: 2px;
    transition: .3s cubic-bezier(.8, .5, .2, 1.4);
    width:100%;
    height: 4px;
    transition-duration: 500ms
  }
  .nav-icon-5 span:nth-child(1){
    top:0px;
    left: 0px;
  }
  .nav-icon-5 span:nth-child(2){
    top:10px;
    left: 0px;
    opacity:1;
  }
  .nav-icon-5 span:nth-child(3){
    bottom:0px;
    left: 0px;
  }
  .nav-icon-5:not(.open):hover span:nth-child(1){
    transform: rotate(-3deg) scaleY(1.1);
  }
  .nav-icon-5:not(.open):hover span:nth-child(2){
    transform: rotate(3deg) scaleY(1.1);
  }
  .nav-icon-5:not(.open):hover span:nth-child(3){
    transform: rotate(-4deg) scaleY(1.1);
  }
  .nav-icon-5.open span:nth-child(1){
    transform: rotate(45deg);
    top: 13px;
  }
  .nav-icon-5.open span:nth-child(2){
    opacity:0;
  }
  .nav-icon-5.open span:nth-child(3){
    transform: rotate(-45deg);
    top: 13px;
  }


  .logo{
    max-width: 170px;
    display: block;
}
.header_icons ul{
    display: flex;
    gap: 30px;
}
.header_icons a{
    color: #02443b;
    text-transform: uppercase;
    font-weight: 600;
    transition: all .3s linear;
}
.header_icons a:hover{
    color: #e87c00;
}
.header_nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}
header{
    position: relative;
}
@media screen and (max-width: 992px) {
    .nav-icon-5{
        display: inline-block;
        z-index: 200;
    }
    .header_icons ul{
        flex-direction: column;
        padding:100px 30px 40px;
    }
    .header_icons{
        position: absolute;
        top: 0;
        right: 0;
        background: #ccc; 
        max-width: 0px;
        box-sizing: border-box;
        z-index: 150;
        overflow: hidden;
        transition: all .4s linear;
    }
    
    .top_head{
      padding: 60px 0;
    }
    .header_icons.show{
        max-width: 400px;
        width: 100%;
    }
    #cookieNotice.light{
        box-sizing: border-box;
        right: 10px;
        bottom: 10px;
        width: 95%;
    }
}

 




/* FOOTER */
.footer_linl{
    display: flex;
    gap: 50px;
    justify-content: center;
    padding: 30px 0;
}
.footer_linl a{
    transition: all .3s linear;
    color: #414141;
}
.footer_bot p{
    font-size: 13px;
    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_bot 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;
}
.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;
}
.wrapper_doc h2{
    font-size: 26px;
    text-align: center;
    margin: 0 0 30px;
}

 /* Основной стиль для навигации */
body {
 
    margin: 0;
    padding: 0;
    background-color: #f1faf3;
    color: #202020;
  }
  .content p{
    color: #fff;
  }
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  }
  .grig_img img{
    width: 100%;
    height: 100%;
    max-width: 1000px;
    max-height: 10000px;
    object-fit: cover;
    object-position: center;
  }
  .navbar ul {
    display: flex;
    justify-content: center;
    list-style: none;
  }
  
  .navbar ul li {
    margin: 0 20px;
  }
  
  .navbar ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 1.4em;
    transition: color 0.3s, transform 0.3s;
  }
  
  .navbar ul li a:hover {
    color: #ff9900;
    transform: scale(1.1);
  }
  
  
 h1 {
    font-size: 3.5em;
    font-family: "Savate", sans-serif;
  }
  
  header p {
    font-size: 1.4em;
    margin-top: 20px;
  }
  header{
    padding: 10px 0;
  }
  .cta-btn {
    padding: 15px 40px;
    box-sizing: border-box;
    font-size: 1.2em;
    background-color: #ff9900;
    border: none;
    cursor: pointer;
    margin-top: 30px;
    transition: background-color 0.3s, transform 0.3s;
  }
  .top_head{
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .top_head::before{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    opacity: .9;
    left: 0px;
    z-index: -1;
    background: url(./w_img/top.jpg) center  / cover no-repeat;
    background-position: center ;
  }
  .cta-btn:hover {
    background-color: #e68a00;
    transform: scale(1.05);
  }
  #ueber-uns{
    background: #fff;
  }
  .section {
    padding: 80px 20px;
  }
  
  .section h2 { 
    font-size: 2.5em;
    margin-bottom: 20px;
    font-family: "Savate", sans-serif;
    font-weight: 700;
    color: #047917;
  }
  
  .section p { 
    font-size: 1.2em;
  }
  #vorteile {
    padding: 100px 0;
    background-color: #f8f9fa;
    font-family: 'Segoe UI', sans-serif;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2d2d2d;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 60px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.advantage-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(157deg,rgba(0, 6, 18, 0.68) 0%, rgba(2, 84, 83, 0.57) 30%, rgba(1, 39, 18, 1) 67%, rgba(0, 0, 0, 0.68) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
    transition: background-color 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    background-color: #0056b3;
}

.advantage-card h3 {
    font-size: 1.3rem;
    color: #2d2d2d;
    margin-bottom: 15px;
}

.advantage-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

.call-to-action {
    text-align: center;
    margin-top: 60px;
}

.call-to-action p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 20px;
}

.cta-button {
    background-color: #007BFF;
    color: white;
    padding: 15px 30px;
    font-size: 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.cta-button:hover {
    background-color: #0056b3;
}
 
   
  .step h3 {
    margin-top: 20px;
    font-size: 1.6em;
    color: #0056b3 !important;
    font-weight: 800;
  }
  #meilensteine{
    background: #e8f8eb;
  }
  .step p {
    margin-top: 10px;
    font-size: 1.2em;
  }
  #meilensteine .block_sec{
    grid-template-columns: 1.5fr 1fr;
    margin-top: 30px;
  }
  .step-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }
  
  /* Стиль для цены */
  .pricing-container {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
  }
  
  .pricing-option {
    width: 30%;
    background-color: #222;
    padding: 30px;
    text-align: center;
    box-sizing: border-box;
    border-radius: 10px;
  }
  
  .pricing-option h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
  }
  
  .pricing-option p {
    font-size: 1.2em;
  }
  
  /* Формы */
  form {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  form input, form button {
    padding: 15px; 
    box-sizing: border-box;
    font-size: 1.2em;
  }
  .form-submit{
    max-width: 400px ;
    width: 100% ;
  }
  form button {
    background-color: #ff9900;
    color: #fff;
    border: none;
    border-radius: 15px !important;
    cursor: pointer;
    width: 100% !important;
    display: block;
    max-width: 400px !important;
  }
  
  form button:hover {
    background-color: #e68a00;
  }
  
  footer {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
  }
  
  footer ul {
    list-style: none;
    padding: 0;
  }
  
  footer ul li {
    display: inline-block;
    margin: 0 15px;
  }
  
  footer ul li a {
    color: white;
    text-decoration: none;
  }
  
  footer ul li a:hover {
    color: #ff9900;
  }
 
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .top_head{
   background: linear-gradient(157deg,rgba(0, 6, 18, 0.68) 0%, rgba(2, 84, 83, 0.57) 30%, rgba(1, 39, 18, 0.694) 67%, rgba(0, 0, 0, 0.68) 100%);
  }
  .content {
    max-width: 800px; 
    margin: 0 auto;
    text-align: center;
  }
  
  .main-title {
    font-size: 4.5em;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ffbf00;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  .subtitle {
    font-size: 1.6em;
    margin-bottom: 30px;
    font-style: italic;
    opacity: 0.9;
  }
  
  .cta-wrapper {
    margin-top: 30px;
  }
  
  .cta-text {
    font-size: 1.2em;
    margin-bottom: 20px;
    font-weight: bold;
    opacity: 0.85;
  }
  
  .cta-btn {
    padding: 15px 40px;
    background-color: #fff;
    color: #ff5500;
    font-size: 1.3em;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  
  .cta-btn:hover {
    background-color: #ff5500;
    color: #fff;
    transform: scale(1.1);
  }
  .block_sec{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  /* Основной стиль секции */
#course-steps {
    background-color: #1a1a1a;
    color: white;
    padding: 80px 20px;
  }
  .steps-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.step {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.step-icon {
    width: 60px;
    height: 60px;
background: linear-gradient(157deg,rgba(0, 6, 18, 0.68) 0%, rgba(2, 84, 83, 0.57) 30%, rgba(1, 39, 18, 1) 67%, rgba(0, 0, 0, 0.68) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
    transition: background-color 0.3s ease;
}

.step:hover .step-icon {
    background-color: #0056b3;
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #2d2d2d;
}

.step p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

/* Дополнительный декор (необязательно) */
.step::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 5px;
    background: linear-gradient(to right, #007BFF, #00c6ff);
    border-radius: 3px;
    opacity: 0.8;
    transition: width 0.3s ease;
}

.step:hover::before {
    width: 100px;
}
  #course-steps h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: center;
    color: #ff9900;
  }
  
  #course-steps p {
    font-size: 1.2em;
    margin-bottom: 40px;
    text-align: center;
    opacity: 0.85;
  }
  
   
  .step {
    background: linear-gradient(157deg,rgba(0, 6, 18, 0.254) 0%, rgba(2, 84, 83, 0.184) 30%, rgba(1, 39, 18, 0.137) 67%, rgba(0, 0, 0, 0.248) 100%);
    padding: 20px; 
    text-align: center;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: white;
  }
  
  .step:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(255, 153, 0, 0.3);
  }
  
  /* Иконки */
  .icon {
    font-size: 3em;
    background-color: #ff9900;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    color: white;
  }
  
  .step h3 {
    font-size: 1.6em;
    margin-top: 20px;
    margin-bottom: 15px;
    color: #ff9900;
  }
  
  .step p {
    font-size: 1.2em;
    opacity: 0.9;
  }
  
  /* Стили для иконок (используется FontAwesome) */
  .fas {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
  }
#pricing {
  background: linear-gradient(135deg, #2f2f2f, #1e1e1e);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

#pricing h2 {
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #ff8c00;
}

#pricing p {
  font-size: 1.1em;
  margin-bottom: 40px;
  color: #dcdcdc;
}

.pricing-container {
  display: flex;
  justify-content: space-around; 
  gap: 20px;
}

.pricing-option {
  background: #333;
  border-radius: 10px;
  padding: 30px;
  width: 250px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-option:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

.pricing-header {
  margin-bottom: 20px;
}

.pricing-header h3 {
  font-size: 1.8em;
  font-weight: bold;
  color: #ff8c00;
  margin-bottom: 10px;
}

.pricing-price .price-amount {
  font-size: 2.5em;
  font-weight: bold;
  color: #ff8c00;
}

.pricing-option p {
  font-size: 1.2em;
  color: #ddd;
  margin-bottom: 20px;
}

.cta-btn {
  background: #ff8c00;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 1.1em;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-btn:hover {
  background-color: #ff6a00;
  transform: scale(1.05);
}

.featured {
  background: #333;
  border: 2px solid #ff8c00;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  transform: scale(1.05);
}

.featured .cta-btn {
  background-color: #ff8c00;
}

.featured .cta-btn:hover {
  background-color: #ff6a00;
}
#pricing {
    background: linear-gradient(135deg, #0f0f0f, #2c2c2c);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  #pricing h2 {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffba00;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  #pricing p {
    font-size: 1.1em;
    margin-bottom: 40px;
    color: #d0d0d0;
  }
  
  .pricing-container {
    display: flex;
    justify-content: space-between;
    gap: 20px; 
    position: relative;
  }
  
  .pricing-option {
    background: #333;
    border-radius: 15px;
    padding: 40px;
    width: 100%;
    max-width: 360px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
    position: relative;
    z-index: 1;
  }
  .politic, #terms, #privacy-policy{
    background: #fff;
  }
  .pricing-option:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
    background-color: #333333;
  }
  
  .pricing-header {
    margin-bottom: 30px;
  }
  #pricing{
    position: relative;
    background: #121212c9;
  }
  #pricing::before{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
    background: url(./w_img/ggg.jpg) center  / cover no-repeat;
    background-position: center ;
  }
  .pricing-header h3 {
    font-size: 2em;
    font-weight: 700;
    color: #ffba00;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  
  .pricing-price {
    font-size: 3em;
    font-weight: 700;
    color: #ffba00;
  }
  
  .pricing-option p {
    font-size: 1.2em;
    color: #b0b0b0;
    margin-bottom: 25px;
    line-height: 1.5;
  }
  
 .cta-btn {
    background: linear-gradient(135deg, #ffba00, #ffda47);
    color: #222;
    border: none;
    padding: 14px 28px;
    font-size: 1.1em;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0 6px 20px rgba(255, 186, 0, 0.3);
    transition: all 0.3s ease, transform 0.2s ease;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transform: skewX(-20deg);
    transition: left 0.5s ease;
}

.cta-btn:hover::before {
    left: 120%;
}

.cta-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 24px rgba(255, 186, 0, 0.5);
}

.cta-btn:active {
    transform: scale(0.96);
    box-shadow: 0 4px 12px rgba(255, 186, 0, 0.4);
}

  
  .featured {
    background: radial-gradient(circle, rgba(255, 186, 0, 0.1), rgba(255, 186, 0, 0.3));
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
    transform: translateY(-15px);
  }
  #pricing{
    position: relative;
  }
  
  .featured .cta-btn {
    background-color: #ff9500;
  }
  
  .featured .cta-btn:hover {
    background-color: #e87c00;
  }
 
  @media screen and (max-width: 768px) {
    .pricing-container {
      flex-direction: column;
      align-items: center;
    }
  
    .pricing-option {
      width: 80%;
      max-width: 400px;
      margin-bottom: 20px;
    }
  }
  #teneimonials {
   
    padding: 60px 20px;
    text-align: center;
  }
  
  #teneimonials h2 {
    font-size: 2.5em;
    font-weight: 700;
    color: #ffba00;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
  }
  
  .teneimonial-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
  }
  
  .teneimonial {
    background: #1c1c1c;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 600px;
    position: relative;
    z-index: 1;
    position: sticky;
    top: 100px;
  }
  
  .teneimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.3);
  }
  
  .teneimonial-header {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .teneimonial-img {
    width: 50px;
    min-width: 50px;
    height: 50px;
    min-height: 50px;
    border-radius: 10% !important;
    object-fit: cover;
    border: 2px solid #ffba00;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
 
  }
  
  .teneimonial p {
    font-size: 1.3em;
    font-style: italic;
    line-height: 1.6;
    color: #b0b0b0;
    margin-top: 15px;
  }
  
  .teneimonial strong {
    color: #ffba00;
    font-weight: bold;
  }
  
  .teneimonial:before {
    content: "“";
    font-size: 6em;
    color: #ffba00;
    position: absolute;
    top: -20px;
    left: -20px;
    z-index: 0;
  }
  
  .teneimonial:after {
    content: "”";
    font-size: 6em;
    color: #ffba00;
    position: absolute;
    bottom: -60px;
    right: -20px;
    z-index: 0;
  }
  
  @media screen and (max-width: 768px) {
    .teneimonial-container {
      padding: 0 15px;
    }
  
    .teneimonial p {
      font-size: 1.2em;
    }
  
    .teneimonial-img {
      width: 50px;
      height: 50px;
    }
  }
  #faq {
    background-color: #f8f8f8;
    padding: 60px 20px;
    text-align: center;
  }
  
  #faq h2 {
    font-size: 2.5em;
    font-weight: 700;
    color: #2c3e50;
    text-transform: uppercase;
    margin-bottom: 30px;
  }
  
  .faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .faq-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    overflow: hidden;
 
    transition: all 0.3s ease;
  }
  
  .faq-item:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  }
  
  .faq-question {
 
    color: #2c3e50;
    font-size: 1.5em;
    text-align: left;
       padding: 15px !important;
    width: 100%;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .faq-question:hover {
    color: #fff;
        background: linear-gradient(157deg,rgba(0, 6, 18, 0.68) 0%, rgba(2, 84, 83, 0.57) 30%, rgba(1, 39, 18, 1) 67%, rgba(0, 0, 0, 0.68) 100%);
  }
  
  .faq-answer {
    display: none;
    padding: 20px;
    text-align: left;
    font-size: 1.2em;
    color: #555;
    background-color: #ecf0f1;
  }
  
  .faq-answer p {
    line-height: 1.6;
  }
  
  .faq-item.active .faq-answer {
    display: block;
    opacity: 1;
    font-size: 12px;
  }
  
  .faq-item.active .faq-question {
    background-color: #34495e;
    color: #fff;
  }
  
  .faq-item img {
    max-width: 100%;
    border-radius: 8px;
    margin-top: 20px;
  }
  
  @media screen and (max-width: 768px) {
    .faq-question {
      font-size: 1.2em;
    }
  
    .faq-answer p {
      font-size: 1.1em;
    }
  }
  /* Общие стили для секции */
#registration {
    /* background-color: #2a2a2a; */
    padding: 50px 0;
    color: #fff;
    position: relative;
  }
  #registration::before{
    
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: .3;
    z-index: -1;
    background: url(./w_img/fff.jpg) center  / cover no-repeat;
    background-position: center top;
  }
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .section-description {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 30px;
    color: #bbb;
  }
   
  .registration-form {
    max-width: 600px;
    box-sizing: border-box;
    margin: 0 auto;
    background: linear-gradient(157deg,rgba(0, 6, 18, 0.68) 0%, rgba(2, 84, 83, 0.57) 30%, rgba(1, 39, 18, 1) 67%, rgba(0, 0, 0, 0.68) 100%);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }
 
#faq {
    padding: 80px 0;
    background-color: #f9f9f9;
    font-family: 'Segoe UI', sans-serif;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2d2d2d;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 50px;
}

.faq-layout {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.faq-accordion {
    flex: 1;
    max-width: 700px;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
 
    transition: background-color 0.3s ease;
    margin: 0 0 10px;
}
.faq-item.active .faq-answer{
  max-height: 500px;
}
.faq-item:hover {
    background-color: #fbfbfb;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: bold;
    color: #2d2d2d;
    cursor: pointer;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question i {
    color: #999;
    transition: transform 0.3s ease;
}

.faq-question:focus {
    outline: none;
    color: #007BFF;
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
    max-height: 0;
    opacity: 0;
}

.faq-answer p {
    margin-top: 10px;
    color: #555;
    line-height: 1.6;
}
 
.faq-image {
    flex: 1;
    min-width: 280px;
    display: flex;
    align-items: center;
}

.faq-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
  .form-group {
    margin-bottom: 10px;
  }
  .form-group{
    max-width: 400px;
    width: 100%;
  }
  
  .form-group input,
  .form-group textarea {
 
    padding: 15px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 20px;
    width: 100%;
    display: block; 
    font-size: 1rem;
  }
  
  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: #aaa;
  }
  
  .form-group textarea {
    height: 100px;
    resize: none;
  }
  
  /* Стили для кнопки */
  .form-submit button {
    background-color: #ff6600;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .form-submit button:hover {
    background-color: #ff4500;
  }
  
  /* Стили для disclaimers */
  .form-disclaimer {
    color: #bbb;
    font-size: 0.9rem;
    text-align: center;
    margin-top: 20px;
  }
  
  .form-disclaimer a {
    color: #ff6600;
  }
  
  .form-disclaimer a:hover {
    text-decoration: underline;
  }
  
  /* Анимации и эффекты */
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  #registration {
    animation: fadeIn 1s ease-out;
  }
  footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 40px 0; 
  }
  .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  footer p {
    font-size: 1rem;
    color: #bbb;
  }
  footer-text {
    text-align: center;
    font-size: 1rem;
    color: #bbb;
    margin-top: 20px;
  }
 #pricing .price{
  color: #02443b;
 }

.section-title {
    font-size: 2.5rem;
    color: #2d2d2d;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 60px;
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.pricing-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    padding: 30px 25px;
    width: 300px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffc107;
    color: #2d2d2d;
    padding: 5px 20px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 0.9rem;
    z-index: 1;
}

.pricing-header h3 {
    font-size: 1.5rem;
    color: #2d2d2d;
    margin-bottom: 10px;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: #007BFF;
    margin-bottom: 20px;
}

.features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    text-align: left;
}

.features li {
    margin-bottom: 10px;
    color: #555;
}

.pricing-btn {
  background: linear-gradient(157deg,rgba(0, 6, 18, 0.68) 0%, rgba(2, 84, 83, 0.57) 30%, rgba(1, 39, 18, 1) 67%, rgba(0, 0, 0, 0.68) 100%);
    color: white;
    padding: 12px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
    background: linear-gradient(157deg,rgba(0, 6, 18, 0.68) 0%, rgba(2, 84, 83, 0.57) 30%, rgba(1, 39, 18, 1) 67%, rgba(0, 0, 0, 0.68) 100%);
    margin: 5% auto;
    padding: 30px 25px;
    border-radius: 12px;
    width: 90%;
    box-sizing: border-box;
    max-width: 400px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.3s ease-in-out;
    position: relative;
}

.modal-close {
    color: #ffffff;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 20px;
}

.modal-close:hover,
.modal-close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.modal-content h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ffffff;
    text-align: center;
    font-weight: 800;
}

.modal-content label {
    display: block;
    margin-top: 15px;
    font-weight: 500;
    color: #fdf1f1;
}

.modal-content input[type="text"],
.modal-content input[type="email"],
.modal-content input[type="tel"] {
    width: 100%;
    padding: 12px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

.modal-content button.cta-btn {
    margin-top: 25px;
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.modal-content label{
  text-align: left !important;
  display: block;
}
.modal-content button.cta-btn:hover {
    background-color: #0056b3;
}
 
@keyframes fadeIn {
    from {opacity: 0; transform: translateY(-20px);}
    to {opacity: 1; transform: translateY(0);}
}
.pricing-btn:hover {
    background-color: #0056b3;
} 
#teneimonials {
    padding: 80px 0;
    background-color: #f9f9f9;
    font-family: 'Segoe UI', sans-serif;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: #2d2d2d;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 50px;
}

 

.teneimonial-slider {
    width: 100%;
    max-width: 700px;
}
.teneimonial-card:last-child{
  margin-bottom: 0;
}
.teneimonial-card {
  background: linear-gradient(157deg,rgba(0, 6, 18, 0.68) 0%, rgba(2, 84, 83, 0.57) 30%, rgba(1, 39, 18, 1) 67%, rgba(0, 0, 0, 0.68) 100%);
    border-radius: 12px;
    padding: 25px;
    color: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.teneimonial-card:hover {
    transform: translateY(-5px);
}

.teneimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.teneimonial-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.teneimonial-author {
    display: flex;
    flex-direction: column;
}

.teneimonial-stars {
    color: gold;
    font-size: 0.9rem;
}

.teneimonial-text {
    font-style: italic;
    color: #fffbfb;
    line-height: 1.6;
    margin: 0;
}
 
.teneimonial-image {
    max-width: 350px;
    width: 100%;
    display: flex;
    align-items: center;
}

.teneimonial-side-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.pricing-card.basic .price { color: #28a745; }
.pricing-card.premium .price { color: #ffc107; }
.pricing-card.enterprise .price { color: #dc3545; }

.featured {
    border: 2px solid #007BFF;
} 
#kontakt {
    padding: 100px 0;
    background-color: #eaf7e8;
    font-family: 'Segoe UI', sans-serif;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2d2d2d;
    margin-bottom: 15px;
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 50px;
}

.contact-layout {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.contact-form:hover {
    transform: translateY(-5px);
}

.registration-form .form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 20px;
    transition: border-color 0.3s ease;
}

.registration-form .form-group input:focus {
    border-color: #007BFF;
    outline: none;
}

.form-submit .cta-btn {
    width: 100%;
    background-color: #007BFF;
    color: white;
    padding: 12px;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-submit .cta-btn:hover {
    background-color: #0056b3;
}

.form-disclaimer {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #888;
}

.form-disclaimer a {
    color: #007BFF;
    text-decoration: underline;
}
 
.contact-info {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s ease;
}

.contact-info:hover {
    transform: translateY(-5px);
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #2d2d2d;
}

.contact-info p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.5;
}

.contact-info a {
    color: #007BFF;
}

.contact-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 32px;
    color: #007BFF;
    opacity: 0.2;
}
 #footer {
    background-color: #1e1e1e;
    color: #ccc;
    padding: 60px 20px 40px;
    font-family: 'Segoe UI', sans-serif;
}
 

.footer-about,
.footer-links,
.footer-contact,
.footer-policy,
.info-block {
    margin-bottom: 40px;
}

.footer-about h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-about p {
    color: #aaa;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-links h4,
.footer-contact h4,
.footer-policy h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer-links ul,
.footer-contact ul,
.footer-policy ul {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-contact li,
.footer-policy li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-contact a,
.footer-policy a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-policy a:hover {
    color: #007BFF;
}

.footer-contact i {
    margin-right: 10px;
    color: #007BFF;
}
 
.info-block {
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    padding: 20px 0;
    margin-bottom: 30px;
}

.info-block h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.info-block p {
    color: #aaa;
    line-height: 1.6;
    font-size: 0.95rem;
}
.grid_f{
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-align: left;
  gap: 30px;
}
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e1e1e;
    color: #fff;
    padding: 15px 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    font-family: 'Segoe UI', sans-serif;
    animation: slideUp 0.5s ease-out;
}

.cookie-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-icon {
    color: #007BFF;
    font-size: 24px;
    display: flex;
    align-items: center;
}

.cookie-icon svg {
    width: 24px;
    height: 24px;
}

.cookie-text {
    flex: 1;
    min-width: 200px;
    font-size: 0.95rem;
}

.cookie-text a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.cookie-actions {
    display: flex;
    align-items: center;
}

.btn-cookie {
    background-color: #e79a27;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-cookie:hover {
    background-color: #d68a1c;
}

 
@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.footer-bottom {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    border-top: 1px solid #333;
    padding-top: 20px;
}
@media (max-width: 768px) {
    .contact-layout {
        flex-direction: column;
        align-items: center;
    }

    .contact-info {
        order: -1;
    }
}
  @keyframes fadeInFooter {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  footer {
    animation: fadeInFooter 1s ease-out;
  }
  @media screen and (max-width: 1140px) {
    .steps-container{
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .step{
        width: 100%;
        max-width: 400px;
        box-sizing: border-box;
        margin: 0 auto;
    }
  }
  @media screen and (max-width: 992px) {
    .pricing-option{
        padding: 30px 20px ;
        box-sizing: border-box;
    }
    .pricing-option{
        width: 40%;
    }
  }
  @media screen and (max-width: 768px) {
    .pricing-option{
        width: 100%;
    }
    .block_sec{
        display: flex;
        flex-direction: column;
    }
    .steps-container{
        display: flex;
        flex-direction: column;
    }
    .featured{
      transform: none;
    }
    h1{
        font-size: 1.9rem !important;
    }
    .pricing-container{
      position: relative;
    }
    .top_head::before{
        background-position: top right;
    }
    .faq-image{
      display: none;
    }
    .pricing-container>div{
      position: sticky;
      top: 100px;
      height: max-content;
      box-sizing: border-box;
    }
    h2{
        font-size: 1.8rem !important;
    }
    .contact-info{
      padding: 30px 16px;
      box-sizing: border-box;
      width: 100%;
    }
    .contact-form{
      box-sizing: border-box;
      padding: 20px;
    }
    .registration-form{
      padding: 30px 20px;
    }
    .advantages-grid{
      gap: 20px;
    }
    .section{
        padding: 60px 0;
    }
    .grid_f{
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    .teneimonial-header{
        display: block;
    }
    .teneimonial-img{
        float: left;
        min-width: 50px;
        margin-right: 10px;
    }
    .faq-container{
        padding: 0;
    }
     .main-title {
    font-size: 34px !important;
     }
     #pricing{
      padding-left: 0;
      padding-right: 0;
    }
      .logo{
        width: 120px;
      }
    .grig_img{
      order: 1;
    }
    #faq{
        padding: 60px 0;
    }
    .footer-content{
        flex-direction: column-reverse;
    }
  }