:root {
    --bg-color: #010006;
    --accent-color: #95b6fb;
    --footer-bg: #02021e;
    --text-light: #ffffff;
    --text-gray: #a0a0a0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Jost', sans-serif;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.tx_container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tx_btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--bg-color);
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Jost', sans-serif;
}

.tx_btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(149, 182, 251, 0.3);
}


.tx_header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: rgba(1, 0, 6, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.tx_header.scrolled {
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.tx_header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tx_logo {
    font-family: 'Jost', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.tx_logo i {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 28px;
}

.tx_nav {
    display: flex;
    align-items: center;
}

.tx_nav-list {
    align-items: center;
    display: flex;
    list-style: none;
}

.tx_nav-item {
    margin-left: 30px;
}

.tx_nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.tx_nav-link:hover {
    color: var(--accent-color);
}

.tx_nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.tx_nav-link:hover::after {
    width: 100%;
}

.tx_menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 24px;
    cursor: pointer;
}


.tx_banner {
    padding: 180px 0 80px;
    text-align: center;
    position: relative;
    background: url('../images/bg.png') center no-repeat;
    background-size: cover;
    overflow: hidden;
}

.tx_banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(149, 182, 251, 0.1) 0%, rgba(1, 0, 6, 0) 70%);
    z-index: -1;
}

.tx_banner-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
}

.tx_banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 60px;
    text-align: left;
}

.tx_banner-text {
    text-align: center;
}

.tx_banner-subtitle {
    font-size: 2rem;
    margin-bottom: 20px;
}

.tx_banner-desc {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.tx_banner-visual {
    flex: 1;
    max-width: 560px;
    position: relative;
    animation: float 6s ease-in-out infinite;
}


.tx_banner-img {
    width: 100%;
}


.tx_about {
    padding: 100px 0;
}

.tx_about-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tx_about-content {
    flex: 1;
    max-width: 600px;
}

.tx_about-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.tx_about-desc {
    margin-bottom: 40px;
}

.tx_benefits {
    margin-bottom: 40px;
}

.tx_benefit {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.tx_benefit-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(149, 182, 251, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--accent-color);
    font-size: 20px;
}

.tx_benefit-text h4 {
    margin-bottom: 5px;
}

.tx_why-us {
    flex: 1;
    max-width: 500px;
    margin-left: 50px;
}

.tx_why-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.tx_why-item {
    margin-bottom: 25px;
    padding-left: 20px;
    border-left: 2px solid var(--accent-color);
}

.tx_why-item h4 {
    margin-bottom: 10px;
}


.tx_services {
    padding: 100px 0;
}

.tx_service {
    display: flex;
    align-items: center;
    margin-bottom: 100px;
}

.tx_service:nth-child(even) {
    flex-direction: row-reverse;
}

.tx_service:nth-child(even) .tx_service-content {
    margin-left: 0;
    margin-right: 50px;
}

.tx_service-content {
    flex: 1;
    margin-left: 50px;
}

.tx_service-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.tx_service-desc {
    margin-bottom: 30px;
}

.tx_service-list {
    list-style: none;
    margin-bottom: 30px;
}

.tx_service-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.tx_service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.tx_service-visual {
    flex: 1;
    position: relative;
}

.tx_service-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}


.tx_testimonials {
    padding: 60px 0;
    text-align: center;
}

.tx_section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-align: center;
}

.tx_section-subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.tx_testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tx_testimonial {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.3s ease;
}

.tx_testimonial:hover {
    transform: translateY(-10px);
}

.tx_testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 3px solid var(--accent-color);
}

.tx_testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tx_testimonial-name {
    margin-bottom: 10px;
}

.tx_testimonial-stars {
    color: var(--accent-color);
    margin-bottom: 15px;
}

.tx_testimonial-text {
    font-style: italic;
}


.tx_cta {
    padding: 100px 0;
    text-align: center;
    background: url('../images/bg.png') center no-repeat;
    background-size: cover;
}

