* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000000 url('../image/body.png') center;
    font-family: 'Inter Tight', sans-serif;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5 {
    line-height: 1.22;
    font-weight: 500 !important;
}

.td_container {
    max-width: 1176px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}


.td_title {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.td_text {
    font-family: 'Inter Tight', sans-serif;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    font-weight: 400;
}


.td_subtitle {
    display: inline-block;
    padding: 6px 7.3px 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: #fff;
    box-shadow: inset 2px 0 16px #ffa7a74d, inset 10px 0 14px #ebbebe0d;
    margin-bottom: 18px;
    background: transparent;
}


.td_btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    font-family: 'Inter Tight', sans-serif;
    border: none;
}


.td_btn-primary {
    background: linear-gradient(105deg, #ff640d, #ab2020);
    color: white;
    box-shadow: 0 8px 18px rgba(171, 32, 32, 0.3);
}

.td_btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(171, 32, 32, 0.4);
}

.td_btn-primary::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M16.172 11l-5.364-5.364 1.414-1.414L20 12l-7.778 7.778-1.414-1.414L16.172 13H4v-2z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.2s;
}

.td_btn-primary:hover::before {
    transform: translateX(4px);
}


.td_btn-secondary {
    background: #ffffff;
    color: #ab2020;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.td_btn-secondary:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
}

.td_btn-secondary::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ab2020'%3E%3Cpath d='M16.172 11l-5.364-5.364 1.414-1.414L20 12l-7.778 7.778-1.414-1.414L16.172 13H4v-2z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.2s;
}

.td_btn-secondary:hover::after {
    transform: translateX(4px);
}


.td_icon-circle {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ff640d, #ab2020);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.td_icon-circle img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}


.td_block {
    background: url('../image/block.jpg') center/cover no-repeat;
    border-radius: 24px;
}

.td_block2 {
    background: url('../image/block2.jpg') center/cover no-repeat;
    border-radius: 24px;
}


.td_header {
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 28px 0 20px;
    background: transparent;
}

.td_navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.td_logo a {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    font-family: 'Inter Tight', sans-serif;
    color: #ffffff;
}

.td_logo img {
    height: 42px;
    width: auto;
    margin-top: -2px;
}

.td_menu {
    display: flex;
    gap: 36px;
    align-items: center;
}

.td_menu a {
    text-decoration: none;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    transition: 0.2s;
}

.td_menu a:hover {
    color: #ffb48a;
}

.td_menu .td_btn-contact {
    background: linear-gradient(105deg, #ff640d, #ab2020);

    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 600;
}

.td_mobile-toggle {
    display: none;
    font-size: 30px;
    color: white;
    cursor: pointer;
}


.td_hero {
    background: linear-gradient(110deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)), url('../image/hero.jpg') center top/cover no-repeat;
    min-height: 720px;
    display: flex;
    align-items: center;
    border-radius: 0 0 48px 48px;
    position: relative;
    margin: 0;
}

.td_hero-content {
    max-width: 720px;
    padding: 120px 0 100px;
}

.td_hero .td_title {
    font-size: 58px;
    line-height: 1.1;
    margin: 20px 0 24px;
}

.td_hero .td_text {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 560px;
}

.td_btn-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}


