:root {
    --bg-color: #fff;
    --accent-color: #39baf6;
    --heading-color: #292962;
    --text-color: #6b7989;
    --button-color: #33b89f;
    --stats-color: #0D6EFD;
    --block-shadow: 0px 0px 29px 11px rgba(0, 0, 0, 0.03);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-color) url('../content/banner-bg.webp') center top no-repeat;
    color: var(--text-color);
    line-height: 1.6;
}

.tz--container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.tz--header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    position: relative;
}

.tz--header-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tz--logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--heading-color);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.tz--logo img {
    width: 42px;
    margin-right: 5px;
}

.tz--nav {
    display: flex;
    align-items: center;
}

.tz--nav-list {
    display: flex;
    list-style: none;
}

.tz--nav-item {
    margin-left: 30px;
}

.tz--nav-link {
    text-decoration: none;
    color: #111;
    font-weight: 500;
    transition: color 0.3s;
}

.tz--nav-link:hover {
    color: var(--accent-color);
}

.tz--nav-actions {
    display: flex;
    align-items: center;
    margin-left: 40px;
}

.tz--language-switcher {
    margin-right: 20px;
    position: relative;
}

.tz--language-btn {
    background: none;
    border: none;
    color: #111;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.tz--language-btn i {
    margin-left: 5px;
}

.tz--language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    box-shadow: var(--block-shadow);
    border-radius: 5px;
    padding: 10px 0;
    display: none;
    z-index: 100;
}

.tz--language-dropdown.active {
    display: block;
}

.tz--language-option {
    padding: 8px 20px;
    color: #111;
    text-decoration: none;
    display: block;
    cursor: pointer;
    transition: background-color 0.3s;
}

.tz--language-option:hover {
    background-color: #f5f5f5;
}

.tz--btn {
    background-color: var(--button-color);
    color: white;
    text-decoration: none;

    border: none;
    padding: 8px 24px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    display: inline-flex;
    align-items: center;
}

.tz--btn:hover {
    background-color: #2a9e85;
}

.tz--btn i {
    margin-left: 8px;
}

.tz--mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--heading-color);
    cursor: pointer;
}


.tz--banner {
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}



