:root {
    --background: #fff;
    --background-alt: #F2F8FD;
    --accent: #7d25ec;
    --accent-gradient: linear-gradient(180deg, #9425EC 0%, #7D25EC 100%);
    --heading-color: #1b2a52;
    --text-color: #6a738b;
    --footer-bg: #1B2A52;
    --border: 1px solid rgba(27, 42, 82, 0.07);
    --topline-gradient: linear-gradient(90deg, #7720FF 0%, #EB42FA 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: var(--background);
    line-height: 1.5;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--heading-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 1.8rem;
    font-weight: 600;
}

p {
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: var(--accent);
    transition: all 0.3s ease;
}

a:hover {
    color: #5a1bb0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Inter', sans-serif;
}

.btn--primary {
    background: var(--accent-gradient);
    color: white;
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(125, 37, 236, 0.3);
    color: #f1f1f1;
}

.btn--outline {
    background: transparent;
    color: var(--heading-color);
    border: 2px solid var(--heading-color);
}

.btn--outline:hover {
    background: var(--heading-color);
    color: white;
}

.section {
    padding: 100px 0;
}

.section--alt {
    background-color: var(--background-alt);
}

.section__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section__subtitle {
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}


.topline {
    background: var(--topline-gradient);
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 0.9rem;
    font-weight: 500;
}


.header {
    position: sticky;
    top: 0;
    background-color: var(--background);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--heading-color);
}

.logo span {
    color: var(--accent);
}

.nav__list {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav__item {
    margin-left: 30px;
}

.nav__link {
    color: var(--heading-color);
    font-weight: 500;
    position: relative;
}

.nav__link:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav__link:hover:after {
    width: 100%;
}

.nav__toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--heading-color);
    cursor: pointer;
}


.hero {
    padding: 120px 0 80px;
    background-color: var(--background-alt);
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(125, 37, 236, 0.1) 0%, rgba(125, 37, 236, 0) 70%);
    z-index: 0;
}

.hero__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.hero__content {
    flex: 1;
    max-width: 600px;
}