.td_benefits-grid {
    display: flex;
    gap: 30px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.td_benefit-item {
    flex: 1;
    background: #000 url('../image/block2.jpg') center top no-repeat;
    background-size: cover;
    border-radius: 10px;
    padding: 32px 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.td_benefit-item h3 {
    font-family: 'Inter Tight', sans-serif;
    font-size: 24px;
    margin: 20px 0 12px;
    color: #fff;
    font-weight: 700;
}

.td_benefit-item p {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter Tight', sans-serif;
}


.td_about-grid {
    display: flex;
    gap: 56px;
    align-items: center;
    flex-wrap: wrap;
    padding: 100px 0;
}

.td_about-left {
    flex: 1;
}

.td_about-left img {
    width: 100%;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    object-fit: cover;
}

.td_about-right {
    flex: 1;
}

.td_about-right .td_text {
    margin-bottom: 20px;
}

.td_section-title {
    font-size: 40px;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}


.td_program-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.td_program-featured {
    flex: 0 0 40%;
    border-radius: 24px;
    padding: 32px;
    background: url('../image/block.jpg') center top no-repeat;
    background-size: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.td_program-featured h3 {
    font-size: 28px;
    margin-bottom: 14px;
    color: #ffffff;
}

.td_program-featured p {
    color: rgba(255, 255, 255, 0.85);
}

.td_program-featured a {
    text-decoration: none;
    font-weight: 300;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
}

.td_program-list {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.td_program-card {
    flex: 1 1 calc(50% - 12px);
    background: url('../image/block.jpg') center top no-repeat;
    background-size: cover;
    border-radius: 10px;
    padding: 28px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.td_program-card h3 {
    margin: 16px 0 10px;
    color: #fff;
    font-size: 22px;
}

.td_program-card p {
    color: rgba(255, 255, 255, 0.7);
}

.td_program-card a {
    text-decoration: none;
    font-weight: 300;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
}


.td_metrics {
    display: flex;
    justify-content: space-between;
    border-radius: 28px;
    padding: 48px 40px;
    margin: 90px 0;
    flex-wrap: wrap;
}

.td_metric-item {
    text-align: center;
    flex: 1;
    position: relative;
}

.td_metric-number {
    font-size: 48px;
    font-weight: 800;
    color: #ff640d;
    font-family: 'Inter Tight', sans-serif;
    line-height: 1.1;
}

.td_metric-label {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    margin-top: 8px;
}

.td_divider-v {
    width: 1px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.02), #c0b7ac, rgba(0, 0, 0, 0.02));
    margin: 0 20px;
}


.td_suits-header {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.td_suits-left {
    flex: 1;
}

.td_suits-right {
    flex: 1;
}

.td_suits-grid {
    display: flex;
    gap: 28px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.td_suit-card {
    flex: 1;
    background: url('../image/block2.jpg') center top no-repeat;
    background-size: cover;
    border-radius: 20px;
    padding: 28px 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.td_suit-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #fff;
}

.td_suit-card p {
    color: rgba(255, 255, 255, 0.7);
}


.td_cta {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.55)), url('../image/cta.jpg') center/cover no-repeat;
    border-radius: 48px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 80px 48px;
    text-align: center;
    margin: 90px 0;
}

.td_cta .td_title {
    font-size: 44px;
}

.td_cta .td_text {
    max-width: 540px;
    margin: 20px auto 32px;
}


.td_footer {
    padding: 60px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.td_footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 48px;
}

.td_footer-logo-col {
    max-width: 280px;
}

.td_footer-logo-col p {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.td_footer-links {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.td_footer-links-col a {
    display: block;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    font-weight: 500;
}

.td_footer-contacts p {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
}

.td_footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

.td_footer-bottom a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 28px;
}

.td_footer-bottom-left a {
    margin-left: 0;
    margin-right: 28px;
}

.td_contact-page {
    background: #000000;
    font-family: 'Inter Tight', sans-serif;
}


.td_page-header {
    position: relative;
    padding-top: 140px;
    padding-bottom: 60px;
    text-align: center;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, #000000 100%);
}

.td_breadcrumbs {
    margin-bottom: 20px;
}

.td_breadcrumbs a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.td_breadcrumbs a:hover {
    color: #ff8a4a;
}

.td_breadcrumbs span {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 8px;
}

.td_breadcrumbs .td_current {
    color: #ff8a4a;
}

.td_page-title {
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin-top: 8px;
}


.td_contact-info-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.td_info-card {
    flex: 1;
    background: url('../image/block.jpg') center top no-repeat;
    background-size: cover;
    border-radius: 24px;
    padding: 40px 28px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.td_info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.2);
}

.td_info-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #ff640d, #ab2020);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.td_info-icon svg {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

.td_info-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.td_info-card p {
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
}

.td_info-card a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.td_info-card a:hover {
    text-decoration: underline;
}


.td_form-section {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 32px;
    padding: 48px;
    margin-bottom: 80px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.td_form-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    text-align: center;
}

.td_form-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
}

.td_form-row {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.td_form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.td_form-group label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.td_form-group input,
.td_form-group select,
.td_form-group textarea {
    background: #111;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 14px 18px;
    font-family: 'Inter Tight', sans-serif;
    font-size: 15px;
    transition: all 0.2s;
    color: #fff;
    outline: none;
}

.td_form-group input:focus,
.td_form-group select:focus,
.td_form-group textarea:focus {
    border-color: #ff640d;
    box-shadow: 0 0 0 3px rgba(255, 100, 13, 0.2);
}

.td_form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.td_form-btn {
    background: linear-gradient(105deg, #ff640d, #ab2020);
    color: white;
    border: none;
    padding: 14px 36px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.td_form-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(171, 32, 32, 0.3);
}

.td_form-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.td_form-submit-wrap {
    text-align: center;
    margin-top: 16px;
}


.td_popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.2s, opacity 0.2s;
}

.td_popup-overlay.td_active {
    visibility: visible;
    opacity: 1;
}

.td_popup {
    background: url('../image/block2.jpg') center top no-repeat;
    background-size: cover;
    border-radius: 32px;
    padding: 48px 40px;
    max-width: 460px;
    width: 90%;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.25s ease;
}

.td_popup-overlay.td_active .td_popup {
    transform: scale(1);
}

.td_popup-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #ff640d, #ab2020);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.td_popup-icon svg {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.td_popup h3 {
    font-size: 28px;
    font-weight: 700;
    color: #ffff;
    margin-bottom: 12px;
}

.td_popup p {
    color: #fff;
    margin-bottom: 28px;
    font-size: 16px;
}

.td_popup-close {
    background: linear-gradient(105deg, #ff640d, #ab2020);
    color: #fff;
    border: none;
    padding: 12px 32px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter Tight', sans-serif;
}


@media (max-width: 768px) {
    .td_page-title {
        font-size: 40px;
    }

    .td_form-section {
        padding: 28px;
    }

    .td_info-card {
        padding: 28px 20px;
    }

    .td_form-row {
        flex-direction: column;
        gap: 18px;
    }
}


.td_about-page {
    background: #000000;
    font-family: 'Inter Tight', sans-serif;
}


.td_page-header {
    position: relative;
    padding-top: 140px;
    padding-bottom: 60px;
    text-align: center;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, #000000 100%);
}

.td_breadcrumbs {
    margin-bottom: 20px;
}

.td_breadcrumbs a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.td_breadcrumbs a:hover {
    color: #ff8a4a;
}

.td_breadcrumbs span {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 8px;
}

.td_breadcrumbs .td_current {
    color: #ff8a4a;
}

.td_page-title {
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin-top: 8px;
}


.td_container {
    max-width: 1176px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}


.td_about-section {
    padding: 80px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.td_about-section:last-of-type {
    border-bottom: none;
}

.td_about-grid {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.td_about-grid.td_reverse {
    flex-direction: row-reverse;
}

.td_about-content {
    flex: 1;
}

.td_about-image {
    flex: 1;
}

.td_about-image img {
    width: 100%;
    border-radius: 28px;
    object-fit: cover;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.td_about-image img:hover {
    transform: scale(1.02);
}



.td_section-title {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.td_text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 17px;
    margin-bottom: 20px;
}

.td_text:last-child {
    margin-bottom: 0;
}

.td_highlight {
    color: #ff8a4a;
    font-weight: 600;
}


.td_stats-row {
    display: flex;
    gap: 40px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.td_stat-item {
    flex: 1;
}

.td_stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #ff640d;
    font-family: 'Inter Tight', sans-serif;
}

.td_stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 6px;
}


.td_btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.25s ease;
    font-family: 'Inter Tight', sans-serif;
    margin-top: 20px;
}

.td_btn-primary {
    background: linear-gradient(105deg, #ff640d, #ab2020);
    color: white;
}

.td_btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(171, 32, 32, 0.3);
}

.td_btn-primary::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M16.172 11l-5.364-5.364 1.414-1.414L20 12l-7.778 7.778-1.414-1.414L16.172 13H4v-2z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}


@media (max-width: 992px) {
    .td_page-title {
        font-size: 42px;
    }

    .td_section-title {
        font-size: 32px;
    }

    .td_about-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {

    .td_about-grid,
    .td_about-grid.td_reverse {
        flex-direction: column;
    }

    .td_about-section {
        padding: 50px 0;
    }

    .td_stats-row {
        gap: 24px;
    }
}







.td_programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 60px 0 80px;
}

.td_program-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.2);
}

.td_program-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #ff640d, #ab2020);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.td_program-icon svg {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
}

.td_program-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.td_program-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 20px;
}

