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: "Roboto Slab", 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: 30px;
    bottom: 30px;
    max-width: 395px;
}
 

#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;
    bottom: 15px;
    opacity: 0;
    transition: all .3s linear;
    animation: open 3s linear forwards;
    background-color: #323232; 
    color: #fff;
    box-shadow: 0 2px 5px #c0bfbf;
}
@keyframes open {
    0%{ 
        overflow: hidden;
        opacity: 0;
    }
    70%{ 
        overflow: hidden;
        opacity: 0;
    }
    100%{ 
        overflow: hidden;
        opacity: 1;
    }
}

#cookieNotice #closeIcon {
    width: 20px;
    height: 20px;
    cursor: pointer;
    color: #bfb9b9;
    overflow: hidden;
    opacity: 0.85;
    z-index: 999999;
    position: absolute;
    top: 0;
    right: 0;
    background: url(./w_img/icon.png) 0 0 / 20px 20px no-repeat;
}
 

#cookieNotice .title-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    background: url(./w_img/icon.png) 0 0 / 40px 40px no-repeat;
    padding-left: 45px;
    height: 40px;
}

#cookieNotice .title-wrap svg {
    margin-right: 10px;
}

#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;
    color: #ddd;
    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-color:#414141;
    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;
  }
#hero{
    position: relative;
  background: linear-gradient(157deg,rgba(2, 18, 0, 0.68) 0%, rgba(2, 84, 39, 0.57) 30%, rgba(0, 0, 0, 0.99) 100%);
}
section{
    padding: 80px 0;
}
h1{
    font-size: 40px;
    color: rgb(255, 255, 255);
    font-weight: 600;
    margin: 0 0 40px;
    text-shadow: 0 1px 10px #000;
}
.main_content{
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
p{
    margin: 0 0 20px;
}
.main_content>p{
    padding: 20px;
    background: #ffffff62;
    font-weight: 600;
    margin: 0 auto 30px;
    color: #fff;
    max-width: 700px;
    border: 1px dashed #ddd;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    font-style: italic;
}
.ram_container p{
    color: #ddd;
}
strong, b{
    font-weight: 600;
}
.ram_container {
    color: #fff;
    font-size: 18px;
    text-shadow: 0 1px 1px #000;
    max-width: 500px;
    margin: 0 auto;
}
.ram_container strong{
    color: rgb(250, 142, 1);
    display: block;
    font-size: 20px;
    text-align: center;
}
#hero::before{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: url(./w_img/fon.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}

  .logo{
    max-width: 140px;
    display: block;
}
.header_icons ul{
    display: flex;
    gap: 30px;
}
.header_icons a{
    color: #414141;
    font-weight: 600;
    transition: all .3s linear;
}
.header_icons a:hover{
    color: #df7c0c;
}
.header_nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}
header{
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0 1px 5px #666;
    padding: 12px 0;
    background: #f8f1f1;
}
.grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.img_g{
    width: 100%;
    height: 100%;
    max-height: 800px;
    overflow: hidden;
    transform: rotate(4deg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 1px 10px #393d4d;
    transition: all .4s linear;
}
.img_g:hover{
    transform: rotate(0);
}
p{
    line-height: 1.5;
}
#signup .img_g{
    max-height: 500px;
}
#signup .img_g img{
    object-position: center;
}
h2{
    font-size: 30px;
    font-weight: 600;
    display: inline-block; 
    font-style: italic; 
    text-transform: uppercase;
    position: relative;
    margin:  0 0 20px;
}
h2::before{
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    border-bottom: 2px dashed #020b1f;
    position: absolute;
    bottom: -3px;
}
.img_g img{
    max-width: 1000px;
    max-height: 1000px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.have{
    background: #000000c9;
    color: #ffffffca;
}
.list_i li{
    padding: 20px;
    border-radius: 10px;
    background: #fff;
    color: #000;
    width: 30%;
    text-align: center;
    box-sizing: border-box;
}
.list_i{
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 0 30px;
}
.module{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.module>li{
    padding: 20px;
    border-radius: 10px;
    background: #2e2e2e;
    color: #e7e7e7;
}
.module p{
    margin: 30px 0 0;
    color: #999;
}
.pac_item{
    display: grid;
    grid-template-columns: 110px auto 100px;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid #999;
}
.pac_item>p:first-child{
    font-weight: 700;
}
.pac_item:first-child{
    background: #bfb9b9;
}
#packages{
    background: #e7e7e7;
    box-sizing: border-box;
}
.pac_item p{
    margin: 0 ;
    padding: 15px; 
    border: 1px solid #999;
}
.module>li li{
    list-style: disc;
    margin: 0 0 15px 20px;
}
.module h3{
    color: #df7c0c;
}
.faq-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
  }
  
  .accordion {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .accordion-item {
    border-bottom: 1px solid #ddd;
  }
  
  .accordion-button {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    outline: none;
    transition: background 0.3s;
  }
  .benefits-mission-section {
    background-color: #f5f0e6; /* бежевый */
    padding: 80px 0;
}

.container {
    max-width: 1100px;
    margin: auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
#packages {
    position: relative;
    background: linear-gradient(157deg, rgba(2, 18, 0, 0.68) 0%, rgba(2, 84, 39, 0.57) 30%, rgba(0, 0, 0, 0.99) 100%);
    padding: 100px 20px;
    color: #333;
}
#packages::before{
        content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: url(./w_img/fon2.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}
.container {
    max-width: 1100px;
    margin: auto;
}
#packages h2{
    color: #fff; 
}
#packages h2::before{
    border-color: #ff9800;
}
#packages .intro-text{
  color: #fff; 
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.blog-card {
    background-color: #f9f9f9;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.4s ease;
}