.tx_cta-subtitle {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.tx_cta-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.tx_cta-desc {
    max-width: 600px;
    margin: 0 auto 40px;
}


.tx_footer {
    background-color: var(--footer-bg);
    padding: 50px 0 20px;
}

.tx_footer-main {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.tx_footer-about {
    flex: 1;
    max-width: 390px;
}

.tx_footer-logo {
    font-family: 'Jost', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.tx_footer-logo i {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 26px;
}

.tx_footer-desc {
    margin-bottom: 20px;
}

.tx_footer-contact p {
    display: flex;
    align-items: center;
    color: #ccc;
    gap: 10px;
    margin-bottom: 10px;
}


.tx_footer-links {
    flex: 1;
    display: flex;
    justify-content: space-around;
}

.tx_footer-column h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.tx_footer-list {
    list-style: none;
}

.tx_footer-list li {
    margin-bottom: 10px;
}

.tx_footer-link {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.tx_footer-link:hover {
    color: var(--accent-color);
}

.tx_footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tx_footer-copyright {
    font-size: 0.9rem;
}

.tx_footer-legal {
    display: flex;
}

.tx_footer-legal a {
    color: var(--text-gray);
    text-decoration: none;
    margin-left: 20px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.tx_footer-legal a:hover {
    color: var(--accent-color);
}


.tx_cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: var(--footer-bg);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1001;
    display: none;
    max-width: 500px;
}

.tx_cookie-title {
    margin-bottom: 10px;
}

.tx_cookie-text {
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.tx_cookie-buttons {
    display: flex;
    gap: 10px;
}

.tx_cookie-btn {
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.tx_cookie-accept {
    background-color: var(--accent-color);
    color: var(--bg-color);
    border: none;
}

.tx_cookie-decline {
    background-color: transparent;
    color: var(--text-gray);
    border: 1px solid var(--text-gray);
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.tx_about-hero {
    padding: 150px 0 100px;
    background: radial-gradient(circle at 50% 50%, rgba(149, 182, 251, 0.1) 0%, rgba(1, 0, 6, 0) 70%);
    text-align: center;
}

.tx_about-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #95b6fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tx_about-subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 60px;
    color: var(--text-gray);
}

.tx_about-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 60px;
}

.tx_stat {
    text-align: center;
}

.tx_stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: 'Jost', sans-serif;
    margin-bottom: 10px;
}

.tx_stat-label {
    color: var(--text-light);
    font-size: 1.1rem;
}


.tx_mission-vision {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

.tx_mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.tx_mission-card,
.tx_vision-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tx_mission-card:hover,
.tx_vision-card:hover {
    transform: translateY(-10px);
}

.tx_mission-card::before,
.tx_vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
}

.tx_mission-icon,
.tx_vision-icon {
    width: 80px;
    height: 80px;
    background: rgba(149, 182, 251, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: var(--accent-color);
    font-size: 2rem;
}

.tx_mission-card h3,
.tx_vision-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.tx_mission-card p,
.tx_vision-card p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.tx_mission-list,
.tx_vision-list {
    list-style: none;
    text-align: left;
}

.tx_mission-list li,
.tx_vision-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.tx_mission-list i,
.tx_vision-list i {
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--accent-color);
}


.tx_technology {
    padding: 100px 0;
}

.tx_tech-header {
    text-align: center;
    margin-bottom: 60px;
}

.tx_tech-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.tx_tech-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-gray);
}

.tx_tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.tx_tech-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tx_tech-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(149, 182, 251, 0.2);
}

.tx_tech-icon {
    width: 70px;
    height: 70px;
    background: rgba(149, 182, 251, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--accent-color);
    font-size: 1.8rem;
}

.tx_tech-item h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}


@media (max-width: 992px) {
    .tx_about-title {
        font-size: 2.8rem;
    }

    .tx_mission-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .tx_tech-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .tx_about-title {
        font-size: 2.2rem;
    }

    .tx_about-stats {
        flex-direction: column;
        gap: 40px;
    }

    .tx_mission-card,
    .tx_vision-card {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .tx_about-title {
        font-size: 1.8rem;
    }

    .tx_about-subtitle {
        font-size: 1.1rem;
    }

    .tx_stat-number {
        font-size: 2.5rem;
    }
}


.tx_contact-hero {
    padding: 150px 0 80px;
    background: radial-gradient(circle at 50% 50%, rgba(149, 182, 251, 0.1) 0%, rgba(1, 0, 6, 0) 70%);
    text-align: center;
}

.tx_contact-header h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #95b6fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tx_contact-header p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-gray);
}


.tx_contact-info {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.tx_contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.tx_contact-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tx_contact-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(149, 182, 251, 0.2);
}

.tx_contact-icon {
    width: 70px;
    height: 70px;
    background: rgba(149, 182, 251, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--accent-color);
    font-size: 1.8rem;
}

.tx_contact-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.tx_contact-card p {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-light);
}

.tx_contact-card small {
    color: var(--text-gray);
    font-size: 0.9rem;
}


.tx_contact-form-section {
    padding: 100px 0;
}

.tx_form-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    padding: 60px 50px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tx_form-header {
    text-align: center;
    margin-bottom: 50px;
}

.tx_form-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.tx_form-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.tx_contact-form {
    display: block;
}

.tx_form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 25px;
}

.tx_form-group {
    margin-bottom: 25px;
}

