<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Base styles */
:root {
    --primary-color: #e53e3e;
    --secondary-color: #fef1f1;
    --dark-color: #1a1a1a;
    --light-color: #ffffff;
    --grey-color: #f3f3f3;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Unbounded', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 12px 24px;
    border-radius: var(--border-radius);
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn:hover {
    background-color: #c53030;
}

/* Header */
.header {
    background-color: var(--primary-color);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: var(--light-color);
    font-weight: 700;
    font-size: 24px;
}

.menu {
    display: flex;
    align-items: center;
}

.menu__item {
    margin-left: 30px;
}

.menu__link {
    color: var(--light-color);
    font-weight: 500;
    transition: var(--transition);
}

.menu__link:hover {
    opacity: 0.8;
}

.contacts-btn {
    background-color: var(--light-color);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: var(--border-radius);
}

.burger-btn {
    display: none;
    width: 30px;
    height: 20px;
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
}

.burger-btn span {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--light-color);
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition);
}

.burger-btn::before,
.burger-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--light-color);
    transition: var(--transition);
}

.burger-btn::before {
    top: 0;
}

.burger-btn::after {
    bottom: 0;
}

.burger-btn.active span {
    transform: translateX(-50px);
    background: transparent;
}

.burger-btn.active::before {
    top: 50%;
    transform: rotate(45deg);
}

.burger-btn.active::after {
    bottom: 50%;
    transform: rotate(-45deg);
}

/* Hero section */
.hero {
    padding: 120px 0 60px;
    background-color: var(--light-color);
}

.hero__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero__title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero__text {
    margin-bottom: 30px;
    font-size: 16px;
}

/* Contact Form */
.contact-form {
    padding: 60px 0;
    background-color: var(--secondary-color);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-color: var(--secondary-color);
    border-radius: var(--border-radius);
}

.form__title {
    text-align: center;
    margin-bottom: 10px;
    font-size: 28px;
}

.form__subtitle {
    text-align: center;
    margin-bottom: 30px;
    font-size: 16px;
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form__field {
    margin-bottom: 20px;
}

.form__field label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form__field input,
.form__field textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: 'Unbounded', sans-serif;
}

.form__field textarea {
    height: 120px;
    resize: none;
}

.form__btn {
    width: 100%;
    margin-bottom: 15px;
}

.form__note {
    text-align: center;
    font-size: 14px;
}

/* Empowering section */
.empowering {
    padding: 80px 0;
    background-color: var(--light-color);
}

.empowering__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.empowering__title {
    font-size: 28px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.empowering__text {
    margin-bottom: 20px;
    font-size: 14px;
}

.empowering__image {
    border-radius: var(--border-radius);
    overflow: hidden;
}

/* Areas section */
.areas {
    padding: 80px 0;
    background-color: var(--light-color);
}

.areas__title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
}

.areas__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.areas__item {
    background-color: var(--secondary-color);
    padding: 30px 20px;
    border-radius: var(--border-radius);
    text-align: center;
}

.areas__item-title {
    font-size: 18px;
    font-weight: 600;
}

/* Insights section */
.insights {
    padding: 80px 0;
    background-color: var(--light-color);
}

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

.insights__subtitle {
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
}

.insights__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.insights__card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.insights__card-img {
    height: 180px;
    overflow: hidden;
}

.insights__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insights__card-title {
    padding: 20px;
    font-size: 16px;
    font-weight: 600;
}

.insights__btn {
    display: block;
    max-width: 300px;
    margin: 0 auto;
}

/* Service section */
.service {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

.service__title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
}

.service__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service__item {
    background-color: var(--light-color);
    padding: 30px 20px;
    border-radius: var(--border-radius);
}

.service__item-title {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.service__item-text {
    font-size: 14px;
}

/* Footer */
.footer {
    background-color: var(--light-color);
    padding: 20px 0;
    border-top: 1px solid #eee;
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__copyright {
    font-size: 14px;
}

.footer__links {
    display: flex;
    gap: 20px;
}

.footer__link {
    font-size: 14px;
    color: var(--dark-color);
    transition: var(--transition);
}

.footer__link:hover {
    color: var(--primary-color);
}

/* Thank you page */
.thank-you {
    padding: 150px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thank-you__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thank-you__title {
    font-size: 42px;
    margin-bottom: 30px;
}

.thank-you__text {
    margin-bottom: 20px;
    font-size: 16px;
}

.thank-you__btn {
    margin-top: 30px;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 20px;
    border-radius: var(--border-radius);
    z-index: 9999;
    display: none;
    max-width: 400px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cookie-consent.show {
    display: block;
}

.cookie-consent__text {
    margin-bottom: 15px;
    font-size: 14px;
}

.cookie-consent__buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 16px;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: 'Unbounded', sans-serif;
}

.cookie-btn--accept {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.cookie-btn--decline {
    background-color: transparent;
    border: 1px solid var(--light-color);
    color: var(--light-color);
}

/* Media Queries */
@media (max-width: 992px) {
    .burger-btn {
        display: block;
    }

    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--primary-color);
        transition: var(--transition);
        padding: 20px;
        overflow-y: auto;
    }

    .nav.active {
        left: 0;
    }

    .menu {
        flex-direction: column;
        align-items: flex-start;
    }

    .menu__item {
        margin: 10px 0;
        width: 100%;
    }

    .menu__link {
        display: block;
        padding: 10px 0;
    }

    .empowering__inner {
        grid-template-columns: 1fr;
    }

    .insights__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form__row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero__title {
        font-size: 32px;
    }

    .insights__grid {
        grid-template-columns: 1fr;
    }

    .service__grid {
        grid-template-columns: 1fr;
    }

    .footer__inner {
        flex-direction: column;
        text-align: center;
    }

    .footer__copyright {
        margin-bottom: 15px;
    }

    .footer__links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 100px 0 40px;
    }

    .hero__title {
        font-size: 28px;
    }

    .form-container {
        padding: 20px;
    }

    .empowering__title, 
    .areas__title, 
    .insights__title, 
    .service__title {
        font-size: 24px;
    }
}
              .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;
                }

                </pre></body></html>