.terms_wrapper {
    padding: 40px 0;
    background: #f8f9fa;
    min-height: calc(100vh - 60px);
}

.terms_inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.terms_header {
    text-align: center;
    margin-bottom: 40px;
}

.terms_header h1 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px 0;
}

.terms_last_update {
    font-size: 14px;
    color: #666;
}

.terms_content {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.terms_section {
    margin-bottom: 30px;
}

.terms_section:last-child {
    margin-bottom: 0;
}

.terms_section h2 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px 0;
}

.terms_section p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin: 0 0 15px 0;
}

.terms_section ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.terms_section ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

.terms_section ul li:last-child {
    margin-bottom: 0;
}

.terms_section ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4a90e2;
}

@media (max-width: 768px) {
    .terms_wrapper {
        padding: 20px 0;
    }

    .terms_header h1 {
        font-size: 28px;
    }

    .terms_content {
        padding: 20px;
    }

    .terms_section h2 {
        font-size: 18px;
    }

    .terms_section p,
    .terms_section ul li {
        font-size: 15px;
    }
} 