.terms-section {
    background: white;
    padding: 120px 40px 80px;
    min-height: 100vh;
}

.terms-container {
    max-width: 800px;
    margin: 0 auto;
}

.terms-title {
    font-size: 96px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #333;
    margin-bottom: 60px;
    text-align: center;
}

.terms-content {
    color: #333;
}

.terms-section-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #333;
    margin: 40px 0 20px 0;
}

.terms-text {
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #666;
    margin-bottom: 20px;
}

.terms-list {
    margin: 20px 0;
    padding-left: 20px;
}

.terms-list li {
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #666;
    margin-bottom: 10px;
}

.terms-highlight {
    color: #333;
    background: rgba(0, 0, 0, 0.05);
    padding: 2px 6px;
    border-radius: 4px;
}

.terms-date {
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #999;
    text-align: center;
    margin-bottom: 40px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #999;
    text-decoration: none;
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
    margin-bottom: 40px;
}

.back-link:hover {
    color: #333;
}

.back-arrow {
    width: 16px;
    height: 16px;
    transform: rotate(-90deg);
    filter: brightness(0) saturate(100%) invert(75%) sepia(16%) saturate(0%) hue-rotate(227deg) brightness(85%) contrast(85%);
    transition: filter 0.3s ease;
}

.back-link:hover .back-arrow {
    filter: brightness(0) saturate(100%) invert(20%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(100%);
}

@media (max-width: 768px) {
    .terms-section {
        padding: 100px 20px 60px;
    }

    .terms-title {
        font-size: 64px;
        line-height: 1;
        letter-spacing: -0.01em;
        margin-bottom: 40px;
    }

    .terms-section-title {
        font-size: 24px;
        line-height: 1;
        letter-spacing: -0.01em;
    }

    .terms-text,
    .terms-list li {
        font-size: 16px;
        line-height: 1;
        letter-spacing: -0.01em;
    }

    .back-link {
        font-size: 16px;
        line-height: 1;
        letter-spacing: -0.01em;
    }
}

@media (max-width: 480px) {
    .terms-title {
        font-size: 48px;
        line-height: 1;
    }

    .terms-section-title {
        font-size: 20px;
        line-height: 1;
    }

    .terms-text,
    .terms-list li,
    .back-link {
        font-size: 14px;
        line-height: 1;
    }
}