/* ClassHub Legal Documents Stylesheet */
/* Used for: Privacy Policy, Terms of Service (English & Japanese) */

/* Base Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9fafb;
}

/* Japanese documents need slightly more line-height for readability */
html[lang="ja"] body {
    line-height: 1.8;
}

/* Container */
.container {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Headings */
h1 {
    color: #1a202c;
    border-bottom: 3px solid #10b981;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

h2 {
    color: #2d3748;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5em;
}

h3 {
    color: #4a5568;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.2em;
}

h4 {
    color: #4a5568;
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 1.1em;
}

/* Text Elements */
p {
    margin-bottom: 15px;
}

strong {
    color: #1a202c;
}

/* Lists */
ul,
ol {
    margin-bottom: 15px;
    padding-left: 30px;
}

li {
    margin-bottom: 8px;
}

/* Links */
a {
    color: #10b981;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Callout Boxes */
.important {
    background-color: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 15px;
    margin: 20px 0;
}

.note {
    background-color: #dbeafe;
    border-left: 4px solid #3b82f6;
    padding: 15px;
    margin: 20px 0;
}

.geographic-notice {
    background-color: #fce7f3;
    border-left: 4px solid #ec4899;
    padding: 15px;
    margin: 20px 0;
    font-weight: 500;
}

/* Metadata */
.last-updated {
    color: #6b7280;
    font-style: italic;
    margin-bottom: 30px;
}

/* Contact Information Box (Privacy Policy) */
.contact-info {
    background-color: #f3f4f6;
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
}