/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, #f8f5f0 0%, #f0ebe5 100%);
    padding: 24px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.logo {
    flex-shrink: 0;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.brand-name a {
    color: #C41E3A;
    text-decoration: none;
    letter-spacing: 0.05em;
}

.brand-name a:hover {
    color: #a01729;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
    padding: 80px 0;
}

.main-content h1 {
    font-size: 2.5rem;
    color: #2c1810;
    text-align: center;
    margin-bottom: 48px;
    font-weight: 600;
}

/* About Page Specific Styles */
.about-section,
.values-section,
.experience-section {
    margin-bottom: 64px;
}

.about-section h2,
.values-section h2,
.experience-section h2 {
    font-size: 2rem;
    color: #C41E3A;
    margin-bottom: 32px;
    font-weight: 600;
}

.content-block {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border-left: 4px solid #FFD700;
}

.content-block p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 24px;
}

.content-block p:last-of-type {
    margin-bottom: 32px;
}

.content-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    margin-top: 24px;
}

/* Policy Content Styles */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-section {
    background: #fff;
    padding: 32px;
    margin-bottom: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border-left: 4px solid #FFD700;
}

.policy-section h2 {
    font-size: 1.5rem;
    color: #C41E3A;
    margin-bottom: 16px;
    font-weight: 600;
    text-align: left;
}

.policy-section p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 16px;
}

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

.contact-details {
    background: #f8f5f0;
    padding: 20px;
    border-radius: 8px;
    margin-top: 16px;
}

.contact-details p {
    margin-bottom: 8px;
    color: #333;
}

.contact-details p:last-child {
    margin-bottom: 0;
}

/* SVG Illustrations for About Page */
.svg-illustration {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.svg-illustration svg {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Content Placeholder for Policy Pages */
.content-placeholder {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border-left: 4px solid #FFD700;
    max-width: 800px;
    margin: 0 auto;
}

.content-placeholder p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.content-placeholder p:last-child {
    margin-bottom: 0;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 40px 0 20px;
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand {
    font-size: 1.2rem;
    font-weight: 600;
    color: #C41E3A;
}

.footer-links {
    display: flex;
    gap: 32px;
}

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

.footer-links a:hover {
    color: #FFD700;
}

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

.footer-bottom p {
    color: #999;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .main-content {
        padding: 60px 0;
    }
    
    .main-content h1 {
        font-size: 2rem;
    }
    
    .about-section h2,
    .values-section h2,
    .experience-section h2 {
        font-size: 1.6rem;
    }
    
    .content-block {
        padding: 24px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .header {
        padding: 16px 0;
    }
    
    .brand-name {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .content-placeholder,
    .content-block {
        padding: 20px;
    }
}