* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #333333;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
    background-color: #ffffff;
}

.legal-header {
    padding: 60px 24px 40px;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    text-align: center;
}

.legal-header h1 {
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.effective-date {
    font-size: 14px;
    color: #666666;
    font-weight: 400;
}

.legal-content {
    padding: 48px 24px 80px;
}

.legal-section {
    margin-bottom: 48px;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.intro-text {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 32px;
}

.legal-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    margin-top: 0;
    letter-spacing: -0.3px;
}

.legal-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 16px;
    margin-top: 28px;
    letter-spacing: -0.2px;
}

.legal-section p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 16px;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 16px;
}

.legal-section ul li {
    font-size: 15px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.legal-section ul li::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #1a9b8e;
    font-weight: 600;
}

.legal-section ul li strong {
    color: #1a1a1a;
    font-weight: 600;
}

.legal-section strong {
    color: #1a1a1a;
    font-weight: 600;
}

.legal-footer {
    padding: 32px 24px;
    background-color: #000000;
    text-align: center;
    color: #ffffff;
}

.legal-footer p {
    font-size: 14px;
    color: #999999;
    margin: 0;
}

@media (max-width: 768px) {
    .legal-header {
        padding: 40px 20px 32px;
    }

    .legal-header h1 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .effective-date {
        font-size: 13px;
    }

    .legal-content {
        padding: 36px 20px 60px;
    }

    .legal-section {
        margin-bottom: 40px;
    }

    .intro-text {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .legal-section h2 {
        font-size: 22px;
        margin-bottom: 18px;
    }

    .legal-section h3 {
        font-size: 17px;
        margin-bottom: 14px;
        margin-top: 24px;
    }

    .legal-section p {
        font-size: 14px;
        margin-bottom: 14px;
    }

    .legal-section ul li {
        font-size: 14px;
        margin-bottom: 10px;
        padding-left: 20px;
    }

    .legal-section ul li::before {
        left: 6px;
    }

    .legal-footer {
        padding: 28px 20px;
    }

    .legal-footer p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .legal-header {
        padding: 32px 16px 24px;
    }

    .legal-header h1 {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .effective-date {
        font-size: 12px;
    }

    .legal-content {
        padding: 28px 16px 48px;
    }

    .legal-section {
        margin-bottom: 32px;
    }

    .intro-text {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .legal-section h2 {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .legal-section h3 {
        font-size: 16px;
        margin-bottom: 12px;
        margin-top: 20px;
    }

    .legal-section p {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .legal-section ul li {
        font-size: 14px;
        margin-bottom: 10px;
        padding-left: 18px;
    }

    .legal-section ul li::before {
        left: 4px;
    }

    .legal-footer {
        padding: 24px 16px;
    }

    .legal-footer p {
        font-size: 12px;
    }
}

@media (min-width: 769px) {
    .legal-container {
        box-shadow: 0 0 1px rgba(0, 0, 0, 0.05);
    }

    .legal-header {
        padding: 80px 40px 48px;
    }

    .legal-content {
        padding: 56px 40px 96px;
    }
}