.tz--subtitle {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.tz--title {
    color: var(--heading-color);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.tz--text {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 18px;
}

.tz--banner-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.tz--btn-outline {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.tz--btn-outline:hover {
    background-color: var(--accent-color);
    color: white;
}


.tz--benefits {
    padding: 80px 0;
}

.tz--benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tz--benefit-card {
    background: white;
    box-shadow: var(--block-shadow);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s;
}

.tz--benefit-card:hover {
    transform: translateY(-10px);
}

.tz--benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(57, 186, 246, 0.1);
    border-radius: 50%;
}

.tz--benefit-icon img {
    width: 30px;
    height: 30px;
}

.tz--benefit-title {
    color: var(--heading-color);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.tz--benefit-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    margin-top: 10px;
}

.tz--benefit-link i {
    margin-left: 5px;
}


.tz--about {
    padding: 80px 0;
}

.tz--about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.tz--about-text {
    flex: 1;
}

.tz--about-features {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.tz--feature-item {
    display: flex;
    flex-direction: column;
}

.tz--feature-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(57, 186, 246, 0.1);
    border-radius: 10px;
}

.tz--feature-title {
    color: var(--heading-color);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}


.tz--services {
    padding: 80px 0;
}

.tz--services-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.tz--services-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
}

.tz--services-image img {
    width: 100%;
    height: auto;
    display: block;
}

.tz--services-list {
    flex: 1;
}

.tz--service-item {
    display: flex;
    margin-bottom: 30px;
}

.tz--service-icon {
    width: 60px;
    height: 60px;
    margin-right: 20px;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(57, 186, 246, 0.1);
    border-radius: 10px;
    flex-shrink: 0;
}

.tz--service-content h3 {
    color: var(--heading-color);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}


.tz--stats {
    padding: 80px 0;
    background-color: rgba(13, 110, 253, 0.05);
}

.tz--stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.tz--stat-item {
    text-align: center;
}

.tz--stat-number {
    color: var(--stats-color);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.tz--stat-text {
    color: var(--heading-color);
    font-weight: 600;
}


.tz--cta {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(57, 186, 246, 0.1) 0%, rgba(51, 184, 159, 0.1) 100%);
}

.tz--cta .tz--title {
    margin-bottom: 20px;
}

.tz--cta .tz--text {
    margin-bottom: 30px;
}


.tz--footer {
    background-color: #f8f9fa;
    padding: 60px 0 20px;
}

.tz--footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.tz--footer-logo {
    font-size: 20px;
    display: flex;
    align-items: center;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 15px;
}

.tz--footer-logo img {
    width: 42px;
    margin-right: 5px;
}

.tz--footer-about {
    margin-bottom: 20px;
}

.tz--footer-links h3 {
    color: var(--heading-color);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.tz--footer-links ul {
    list-style: none;
}

.tz--footer-links li {
    margin-bottom: 10px;
}

.tz--footer-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.tz--footer-links a:hover {
    color: var(--accent-color);
}

.tz--footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tz--footer-contact-item {
    display: flex;
    align-items: center;
}

.tz--footer-contact-item i {
    margin-right: 10px;
    color: var(--accent-color);
}

.tz--footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.tz--footer-legal {
    display: flex;
    gap: 20px;
}

.tz--footer-legal a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.tz--footer-legal a:hover {
    color: var(--accent-color);
}


.tz--cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 90%;
    max-width: 450px;
    background: white;
    box-shadow: var(--block-shadow);
    border-radius: 10px;
    padding: 20px;
    z-index: 1000;
    display: none;
}

.tz--cookie-popup.active {
    display: block;
}

.tz--cookie-title {
    color: var(--heading-color);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.tz--cookie-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.tz--cookie-btn {
    padding: 8px 16px;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.tz--cookie-accept {
    background-color: var(--button-color);
    color: white;
    border: none;
}

.tz--cookie-decline {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--text-color);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, 20px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.tz--about-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(57, 186, 246, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    text-align: center;
}

.tz--about-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.tz--about-mission {
    padding: 100px 0;
}

.tz--about-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.tz--mission-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.tz--mission-stat {
    text-align: center;
}

.tz--mission-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.tz--mission-label {
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
}

.tz--mission-visual {
    position: relative;
    height: 400px;
}

.tz--visual-card {
    position: absolute;
    background: white;
    box-shadow: var(--block-shadow);
    border-radius: 15px;
    padding: 25px;
    width: 220px;
    transition: transform 0.3s ease;
}

.tz--visual-card:hover {
    transform: translateY(-10px);
}

.tz--card-1 {
    top: 0;
    left: 0;
    z-index: 3;
}

.tz--card-2 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
}

.tz--card-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.tz--visual-icon {
    width: 60px;
    height: 60px;
    background: rgba(57, 186, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.tz--visual-icon i {
    font-size: 24px;
    color: var(--accent-color);
}

.tz--visual-card h3 {
    color: var(--heading-color);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.tz--visual-card p {
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.5;
}

.tz--about-values {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(51, 184, 159, 0.03) 0%, rgba(57, 186, 246, 0.03) 100%);
}

.tz--values-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.tz--values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.tz--value-card {
    background: white;
    box-shadow: var(--block-shadow);
    border-radius: 15px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.tz--value-card:hover {
    transform: translateY(-5px);
}

.tz--value-number {
    font-size: 48px;
    font-weight: 700;
    color: rgba(57, 186, 246, 0.1);
    position: absolute;
    top: 20px;
    right: 30px;
    line-height: 1;
}

.tz--value-content h3 {
    color: var(--heading-color);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.tz--value-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--button-color));
}

@media (max-width: 768px) {
    .tz--about-mission-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .tz--mission-visual {
        height: 300px;
    }

    .tz--visual-card {
        width: 180px;
        padding: 20px;
    }

    .tz--values-grid {
        grid-template-columns: 1fr;
    }

    .tz--mission-stats {
        flex-direction: column;
        gap: 20px;
    }
}


.tz--contact-hero {
    padding: 80px 0 30px;
    background: linear-gradient(135deg, rgba(57, 186, 246, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    text-align: center;
}

.tz--contact-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.tz--contact-form-section {
    padding: 100px 0;
}

.tz--contact-form-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.tz--form-container {
    background: white;
    box-shadow: var(--block-shadow);
    border-radius: 15px;
    padding: 40px;
}

.tz--form-title {
    color: var(--heading-color);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

.tz--form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.tz--form-group {
    margin-bottom: 25px;
}

.tz--form-label {
    display: block;
    color: var(--heading-color);
    font-weight: 600;
    margin-bottom: 8px;
}

.tz--form-input,
.tz--form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s;
}

.tz--form-input:focus,
.tz--form-textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.tz--form-textarea {
    resize: vertical;
    min-height: 120px;
}

.tz--form-submit {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
}

.tz--form-success {
    text-align: center;
    padding: 40px 20px;
}

.tz--success-icon {
    width: 80px;
    height: 80px;
    background: rgba(51, 184, 159, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.tz--success-icon i {
    font-size: 36px;
    color: var(--button-color);
}

.tz--form-success h3 {
    color: var(--heading-color);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.tz--form-info {
    background: linear-gradient(135deg, var(--accent-color), var(--button-color));
    color: white;
    border-radius: 15px;
    padding: 40px 30px;
}

.tz--form-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 30px;
}

.tz--info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.tz--info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.tz--info-icon i {
    font-size: 20px;
}

.tz--info-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.tz--info-content p {
    opacity: 0.9;
    font-size: 14px;
}

.tz--contact-info-full {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(57, 186, 246, 0.03) 0%, rgba(51, 184, 159, 0.03) 100%);
}

.tz--contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.tz--contact-info-item {
    background: white;
    box-shadow: var(--block-shadow);
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    transition: transform 0.3s ease;
}

.tz--contact-info-item:hover {
    transform: translateY(-5px);
}

.tz--contact-icon {
    width: 70px;
    height: 70px;
    background: rgba(57, 186, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.tz--contact-icon i {
    font-size: 28px;
    color: var(--accent-color);
}

.tz--contact-info-item h3 {
    color: var(--heading-color);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.tz--contact-info-item p {
    color: var(--text-color);
    line-height: 1.6;
}

.tz--contact-cta {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(57, 186, 246, 0.1) 0%, rgba(51, 184, 159, 0.1) 100%);
}

.tz--contact-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .tz--contact-form-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tz--contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tz--form-row {
        grid-template-columns: 1fr;
    }

    .tz--contact-info-grid {
        grid-template-columns: 1fr;
    }

    .tz--form-container {
        padding: 30px 20px;
    }
}



.tz--faq {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(57, 186, 246, 0.02) 0%, rgba(255, 255, 255, 0) 100%);
}

.tz--faq-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.tz--faq-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.tz--faq-accordion {
    background: white;
    box-shadow: var(--block-shadow);
    border-radius: 15px;
    overflow: hidden;
}

.tz--faq-item {
    border-bottom: 1px solid #f1f3f4;
}

.tz--faq-item:last-child {
    border-bottom: none;
}

.tz--faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.tz--faq-question:hover {
    background-color: #f8f9fa;
}

.tz--faq-question h3 {
    color: var(--heading-color);
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.tz--faq-icon {
    width: 24px;
    height: 24px;
    background: rgba(57, 186, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, background-color 0.3s;
}

.tz--faq-icon i {
    font-size: 16px;
    color: var(--accent-color);
    transition: transform 0.3s;
}

.tz--faq-item.active .tz--faq-icon {
    background: var(--accent-color);
    transform: rotate(45deg);
}

.tz--faq-item.active .tz--faq-icon i {
    color: white;
    transform: rotate(45deg);
}

.tz--faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.tz--faq-item.active .tz--faq-answer {
    padding: 0 30px 30px;
    max-height: 1000px;
}

.tz--faq-answer p {
    margin-bottom: 15px;
    color: var(--text-color);
}

.tz--faq-answer ul {
    margin: 15px 0;
    padding-left: 20px;
}

.tz--faq-answer li {
    margin-bottom: 8px;
    color: var(--text-color);
    line-height: 1.5;
}

.tz--format-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px 0;
}

.tz--format-category {
    background: rgba(57, 186, 246, 0.05);
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid var(--accent-color);
}

.tz--format-category h4 {
    color: var(--heading-color);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.tz--format-category p {
    font-size: 13px;
    color: var(--text-color);
    margin: 0;
}

.tz--accuracy-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.tz--accuracy-item {
    text-align: center;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.tz--accuracy-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.tz--accuracy-label {
    font-size: 12px;
    color: var(--text-color);
    font-weight: 500;
}

.tz--accuracy-note {
    font-size: 12px;
    color: var(--text-color);
    font-style: italic;
    margin-top: 10px;
}

.tz--plan-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px 0;
}

.tz--plan {
    padding: 20px;
    border-radius: 10px;
    background: white;
    border: 2px solid #f1f3f4;
}

.tz--plan.pro-plan {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, rgba(57, 186, 246, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
}

.tz--plan h4 {
    color: var(--heading-color);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.tz--plan ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tz--plan li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--text-color);
}

.tz--plan li i {
    margin-right: 8px;
    margin-top: 2px;
    flex-shrink: 0;
}

.tz--plan li .ri-check-line {
    color: var(--button-color);
}

.tz--plan li .ri-close-line {
    color: #dc3545;
}


.tz--faq-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tz--support-card {
    background: linear-gradient(135deg, var(--accent-color), var(--button-color));
    color: white;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
}

.tz--support-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.tz--support-icon i {
    font-size: 24px;
}

.tz--support-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.tz--support-card p {
    opacity: 0.9;
    margin-bottom: 20px;
    line-height: 1.5;
}

.tz--support-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tz--support-email {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 500;
    transition: opacity 0.3s;
}

.tz--support-email:hover {
    opacity: 0.8;
}

.tz--resources-card {
    background: white;
    box-shadow: var(--block-shadow);
    border-radius: 15px;
    padding: 25px;
}

.tz--resources-card h3 {
    color: var(--heading-color);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.tz--resources-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tz--resources-list li {
    margin-bottom: 12px;
}

.tz--resources-list a {
    display: flex;
    align-items: center;
    color: var(--text-color);
    text-decoration: none;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s;
}

.tz--resources-list a:hover {
    background: rgba(57, 186, 246, 0.1);
    color: var(--accent-color);
}

.tz--resources-list i {
    margin-right: 10px;
    font-size: 18px;
}

@media (max-width: 992px) {
    .tz--faq-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tz--format-grid,
    .tz--accuracy-stats,
    .tz--plan-comparison {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .tz--faq-question {
        padding: 20px;
    }

    .tz--faq-answer {
        padding: 0 20px;
    }

    .tz--faq-item.active .tz--faq-answer {
        padding: 0 20px 20px;
    }

    .tz--support-card,
    .tz--resources-card {
        padding: 20px;
    }
}


.tz--legal-page {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(57, 186, 246, 0.02) 0%, rgba(255, 255, 255, 0) 100%);
}

.tz--legal-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 10px;
    padding-bottom: 40px;
    border-bottom: 2px solid rgba(57, 186, 246, 0.1);
}

.tz--legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.tz--legal-section {
    margin-bottom: 20px;
    padding: 40px;
    background: white;
    box-shadow: var(--block-shadow);
    border-radius: 15px;
    border-left: 4px solid var(--accent-color);
}

.tz--legal-section h2 {
    color: var(--heading-color);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.tz--legal-section h2:before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    margin-right: 15px;
}

.tz--legal-section h3 {
    color: var(--heading-color);
    font-size: 18px;
    font-weight: 600;
    margin: 25px 0 15px;
}

.tz--legal-section h4 {
    color: var(--heading-color);
    font-size: 16px;
    font-weight: 600;
    margin: 20px 0 10px;
}

.tz--legal-section p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 15px;
}

.tz--legal-section ul {
    margin: 15px 0;
    padding-left: 20px;
}

.tz--legal-section li {
    color: var(--text-color);
    margin-bottom: 8px;
    line-height: 1.6;
    position: relative;
}

.tz--legal-section li:before {
    content: '•';
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 10px;
}

.tz--legal-section strong {
    color: var(--heading-color);
    font-weight: 600;
}


.tz--usage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 25px 0;
}

.tz--usage-item {
    text-align: center;
    padding: 25px 20px;
    background: rgba(57, 186, 246, 0.05);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.tz--usage-item:hover {
    transform: translateY(-5px);
}

.tz--usage-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.tz--usage-icon i {
    font-size: 24px;
    color: white;
}

.tz--usage-item h4 {
    color: var(--heading-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.tz--rights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.tz--right-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: rgba(51, 184, 159, 0.1);
    border-radius: 8px;
    border-left: 3px solid var(--button-color);
}

.tz--right-item i {
    color: var(--button-color);
    font-size: 20px;
    margin-right: 12px;
}

.tz--right-item span {
    color: var(--text-color);
    font-weight: 500;
}

.tz--contact-info {
    background: rgba(57, 186, 246, 0.05);
    padding: 20px;
    border-radius: 10px;
    margin-top: 15px;
}


.tz--service-features {
    margin: 25px 0;
}

.tz--feature-highlight {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(57, 186, 246, 0.05);
    border-radius: 10px;
}

.tz--feature-highlight i {
    color: var(--button-color);
    font-size: 20px;
    margin-right: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}

.tz--feature-highlight h4 {
    color: var(--heading-color);
    margin: 0 0 8px 0;
}

.tz--responsibility-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 25px 0;
}

.tz--responsibility-item {
    text-align: center;
    padding: 25px 20px;
    background: white;
    border: 2px solid rgba(57, 186, 246, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.tz--responsibility-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

.tz--responsibility-icon {
    width: 60px;
    height: 60px;
    background: rgba(57, 186, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.tz--responsibility-icon i {
    font-size: 24px;
    color: var(--accent-color);
}

.tz--responsibility-item h4 {
    color: var(--heading-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}


.tz--cookies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 25px 0;
}

.tz--cookie-category {
    padding: 25px;
    background: rgba(57, 186, 246, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.tz--cookie-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.tz--cookie-header i {
    font-size: 24px;
    color: var(--accent-color);
    margin-right: 12px;
}

.tz--cookie-header h3 {
    color: var(--heading-color);
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.tz--cookie-category ul {
    margin-top: 15px;
}

.tz--duration-table {
    margin: 25px 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.tz--table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    background: var(--accent-color);
    color: white;
    font-weight: 600;
}

.tz--table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    border-bottom: 1px solid #f1f3f4;
}

.tz--table-cell {
    padding: 15px 20px;
    display: flex;
    align-items: center;
}

.tz--table-row:nth-child(even) {
    background: rgba(57, 186, 246, 0.05);
}

.tz--management-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 25px 0;
}

.tz--management-item {
    padding: 20px;
    background: rgba(57, 186, 246, 0.05);
    border-radius: 10px;
    text-align: center;
}

.tz--management-item h4 {
    color: var(--heading-color);
    margin-bottom: 10px;
}

.tz--note-box {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 10px;
    border-left: 4px solid #ffc107;
    margin-top: 20px;
}

.tz--note-box i {
    color: #ffc107;
    font-size: 20px;
    margin-right: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}


@media (max-width: 992px) {

    .tz--usage-grid,
    .tz--rights-grid,
    .tz--responsibility-grid,
    .tz--cookies-grid,
    .tz--management-options {
        grid-template-columns: 1fr;
    }

    .tz--duration-table .tz--table-header,
    .tz--duration-table .tz--table-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .tz--legal-section {
        padding: 25px 20px;
        margin-bottom: 30px;
    }

    .tz--legal-header {
        margin-bottom: 40px;
        padding-bottom: 30px;
    }

    .tz--table-cell {
        padding: 10px 15px;
    }

    .tz--feature-highlight {
        flex-direction: column;
        text-align: center;
    }

    .tz--feature-highlight i {
        margin-right: 0;
        margin-bottom: 10px;
    }
}













































@media (max-width: 992px) {
    .tz--benefits-grid {
        grid-template-columns: 1fr 1fr;
    }

    .tz--about-content,
    .tz--services-content {
        flex-direction: column;
    }

    .tz--footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .tz--stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .tz--nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: var(--block-shadow);
        flex-direction: column;
        padding: 20px;
        z-index: 999;
    }

    .tz--banner {
        padding: 90px 0 40px 0;
    }

    .tz--services {
        padding-top: 30px;
    }

    .tz--nav.active {
        display: flex;
    }

    .tz--nav-list {
        flex-direction: column;
        width: 100%;
    }

    .tz--nav-item {
        margin: 10px 0;
    }

    .tz--nav-actions {
        margin: 20px 0 0;
        flex-direction: column;
        width: 100%;
    }

    .tz--language-switcher {
        margin: 0 0 15px;
    }

    .tz--mobile-toggle {
        display: block;
    }

    .tz--title {
        font-size: 36px;
    }

    .tz--benefits-grid {
        grid-template-columns: 1fr;
    }

    .tz--about-features {
        grid-template-columns: 1fr;
    }

    .tz--footer-content {
        grid-template-columns: 1fr;
    }

    .tz--stats-grid {
        grid-template-columns: 1fr;
    }

    .tz--footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .tz--banner-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media(max-width: 520px) {

    .tz--about-hero,
    .tz--contact-hero,
    .tz--faq {
        padding: 60px 0 30px 0 !important;
    }

    .tz--visual-card {
        position: static !important;
        width: 100% !important;
        transform: none !important;
    }

    .tz--mission-visual {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .tz--contact-form-section{
        padding: 10px 0 50px 0;
    }
}