/* Auxiliary pages CSS */
/* This file contains styles specific to About Us, Privacy Policy, Terms of Service, and Cookie Policy pages */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&family=Noto+Serif+JP:wght@400;500;700&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --yuzu-yellow: #FFD700;
    --indigo-blue: #4B0082;
    --charcoal-black: #333333;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --text-light: #666666;
}

body {
    font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
    line-height: 1.6;
    color: var(--charcoal-black);
    background-color: var(--white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-name {
    font-family: 'Noto Serif JP', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--charcoal-black);
    text-decoration: none;
}

.brand-name:hover {
    color: var(--indigo-blue);
}

/* Navigation */
.nav-links {
    margin-top: 15px;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    margin-right: 20px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--indigo-blue);
}

/* Main content */
.main-content {
    flex: 1;
    padding: 80px 0;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--charcoal-black);
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Content sections */
.content-section {
    margin-bottom: 50px;
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.section-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--charcoal-black);
    margin-bottom: 25px;
    border-left: 4px solid var(--yuzu-yellow);
    padding-left: 20px;
}

.section-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--charcoal-black);
}

.section-content p {
    margin-bottom: 20px;
}

.section-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--charcoal-black);
    margin: 25px 0 15px 0;
}

.section-content ul {
    margin: 20px 0 20px 30px;
}

.section-content li {
    margin-bottom: 10px;
}

.section-content a {
    color: var(--indigo-blue);
    text-decoration: none;
}

.section-content a:hover {
    text-decoration: underline;
}

/* Images */
.section-image {
    width: 100%;
    max-width: 600px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    margin: 20px auto;
    display: block;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.company-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* Empty content placeholder */
.empty-content {
    background-color: var(--light-gray);
    padding: 80px 40px;
    text-align: center;
    border-radius: 12px;
    margin: 40px 0;
}

.empty-content h3 {
    font-size: 24px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.empty-content p {
    color: var(--text-light);
    font-style: italic;
}

/* Stats grid for about page */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--light-gray);
    border-radius: 12px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--indigo-blue);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
}

/* Service illustration */
.service-illustration {
    text-align: center;
    margin: 30px 0;
}

.business-illustration {
    text-align: center;
    margin: 20px 0;
}

/* Company info grid */
.company-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 40px 0;
}

.company-item {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 12px;
}

.company-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--charcoal-black);
    margin-bottom: 20px;
}

.company-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: var(--charcoal-black);
    color: var(--white);
    padding: 60px 0 20px;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--yuzu-yellow);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--yuzu-yellow);
}

.footer-section .logo-section {
    margin-bottom: 20px;
}

.footer-section .brand-name {
    color: var(--white);
    font-size: 20px;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-title {
        font-size: 32px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
    
    .main-content {
        padding: 60px 0;
    }
    
    .content-section {
        padding: 30px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .company-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 40px 0;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 28px;
    }
}