.blog-content {
    padding: 25px;
    flex-grow: 1;
}

.category {
    display: inline-block;
    font-size: 0.75em;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    background: #2d6e5b;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

h3 {
    font-size: 1.3em;
    color: #222;
    margin-bottom: 15px;
    line-height: 1.4;
}

p {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 15px;
}

.read-more {
    display: inline-block;
    font-weight: 600;
    color: #2d6e5b;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.read-more:hover {
    color: #225c4a;
    transform: translateX(5px);
}

.read-more::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background-color: #2d6e5b;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.read-more:hover::after {
    transform: scaleX(1);
}

.article-text {
    display: none;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
    font-size: 0.92em;
    color: #444;
    line-height: 1.6;
    opacity: 0;
    animation: fadeIn 0.4s forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Акцент при наведении */
.blog-card:hover .blog-image {
    transform: scale(1.05);
}

.cta-box {
    background: #e8f5f0;
    border-left: 5px solid #2d6e5b;
    border-radius: 12px;
    padding: 30px;
    margin-top: 70px;
    text-align: center;
    font-style: italic;
    color: #444;
}

.newsletter-form {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 30px;
    width: 280px;
    max-width: 100%;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-form input[type="email"]:focus {
    border-color: #2d6e5b;
}

.btn-subscribe {
    background-color: #2d6e5b;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-subscribe:hover {
    background-color: #225c4a;
}
.intro-text {
    text-align: center;
    font-size: 1.1em;
    color: #666;
    margin-bottom: 70px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.package-card {
    background-color: #f9f9f9;
    border-radius: 16px;
    box-sizing: border-box;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.package-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2d6e5b;
    color: white;
    padding: 6px 16px;
    border-radius: 25px;
    font-size: 0.85em;
    font-weight: bold;
    text-transform: uppercase;
}

.package-badge.bestseller {
    background-color: #ff9800;
}

.package-card h3 {
    font-size: 1.4em;
    margin-top: 0;
    margin-bottom: 10px;
}

.price {
    font-size: 2em;
    color: #2d6e5b;
    margin: 20px 0;
    font-weight: bold;
}

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

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

.icon-green {
    color: #2d6e5b;
    margin-right: 6px;
}

.icon-red {
    color: #e53935;
    margin-right: 6px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-basic {
    background-color: #e0e0e0;
    color: #333;
}

.btn-basic:hover {
    background-color: #ccc;
}

.btn-standard {
    background-color: #2d6e5b;
    color: white;
}

.btn-standard:hover {
    background-color: #225c4a;
}

.btn-premium {
    background-color: #ff9800;
    color: white;
}

.btn-premium:hover {
    background-color: #f57c00;
}
.benefit-item {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item h4 {
    margin-top: 0;
    color: #222;
}

.icon-green {
    color: #2d6e5b; /* зеленый акцент */
    font-size: 24px;
    margin-bottom: 10px;
}

.mission-box {
    background-color: #e9f1ee;
    padding: 30px;
    border-left: 5px solid #2d6e5b;
    margin-top: 50px;
    border-radius: 8px;
}
  .accordion-button:hover {
    background-color: #eef3f7;
  }
  
  .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    background-color: #ffffff;
    padding: 0 15px;
  }
  .ava{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    float: left;
    margin: 0 20px 0 0;
  }
  #reviews li{
    text-align: left;
    padding: 20px;
    border-radius: 10px;
    background: #2e2e2e;
    color: #e7e7e7;

  }
  .ava img{
    max-width: 1000px;
    max-height: 1000px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .accordion-content p {
    margin: 15px 0;
    font-size: 16px;
  }
  
  .accordion-item.active .accordion-content {
    max-height: 300px; /* достаточное значение для текста */
    padding: 15px;
  }
h3{
    color: rgb(30, 90, 13);
    font-size: 22px;
    margin: 0 0 10px;
}
#aboutus{
    background: #2d6e5b;
    color: #f4a244;
}
#aboutus p{
    color: #fff;
}
@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: #fff; 
        max-width: 0px;
        z-index: 150;
        overflow: hidden;
        transition: all .4s linear;
    }
    .header_icons.show{
        max-width: 400px;
        width: 100%;
    }
    #cookieNotice.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;
}
 



 
.wrapper_doc p, .wrapper_doc li{
    font-size:16px;
    margin: 0 0 20px;
    font-weight: 300;
    line-height: 1.4;
}
.politic h1, .wrapper_doc h1{
    color:#225c4a;
    text-shadow: none;
}
.politic h2, .wrapper_doc h2{
    text-transform: none;
    font-size: 22px !important;
}
.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;
}
 #footer {
  background-color: #f5f0e6; /* бежевый фон */
  color: #333;
  padding: 60px 20px;
  font-family: 'Roboto', sans-serif;
}