.td_program-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 600;
    color: #ab2020;
    font-size: 15px;
    transition: gap 0.2s;
}

.td_program-link:hover {
    gap: 12px;
}

.td_program-link::after {
    content: "→";
    font-size: 18px;
}

@media (max-width: 992px) {
    .td_page-title {
        font-size: 42px;
    }

    .td_section-title {
        font-size: 34px;
    }

    .td_programs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .td_cta .td_title {
        font-size: 36px;
    }
}

@media (max-width: 680px) {
    .td_programs-grid {
        grid-template-columns: 1fr;
    }

    .td_cta {
        padding: 50px 24px;
    }

    .td_cta .td_title {
        font-size: 28px;
    }

    .td_section-title {
        font-size: 28px;
    }
}



.td_legal-content {
    padding: 60px 0 80px;
}

.td_legal-section {
    margin-bottom: 40px;
}

.td_legal-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.td_legal-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ff8a4a;
    margin: 24px 0 12px;
}

.td_legal-section p {
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.td_legal-section ul {
    margin: 16px 0 20px 24px;
}

.td_legal-section li {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}






























@media (max-width: 992px) {
    .td_menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: #0a0a0af2;
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 32px;
        transition: 0.3s;
        z-index: 200;
    }

    .td_menu.active {
        left: 0;
    }

    .td_mobile-toggle {
        display: block;
        z-index: 210;
    }

    .td_hero .td_title {
        font-size: 42px;
    }

    .td_program-featured {
        flex: 0 0 100%;
    }

    .td_metrics {
        flex-direction: column;
        gap: 32px;
    }

    .td_divider-v {
        display: none;
    }
}

@media (max-width: 680px) {
    .td_hero .td_title {
        font-size: 36px;
    }

    .td_btn-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .td_cta .td_title {
        font-size: 32px;
    }

    .td_about-grid {
        flex-direction: column;
    }

    .td_section-title {
        font-size: 36px;
    }

    .td_program-featured {
        padding: 28px 20px;
        border-radius: 10px;
    }

    .td_suits-header {
        flex-direction: column;
        gap: 20px;
    }

    .td_cta {
        border-radius: 20px;
        padding: 30px 20px;
    }

    .td_footer-bottom a {
        margin: 0 20px 0 0;
    }

    .td_hero .td_text {
        font-size: 16px;
    }

    .td_contact-info-grid {
        flex-direction: column;
    }
}

section {
    margin: 80px 0;
}