.hero__subtitle {
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.hero__text {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.hero__buttons {
    display: flex;
    gap: 15px;
}

.hero__image {
    flex: 1;
    text-align: center;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}


.features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature__icon {
    width: 60px;
    height: 60px;
    background-color: rgba(125, 37, 236, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature__icon img {
    width: 30px;
    height: 30px;
}

.feature__title {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature__link {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    margin-top: 10px;
}

.feature__link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.feature__link:hover i {
    transform: translateX(5px);
}


.about__inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about__content {
    flex: 1;
}

.about__list {
    list-style: none;
    margin: 20px 0;
}

.about__list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.about__list li:before {
    content: '✓';
    color: var(--accent);
    font-weight: bold;
    margin-right: 10px;
}

.about__image {
    flex: 1;
    text-align: center;
}

.about__image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.cta-bg {
    background: url('../img/bg.jpg') center no-repeat;
    background-size: cover;
}

.cta {
    text-align: center;
    background: url();
    color: var(--text-color);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.cta__content {
    position: relative;
    z-index: 1;
}




.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service--wide {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 30px;
}

.service__icon {
    width: 70px;
    height: 70px;
    background-color: rgba(125, 37, 236, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service--wide .service__icon {
    margin-bottom: 0;
    flex-shrink: 0;
}

.service__icon img {
    width: 35px;
    height: 35px;
}

.service__title {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service__link {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    margin-top: 15px;
}

.service__link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.service__link:hover i {
    transform: translateX(5px);
}


.faq__items {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    border: var(--border);
}

.faq__question {
    padding: 20px;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: background 0.3s ease;
}

.faq__question:hover {
    background: var(--background-alt);
}

.faq__question i {
    transition: transform 0.3s ease;
}

.faq__answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq__item.active .faq__answer {
    padding: 20px 20px 20px;
    max-height: 500px;
}

.faq__item.active .faq__question i {
    transform: rotate(180deg);
}


.footer {
    background-color: var(--footer-bg);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px;
}

.footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer__logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    display: block;
}

.footer__logo span {
    color: var(--accent);
}

.footer__text {
    margin-bottom: 30px;
    max-width: 400px;
}

.footer__newsletter {
    display: flex;
    margin-bottom: 15px;
    max-width: 400px;
    width: 100%;
}

.contact--info {
    margin-top: 20px;
}

.contact--info p {
    margin-bottom: 5px;
}

.footer__input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-family: 'Inter', sans-serif;
}

.footer__btn {
    background: var(--accent);
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.footer__btn:hover {
    background: #6a1fc9;
}

.footer__success {
    color: #4CAF50;
    display: none;
}

.footer__title {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: 10px;
}

.footer__links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer__links a:hover {
    color: white;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}


.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 90%;
    max-width: 400px;
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    display: none;
}

.cookie-popup__title {
    margin-bottom: 10px;
}

.cookie-popup__text {
    margin-bottom: 20px;
}

.cookie-popup__buttons {
    display: flex;
    gap: 10px;
}

.cookie-popup__btn {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-popup__btn--accept {
    background: var(--accent);
    color: white;
}

.cookie-popup__btn--accept:hover {
    background: #6a1fc9;
}

.cookie-popup__btn--decline {
    background: transparent;
    color: var(--text-color);
    border: 1px solid var(--text-color);
}

.cookie-popup__btn--decline:hover {
    background: var(--text-color);
    color: white;
}




.about-hero {
    padding: 100px 0 80px;
    background-color: var(--background-alt);
    position: relative;
    overflow: hidden;
}

.about-hero:before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(125, 37, 236, 0.1) 0%, rgba(125, 37, 236, 0) 70%);
    z-index: 0;
}

.about-hero__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}


.about-hero__text {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.about-hero__stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat__number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    font-family: 'Space Grotesk', sans-serif;
}

.stat__label {
    color: var(--text-color);
    font-size: 0.9rem;
}

.about-hero__image {
    flex: 1;
    text-align: center;
}


.mission-vision__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.mission-vision__item {
    text-align: center;
    padding: 40px;
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: var(--border);
    transition: transform 0.3s ease;
}

.mission-vision__item:hover {
    transform: translateY(-10px);
}

.mission-vision__icon {
    width: 80px;
    height: 80px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}


.values__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: var(--border);
    transition: transform 0.3s ease;
}

.value:hover {
    transform: translateY(-5px);
}

.value__icon {
    width: 70px;
    height: 70px;
    background-color: rgba(125, 37, 236, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--accent);
    font-size: 1.8rem;
}


.technology__inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.technology__content {
    flex: 1;
}

.technology__features {
    margin-top: 30px;
}

.tech-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.tech-feature i {
    color: var(--accent);
    font-size: 1.5rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.technology__image {
    flex: 1;
    text-align: center;
}


.contact-hero {
    padding: 120px 0 60px;
}

.contact-hero__inner {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}


.contact-info__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-info__item {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: var(--border);
    transition: transform 0.3s ease;
}

.contact-info__item:hover {
    transform: translateY(-10px);
}

.contact-info__icon {
    width: 80px;
    height: 80px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 1.8rem;
}

.contact-info__link {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    margin-top: 15px;
}

.contact-info__link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.contact-info__link:hover i {
    transform: translateX(5px);
}


.contact-form__inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-form__wrapper {
    position: relative;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: var(--border);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--heading-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: var(--border);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(125, 37, 236, 0.1);
}

.contact-form__btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

.contact-form__info {
    margin-top: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.info-item i {
    color: var(--accent);
    font-size: 1.3rem;
}

.contact-form__success {
    display: none;
    text-align: center;
    padding: 60px 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: var(--border);
}

.contact-form__success i {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 20px;
}


.faq-preview__inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.faq-preview__content {
    flex: 1;
}

.faq-preview__items {
    margin: 30px 0;
}

.faq-preview__item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: var(--border);
}

.faq-preview__item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.faq-preview__image {
    flex: 1;
    text-align: center;
}


@media (max-width: 992px) {

    .about-hero__inner,
    .technology__inner,
    .contact-form__inner,
    .faq-preview__inner {
        flex-direction: column;
    }

    .mission-vision__grid,
    .values__grid,
    .contact-info__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-hero__content,
    .technology__content,
    .contact-form__content,
    .faq-preview__content {
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .about-hero__stats {
        flex-direction: column;
        gap: 20px;
    }

    .mission-vision__grid,
    .values__grid,
    .contact-info__grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px 20px;
    }
}

.services-section {
    background-color: var(--background-alt);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 35px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: var(--border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover:before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(125, 37, 236, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon img {
    width: 35px;
    height: 35px;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--heading-color);
}

.service-card p {
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.feature-tag {
    background-color: var(--background-alt);
    color: var(--text-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--accent);
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

.services-cta {
    background: var(--accent-gradient);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.services-cta:before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.services-cta h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 15px;
}

.services-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.services-cta .btn {
    background: white;
    color: var(--accent);
}

.services-cta .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
}


@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-cta {
        padding: 40px 25px;
    }

    .services-cta h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .service-card {
        padding: 25px 20px;
    }

    .service-features {
        justify-content: center;
    }
}


.policy-hero {
    padding: 90px 0 60px;
    text-align: center;
}

.policy-hero__inner h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.policy-hero__text {
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 500;
}


.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-intro {
    background: var(--background-alt);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    border-left: 4px solid var(--accent);
}

.policy-intro p {
    font-size: 1.1rem;
    margin-bottom: 0;
    color: var(--heading-color);
}

.policy-section {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: var(--border);
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.policy-section h2 {
    color: var(--heading-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--background-alt);
}

.policy-subsection {
    margin-bottom: 25px;
}

.policy-subsection:last-child {
    margin-bottom: 0;
}

.policy-subsection h3 {
    color: var(--heading-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.policy-section p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 15px;
}

.policy-section ul {
    color: var(--text-color);
    margin-bottom: 20px;
    padding-left: 20px;
}

.policy-section li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.policy-section li:last-child {
    margin-bottom: 0;
}

.contact-info {
    background: var(--background-alt);
    padding: 25px;
    border-radius: 10px;
    margin-top: 20px;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info p:last-child {
    margin-bottom: 0;
}


@media (max-width: 768px) {
    .policy-hero__inner h1 {
        font-size: 2.2rem;
    }

    .policy-section h2 {
        font-size: 1.5rem;
    }

    .policy-subsection h3 {
        font-size: 1.2rem;
    }

    .policy-intro,
    .contact-info {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .policy-hero {
        padding: 80px 0 40px;
    }

    .policy-section {
        margin-bottom: 40px;
        padding-bottom: 30px;
    }
}

.cookies-table {
    background: var(--background-alt);
    border-radius: 10px;
    padding: 20px;
    margin: 15px 0;
}

.cookie-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 15px;
    padding: 12px 0;
    border-bottom: var(--border);
    align-items: start;
}

.cookie-row:last-child {
    border-bottom: none;
}

.cookie-name {
    font-weight: 600;
    color: var(--heading-color);
}

.cookie-desc {
    color: var(--text-color);
    line-height: 1.5;
}

.cookie-duration {
    color: var(--accent);
    font-weight: 500;
    font-size: 0.9rem;
    text-align: right;
}

.browser-controls {
    background: var(--background-alt);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.browser-controls h4 {
    color: var(--heading-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.browser-controls ul {
    margin-bottom: 0;
}

.text-link {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.text-link:hover {
    color: #5a1bb0;
    text-decoration: underline;
}


@media (max-width: 768px) {
    .cookie-row {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 15px 0;
    }

    .cookie-duration {
        text-align: left;
    }

    .cookies-table {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .browser-controls {
        padding: 15px;
    }

    .cookie-row {
        padding: 12px 0;
    }
}








































@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .features__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about__inner {
        flex-direction: column;
    }

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service--wide {
        grid-column: 1 / -1;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav__list {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        z-index: 999;
    }

    .nav__list.active {
        transform: translateY(0);
        opacity: 1;
    }

    .nav__item {
        margin: 10px 0;
    }

    .nav__toggle {
        display: block;
    }

    .hero__inner {
        flex-direction: column;
        text-align: center;
    }

    .hero__content {
        margin-bottom: 50px;
    }

    .hero__buttons {
        justify-content: center;
    }

    .features__grid {
        grid-template-columns: 1fr;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .service--wide {
        flex-direction: column;
        text-align: center;
    }
}

@media(max-width: 480px) {
    .topline {
        font-size: 12px;
        line-height: 1.3;
    }

    .hero {
        padding: 80px 0 60px 0;
    }

    .hero__image img,
    .about__image img {
        max-width: 280px;
        width: 100%;
    }

    .footer {
        padding: 35px 0;
    }
}