.container {
  max-width: 1170px;
  margin: auto;
  padding: 0 15px;
}

.footer_contain h3 {
  font-size: 1.8em;
  margin-bottom: 20px;
  color: #2d6e5b;
}

.footer-description {
  margin-bottom: 30px;
  font-size: 14px;
  font-style: italic;
  opacity: .7;
  max-width: 800px;
}

/* === Инфо-блоки в футере === */
.footer-info {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.info-block {
  flex: 1 1 250px;
  min-width: 250px;
}

.info-block h4 {
  font-size: 1em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #2d6e5b;
}

.info-block p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.8;
}

.info-block a {
  color: #2d6e5b;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.info-block a:hover {
  color: #225c4a;
}
 
.footer_bot {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.footer_linl {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.footer_linl li a {
  font-size: 14px;
  color: #555;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer_linl li a:hover {
  color: #2d6e5b;
}

.copyright {
  font-size: 13px;
  color: #666;
  margin-top: 10px;
  order: -1;
  width: 100%;
  text-align: center;
}
.footer-description{
    margin-bottom: 30px !important;
}
@media (max-width: 768px) {
  .footer_info {
    flex-direction: column;
  }

  .footer_linl {
    justify-content: center;
    margin-top: 20px;
  }

  .copyright {
    text-align: center;
  }
}
  .form_box{
    max-width: 340px;
    padding: 20px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
  } 
  .form_box input,  .form_box textarea{
    padding: 16px;
    width: 100%;
    display: block;
    box-sizing: border-box;
    border: none;
    outline: 1px solid #999;
    border-radius: 10px;
    margin: 0 0 10px;
  }
   
  .form_box input:focus, .form_box input:active{
    outline-color: aqua;
  }
  .btn{
    display: block;
    width: 100%;
    padding: 12px;
    box-sizing: border-box;
    font-size: 20px;
    cursor: pointer;
    display: block;
    width: 100%;
    box-sizing: border-box;
    background: #df7c0c;
    border: none;
    border-radius: 10px;
  }
  #signup{
    text-align: center;
  }
  #footer{
    background: #020b1f;
    color: #bfb9b9;
    padding: 40px 0 20px;
  }
  #footer a{
    color: #ddd;
    font-size: 14px;
    transition: all .3s linear;
  }
  #footer a:hover{
    color: #df7c0c;
  }
  html{
    scroll-behavior: smooth;
  }
  #course-modules {
    background-color: white;
    padding: 100px 0;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.intro-text {
    text-align: center;
    font-size: 1.1em;
    color: #666;
    margin-bottom: 70px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Грид модулей */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Карточка модуля */
.module-card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}
.custom-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
    border-top: 4px solid #2d6e5b;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.1);
    padding: 20px 30px;
    max-width: 500px;
    width: 90%;
    z-index: 9999;
    font-family: 'Roboto', sans-serif;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.custom-cookie-banner.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.cookie-content h3 {
    margin-top: 0;
    color: #2d6e5b;
    font-size: 1.2em;
}

