/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input, textarea {
    font-family: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    padding: 20px 0;
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #000;
}

.nav__list {
    display: flex;
    gap: 30px;
}

.nav__link {
    font-weight: 500;
    transition: color 0.3s;
}

.nav__link:hover {
    color: #167D6A;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    height: 20px;
}

.burger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #000;
    transition: transform 0.3s, opacity 0.3s;
}

/* Hero section */
.hero {
    padding: 60px 0;
    background-color: #167D6A;
    color: #fff;
}

.hero__container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero__img {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
}

.hero__content {
    flex: 1.5;
}

.hero__title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero__text {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.6;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background-color: #fff;
    color: #167D6A;
    border-radius: 30px;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}

.btn:hover {
    background-color: #f0f0f0;
}

.arrow-icon {
    margin-left: 8px;
    font-size: 20px;
}

/* Growth section */
.growth {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.growth__container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.growth__content {
    flex: 1.5;
}

.growth__img {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
}

.growth__title {
    font-size: 28px;
    font-weight: 700;
    color: #167D6A;
    margin-bottom: 20px;
}

.growth__text {
    font-size: 16px;
    line-height: 1.6;
}

/* Catalog section */
.catalog {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
}

.catalog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.book-card {
    background-color: #167D6A;
    color: #fff;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.book-card__img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.book-card__title {
    padding: 20px 20px 10px;
    font-size: 18px;
    font-weight: 600;
}

.book-card__desc {
    padding: 0 20px 20px;
    font-size: 14px;
    line-height: 1.5;
    flex-grow: 1;
}

/* Investment section */
.investment {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.investment__title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.investment__text {
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Reviews section */
.reviews {
    padding: 60px 0;
}

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.review-card {
    background-color: #167D6A;
    color: #fff;
    padding: 30px;
    border-radius: 10px;
}

.review-card__name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.review-card__text {
    font-size: 16px;
    line-height: 1.5;
}

/* Contact section */
.contact {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.contact__container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.contact__img {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
}

.contact__form-wrapper {
    flex: 1;
    background-color: #167D6A;
    color: #fff;
    padding: 30px;
    border-radius: 10px;
}

.contact__title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.contact__form input,
.contact__form textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.9);
}

.contact__form textarea {
    height: 120px;
    resize: none;
}

.btn--submit {
    background-color: #fff;
    color: #167D6A;
}

.btn--submit:hover {
    background-color: #f0f0f0;
}

/* Footer */
.footer {
    padding: 30px 0;
    background-color: #fff;
    border-top: 1px solid #eee;
}

.footer__list {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer__link {
    font-size: 14px;
    color: #666;
    transition: color 0.3s;
}

.footer__link:hover {
    color: #167D6A;
}

/* Thank you page */
.thank-you {
    padding: 100px 0;
    min-height: calc(100vh - 170px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.thank-you__title,
.thank-you__subtitle {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.thank-you__btn {
    margin-top: 40px;
    background-color: #167D6A;
    color: #fff;
}

.thank-you__btn:hover {
    background-color: #126355;
    color: #fff;
}

/* Cookie consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 15px 0;
    z-index: 1000;
    display: none;
}

.cookie-consent.active {
    display: block;
}

.cookie-consent__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-consent__content p {
    flex: 1;
    margin-right: 20px;
}

.btn--cookie {
    background-color: #167D6A;
    color: #fff;
    padding: 8px 16px;
    white-space: nowrap;
}

.btn--cookie:hover {
    background-color: #126355;
}

/* Responsive styles */
@media (max-width: 992px) {
    .burger {
        display: flex;
        z-index: 102;
    }

    .burger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .burger.active span:nth-child(2) {
        opacity: 0;
    }

    .burger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: #fff;
        z-index: 101;
        transition: right 0.3s;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        padding: 80px 30px 30px;
    }

    .nav.active {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        gap: 20px;
    }

    .nav__link {
        font-size: 18px;
    }

    .hero__container,
    .growth__container,
    .contact__container {
        flex-direction: column;
    }

    .catalog__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews__grid {
        grid-template-columns: 1fr;
    }

    .footer__list {
        gap: 20px;
    }

    .cookie-consent__content {
        flex-direction: column;
        gap: 15px;
    }

    .cookie-consent__content p {
        margin-right: 0;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .catalog__grid {
        grid-template-columns: 1fr;
    }

    .hero__title,
    .growth__title,
    .section-title,
    .investment__title {
        font-size: 24px;
    }

    .thank-you__title,
    .thank-you__subtitle {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 20px;
    }

    .hero,
    .growth,
    .catalog,
    .investment,
    .reviews,
    .contact {
        padding: 40px 0;
    }

    .footer__list {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}
              .page {
                padding: 80px 0;
              }
              
              .page__inner {
                padding-top: 40px;
                width: 100%;
                margin: 0 auto;
                display: flex;
                  flex-direction: column;
                  row-gap: 18px;
                  line-height: 1.4;
              }

              .page__inner p {
                padding-bottom: 10px;
                padding-top: 8px;
              }

              .page__inner strong {
                font-weight: 600;
              }

              .page__inner ul {
                padding-left: 20px;
                list-style-type: disc;
              }

              .thank {
                padding-top: 140px;
                padding-bottom: 140px;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 40px;
                text-align: center;
              }

              .thank-list {
                width: 100%;
                max-width: 1200px;
                margin: 0 auto 40px;
                display: flex;
                flex-direction: column;
                padding: 40px 24px;
                color: #121212;
                background: #E1E0DA;
              }

              .consent {
                border-radius: 10px;
                  background: #F5F5F5;
                    padding: 30px;
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    gap: 15px;
                    max-width: 830px;
                    width: 95%;
                    position: fixed;
                    left: 10%;
                    bottom: 50px;
                    transform: translateX(-10%);
                    z-index: 21;
                 
                   
                }

               
                
                .consent__text {
                  font-size: 14px;
                  color: #131313;
                  span {
                    display: block;
                    font-size: 30px;
                    text-transform: uppercase;
                  }
                }
                
                .consent__buttons {
                  display: flex;
                 
                  gap: 30px;
                  align-items: center;
                  width: 100%;
                 
                }       
                
                @media (max-width: 900px) {
                  .consent {
                    left: 50%;
                    transform: translateX(-50%);
                  }
                  .consent__buttons {
                    justify-content: center;
                    flex-direction: column;
                  }
                }

                .button {
                  position: relative;
                  align-self: center;
                  display: flex;
                  align-items: center;
                  justify-content: center;
                  text-decoration: none;
                  border: none;
                  border-radius: 20px;
                 
                  max-width: 400px;
                  min-height: 48px;
                  padding: 0 24px;
                  font-family:
                    Roboto,
                    -apple-system,
                    Roboto,
                    Helvetica,
                    sans-serif;
                  font-size: 18px;
                  font-weight: 700;
                  color: rgba(255, 255, 255, 1);
                  white-space: nowrap;
                  text-transform: uppercase;
                  cursor: pointer;
                }

                