/* Reset and base styles */
@import url('cookie-banner.css');

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

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

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

/* Header */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.logo-section a {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo {
    width: 60px;
    height: 60px;
}

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

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
    padding: 4rem 0;
    background-color: #fff;
}

.main-content h1 {
    font-size: 2.5rem;
    color: #2C5F2D;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.main-content h2 {
    font-size: 1.8rem;
    color: #2C5F2D;
    margin-bottom: 1.5rem;
    font-weight: 600;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #E8F5E8;
}

.main-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

/* Policy sections */
.policy-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #E8F5E8;
}

.policy-section:last-child {
    border-bottom: none;
}

.policy-section h2 {
    font-size: 1.5rem;
    color: #2C5F2D;
    margin-bottom: 1rem;
    font-weight: 600;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #E8F5E8;
}

.policy-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.contact-details {
    background-color: #F8F9FA;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #4A90E2;
    margin-top: 1rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

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

/* About page specific styles */
.centered-content {
    text-align: center;
}

.about-image {
    margin: 2rem 0;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tradition-illustration,
.philosophy-illustration {
    margin: 2rem auto;
    display: flex;
    justify-content: center;
}

.tradition-illustration svg,
.philosophy-illustration svg {
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.main-content section {
    margin-bottom: 3rem;
}

/* Content Placeholder */
.content-placeholder {
    background-color: #f8f8f8;
    border: 2px dashed #ccc;
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 10px;
    margin-top: 2rem;
}

.content-placeholder p {
    color: #666;
    font-size: 1.1rem;
    font-style: italic;
    margin: 0;
}

/* Footer */
.footer {
    background-color: #2C5F2D;
    color: #fff;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #E8F5E8;
    text-decoration: none;
    font-weight: 500;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4A6B4D;
}

.footer-bottom p {
    color: #B8D8BA;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-content h1 {
        font-size: 2rem;
    }
    
    .main-content h2 {
        font-size: 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .content-placeholder {
        padding: 3rem 1rem;
    }
}