.cookie-content p {
    font-size: 14px;
    color: #555;
    margin: 10px 0;
}

.cookie-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.link-details {
    font-size: 13px;
    color: #2d6e5b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.link-details:hover {
    color: #225c4a;
}

.btn-accept {
    background-color: #2d6e5b;
    color: white;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-accept:hover {
    background-color: #225c4a;
}
.module-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2d6e5b, #4caf84);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
    transition: background 0.3s ease;
}

.module-card:hover .icon-wrapper {
    background: linear-gradient(135deg, #4caf84, #2d6e5b);
}

.module-card h3 {
    font-size: 1.3em;
    margin-bottom: 20px;
    color: #222;
}

.module-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.module-card li {
    padding-left: 10px;
    margin-bottom: 10px;
    position: relative;
}

.module-card li::before {
    content: "✔";
    color: #2d6e5b;
    margin-right: 8px;
    font-weight: bold;
}

/* Финальный блок */
.summary-box {
    background: #f0f8f5;
    border-left: 5px solid #2d6e5b;
    padding: 30px;
    margin-top: 70px;
    border-radius: 10px;
    font-style: italic;
    color: #555;
}
  .footer_linl{
    display: flex;
    gap: 40px;
    padding: 30px 0;
    border-top: 1px solid #bfb9b92b;
    border-bottom: 1px solid #bfb9b948;
    margin-bottom: 30px;
    flex-wrap: wrap
    ;
  }
  #footer p{
    margin: 0;
  }
  @media screen and (max-width: 767px) {
    h1{
        font-size: 32px;
    }
    .main_content p{
        padding: 15px;
    }
    .grid{
        display: flex;
        flex-direction: column;
    }
    .img_g{
        order: 1;
    }
    .list_i li{
        width: 100%;
    }
    .module{
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .pac_item{
        grid-template-columns: 97px auto 99px;
    }
    .pac_item p{
        padding: 15px 10px;
        font-size: 13px;
    }
    .faq-section{
        padding-left: 0;
        padding-right: 0;
    }
    section{
        width: 100%;
        overflow-x: hidden;
    }
  }