.tx_form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-light);
    font-weight: 500;
    display: flex;
    align-items: center;
}

.tx_form-group input,
.tx_form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-light);
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.tx_form-group input:focus,
.tx_form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.08);
}

.tx_form-group textarea {
    resize: vertical;
    min-height: 120px;
}


.tx_checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: normal;
}

.tx_checkbox input {
    display: none;
}

.tx_checkmark {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
    transition: all 0.3s ease;
}

.tx_checkbox input:checked+.tx_checkmark {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.tx_checkbox input:checked+.tx_checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--bg-color);
    font-weight: bold;
    font-size: 12px;
}


.tx_submit-btn {
    position: relative;
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    margin-top: 10px;
}

.tx_btn-loader {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.tx_submit-btn.loading .tx_btn-text {
    opacity: 0;
}

.tx_submit-btn.loading .tx_btn-loader {
    display: block;
}


.tx_thank-you-message {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.tx_success-icon {
    width: 80px;
    height: 80px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #4CAF50;
    font-size: 2.5rem;
}

.tx_thank-you-message h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.tx_thank-you-message p {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 400px;
    margin: 0 auto;
}


@media (max-width: 992px) {
    .tx_contact-header h1 {
        font-size: 2.8rem;
    }

    .tx_contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }

    .tx_form-container {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .tx_contact-header h1 {
        font-size: 2.2rem;
    }

    .tx_form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .tx_form-container {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .tx_contact-header h1 {
        font-size: 1.8rem;
    }

    .tx_contact-header p {
        font-size: 1.1rem;
    }

    .tx_form-header h2 {
        font-size: 2rem;
    }
}


.tx_legal-page {
    padding: 150px 0 100px;
    min-height: 100vh;
    background: var(--bg-color);
}

.tx_legal-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tx_legal-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #95b6fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tx_last-updated {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.tx_legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.tx_legal-section {
    margin-bottom: 50px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tx_legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.tx_legal-section h3 {
    font-size: 1.4rem;
    margin: 25px 0 15px;
    color: var(--text-light);
}

.tx_legal-section p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.tx_legal-section ul {
    margin: 20px 0;
    padding-left: 20px;
}

.tx_legal-section li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.tx_legal-section strong {
    color: var(--text-light);
}

.tx_cookie-type {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border-left: 3px solid var(--accent-color);
}

.tx_browser-instructions {
    background: rgba(149, 182, 251, 0.05);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.tx_contact-info {
    background: rgba(149, 182, 251, 0.05);
    padding: 25px;
    border-radius: 10px;
    margin-top: 20px;
}

.tx_contact-info p {
    margin-bottom: 10px;
}


@media (max-width: 768px) {
    .tx_legal-page {
        padding: 130px 0 60px;
    }

    .tx_legal-header h1 {
        font-size: 2.2rem;
    }

    .tx_legal-section {
        padding: 20px;
        margin-bottom: 30px;
    }

    .tx_legal-section h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .tx_legal-header h1 {
        font-size: 1.8rem;
    }
}

.tx_services-detailed {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

.tx_services-header {
    text-align: center;
    margin-bottom: 60px;
}

.tx_services-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #95b6fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tx_services-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-gray);
}

.tx_services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.tx_service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tx_service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tx_service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(149, 182, 251, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.tx_service-card:hover::before {
    transform: scaleX(1);
}

.tx_service-icon {
    width: 70px;
    height: 70px;
    background: rgba(149, 182, 251, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--accent-color);
    font-size: 1.8rem;
}

.tx_service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.tx_service-card p {
    margin-bottom: 25px;
    line-height: 1.6;
    color: var(--text-gray);
}

.tx_service-features {
    list-style: none;
    margin-bottom: 30px;
}

.tx_service-features li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: var(--text-gray);
}

.tx_service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.tx_service-cta {
    text-align: center;
}

.tx_btn-outline {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.tx_btn-outline:hover {
    background: var(--accent-color);
    color: var(--bg-color);
}


.tx_creation-steps {
    padding: 100px 0;
    background: var(--bg-color);
}

.tx_steps-header {
    text-align: center;
    margin-bottom: 80px;
}

.tx_steps-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #95b6fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tx_steps-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-gray);
}

.tx_steps-timeline {
    max-width: 900px;
    margin: 0 auto 80px;
    position: relative;
}

.tx_steps-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50px;
    width: 2px;
    background: linear-gradient(to bottom,
        transparent 0%,
        var(--accent-color) 15%,
        var(--accent-color) 85%,
        transparent 100%);
    z-index: 1;
}

.tx_step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.tx_step-number {
    width: 100px;
    height: 100px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 40px;
    flex-shrink: 0;
    position: relative;
    z-index: 3;
}

.tx_step-number span {
    font-size: 2rem;
    font-weight: 700;
    color: var(--bg-color);
    font-family: 'Jost', sans-serif;
}

.tx_step-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.tx_step:hover .tx_step-content {
    transform: translateX(10px);
    border-color: rgba(149, 182, 251, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.tx_step-icon {
    width: 60px;
    height: 60px;
    background: rgba(149, 182, 251, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--accent-color);
    font-size: 1.5rem;
}

.tx_step-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.tx_step-content p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: var(--text-gray);
}

.tx_step-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.tx_step-features li {
    padding: 8px 15px;
    background: rgba(149, 182, 251, 0.05);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-gray);
    border: 1px solid rgba(149, 182, 251, 0.1);
}

.tx_steps-cta {
    text-align: center;
    background: rgba(149, 182, 251, 0.05);
    padding: 60px 40px;
    border-radius: 20px;
    border: 1px solid rgba(149, 182, 251, 0.1);
}

.tx_cta-content h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.tx_cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-gray);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.tx_cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}


@media (max-width: 992px) {
    .tx_services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .tx_steps-timeline::before {
        left: 40px;
    }

    .tx_step-number {
        width: 80px;
        height: 80px;
        margin-right: 30px;
    }

    .tx_step-number span {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {

    .tx_services-header h2,
    .tx_steps-header h2 {
        font-size: 2.2rem;
    }

    .tx_step {
        flex-direction: column;
        text-align: center;
    }

    .tx_step-number {
        margin-right: 0;
        margin-bottom: 20px;
        align-self: center;
    }

    .tx_steps-timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .tx_step-features {
        grid-template-columns: 1fr;
    }

    .tx_cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .tx_cta-buttons .tx_btn {
        width: 100%;
        max-width: 250px;
    }
    .tx_steps-timeline::before{
        display: none;
    }
    .tx_step-number{
        width: 50px;
        height: 50px;
    }
    .tx_step-number span{
        font-size: 18px;
    }
}

@media (max-width: 576px) {

    .tx_services-header h2,
    .tx_steps-header h2 {
        font-size: 1.8rem;
    }

    .tx_services-grid {
        grid-template-columns: 1fr;
    }

    .tx_service-card {
        padding: 30px 20px;
    }

    .tx_step-content {
        padding: 20px;
    }

    .tx_steps-cta {
        padding: 40px 20px;
    }

    .tx_cta-content h3 {
        font-size: 1.8rem;
    }
}














































@media (max-width: 992px) {
    .tx_banner-title {
        font-size: 2.8rem;
    }

    .tx_banner-content {
        flex-direction: column;
        text-align: center;
    }

    .tx_banner-text {
        margin-bottom: 50px;
    }

    .tx_about-inner {
        flex-direction: column;
    }

    .tx_about-content {
        margin-bottom: 50px;
    }

    .tx_why-us {
        margin-left: 0;
    }

    .tx_service {
        flex-direction: column;
    }

    .tx_service:nth-child(even) {
        flex-direction: column;
    }

    .tx_service-content {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 40px;
    }

    .tx_testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tx_footer-main {
        flex-direction: column;
    }

    .tx_footer-about {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .tx_menu-toggle {
        display: block;
    }

    .tx_nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--bg-color);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }

    .tx_nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .tx_nav-list {
        flex-direction: column;
        width: 100%;
    }

    .tx_nav-item {
        margin: 0 0 15px 0;
        width: 100%;
    }

    .tx_nav-link {
        display: block;
        padding: 10px 0;
    }

    .tx_banner-title {
        font-size: 2.2rem;
    }

    .tx_testimonials-grid {
        grid-template-columns: 1fr;
    }

    .tx_footer-links {
        flex-direction: column;
    }

    .tx_footer-column {
        margin-bottom: 30px;
    }

    .tx_footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .tx_footer-legal {
        margin-top: 15px;
    }

    .tx_footer-legal a {
        margin: 0 10px;
    }

    .tx_service:nth-child(even) .tx_service-content,
    .tx_service-content {
        margin: 20px 0 0 0;
    }
}

@media (max-width: 576px) {
    .tx_banner-title {
        font-size: 1.8rem;
    }

    .tx_banner-subtitle {
        font-size: 1.5rem;
    }

    .tx_section-title {
        font-size: 2rem;
    }

    .tx_cta-title {
        font-size: 2rem;
    }

    .tx_cookie-popup {
        left: 10px;
        right: 10px;
    }

    .tx_about {
        padding: 50px 0 30px 0;
    }

    .tx_services {
        padding: 40px 0 30px 0;
    }

    .tx_cta {
        padding: 50px 0;
    }

}