.tac-page-wrapper {
    font-family: 'Inter', sans-serif;
    background: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.8;
}

.tac-header {
    background: var(--gradient-warm);
    padding: 80px 20px 60px;
    text-align: center;
    border-bottom: 3px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.tac-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(210, 105, 30, 0.08) 0%, transparent 70%);
    animation: tac-float 20s infinite ease-in-out;
}

@keyframes tac-float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, 20px); }
}

.tac-header-icon {
    width: 85px;
    height: 85px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px var(--shadow-medium);
    position: relative;
    z-index: 1;
}

.tac-header-icon i {
    font-size: 2.8rem;
    color: var(--bg-white);
}

.tac-main-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.tac-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.tac-last-updated {
    font-size: 1rem;
    color: var(--text-light);
    font-style: italic;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.tac-intro-box {
    max-width: 900px;
    margin: 30px auto 0;
    background: var(--bg-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow-light);
    border: 2px solid var(--border-light);
    position: relative;
    z-index: 1;
}

.tac-intro-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.9;
    margin-bottom: 15px;
}

.tac-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
}

.tac-important-notice {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-white);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 50px;
    box-shadow: 0 8px 30px var(--shadow-medium);
    border: 3px solid var(--accent-color);
}

.tac-important-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tac-important-text {
    font-size: 1.08rem;
    line-height: 1.8;
    opacity: 0.95;
}

.tac-nav-box {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 50px;
    box-shadow: 0 5px 25px var(--shadow-light);
    border: 2px solid var(--border-light);
}

.tac-nav-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tac-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 12px;
}

.tac-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 18px;
    background: var(--gradient-warm);
    border-radius: 12px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tac-nav-link:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
    transform: translateX(8px);
}

.tac-nav-link i {
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.tac-nav-link:hover i {
    color: var(--bg-white);
}

.tac-section {
    margin-bottom: 55px;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px var(--shadow-light);
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
}

.tac-section:hover {
    box-shadow: 0 10px 35px var(--shadow-medium);
    transform: translateY(-3px);
}

.tac-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--secondary-color);
}

.tac-section-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-warm);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.tac-content-text {
    font-size: 1.08rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.9;
}

.tac-highlight-box {
    background: var(--gradient-warm);
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
    border-left: 5px solid var(--primary-color);
    transition: all 0.3s ease;
}

.tac-highlight-box:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px var(--shadow-light);
}

.tac-highlight-title {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tac-list {
    list-style: none;
    margin: 20px 0;
}

.tac-list-item {
    padding: 18px 22px;
    margin-bottom: 15px;
    background: var(--bg-cream);
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.tac-list-item:hover {
    transform: translateX(10px);
    background: var(--bg-white);
    box-shadow: 0 5px 20px var(--shadow-light);
}

.tac-list-icon {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.tac-list-content {
    flex: 1;
}

.tac-list-title {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.tac-list-text {
    color: var(--text-dark);
    line-height: 1.8;
}

.tac-warning-box {
    background: #FFF3CD;
    border: 2px solid #FFC107;
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
    display: flex;
    gap: 15px;
}

.tac-warning-icon {
    color: #FF9800;
    font-size: 2rem;
    flex-shrink: 0;
}

.tac-warning-content {
    flex: 1;
}

.tac-warning-title {
    font-weight: 700;
    color: #F57C00;
    margin-bottom: 10px;
    font-size: 1.15rem;
}

.tac-warning-text {
    color: var(--text-dark);
    line-height: 1.8;
}

.tac-cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-white);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.tac-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.05) 10px,
        rgba(255, 255, 255, 0.05) 20px
    );
    animation: tac-pattern 15s linear infinite;
}

@keyframes tac-pattern {
    0% { transform: translate(0, 0); }
    100% { transform: translate(40px, 40px); }
}

.tac-cta-content {
    position: relative;
    z-index: 1;
}

.tac-cta-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.tac-cta-text {
    font-size: 1.15rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.tac-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.tac-btn {
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.tac-btn-primary {
    background: var(--bg-white);
    color: var(--primary-color);
}

.tac-btn-primary:hover {
    background: transparent;
    color: var(--bg-white);
    border-color: var(--bg-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.tac-btn-secondary {
    background: transparent;
    color: var(--bg-white);
    border-color: var(--bg-white);
}

.tac-btn-secondary:hover {
    background: var(--bg-white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 968px) {
    .tac-main-title { font-size: 2.5rem; }
    .tac-section { padding: 30px 25px; }
    .tac-section-title { font-size: 1.7rem; }
    .tac-nav-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .tac-header { padding: 60px 20px 40px; }
    .tac-main-title { font-size: 2rem; }
    .tac-container { padding: 40px 15px; }
    .tac-section { padding: 25px 20px; }
    .tac-section-title { 
        font-size: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
    }
    .tac-cta-buttons { flex-direction: column; }
    .tac-btn { width: 100%; justify-content: center; }
    .tac-intro-box { padding: 25px 20px; }
    .tac-important-notice { padding: 25px 20px; }
}