.tf-container {
    padding: 4rem;
    font-family: inherit;
    box-sizing: border-box;
}

.tf-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.tf-section-label {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.tf-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 1rem 0;
}

.tf-title-divider {
    height: 3px;
    width: 80px;
}

.tf-intro {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.tf-cycles {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: stretch;
}

.tf-cycle {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    flex: 1;
}

.tf-cycle-divider {
    width: 1px;
    flex-shrink: 0;
}

.tf-cycle-number {
    font-size: 8rem;
    font-weight: 700;
    line-height: 0.9;
    flex-shrink: 0;
    margin-top: -0.5rem;
}

.tf-cycle-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.tf-cycle-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
}

.tf-cycle-desc {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.tf-cycle-items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.tf-cycle-items li {
    padding: 1rem 0;
    border-top-width: 1px;
    border-top-style: solid;
    font-size: 1rem;
}

.tf-footer {
    padding: 2.5rem 3rem;
    text-align: center;
}

.tf-footer-text {
    font-size: 1.125rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .tf-cycles {
        flex-direction: column;
        gap: 3rem;
    }
    .tf-cycle-divider {
        display: none;
    }
}

@media (max-width: 767px) {
    .tf-container {
        padding: 2rem 1.5rem;
    }
    .tf-main-title {
        font-size: 2.5rem;
    }
    .tf-cycle {
        flex-direction: column;
        gap: 1rem;
    }
    .tf-cycle-number {
        font-size: 5rem;
        margin-top: 0;
    }
}
