/* Auxiliary Pages Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.7;
    color: #333;
    background-color: #fdfdf9;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(143, 188, 143, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 203, 164, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, #fdfdf9 0%, #f9f9f5 100%);
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

/* Header */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(143, 188, 143, 0.2);
    padding: 1rem 0;
}

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

.logo {
    filter: drop-shadow(0 2px 4px rgba(143, 188, 143, 0.2));
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d5016;
    letter-spacing: 0.02em;
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 2rem 0;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(143, 188, 143, 0.1) 0%, rgba(255, 203, 164, 0.1) 100%);
    border-radius: 16px;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d5016;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.1rem;
    color: #5a6c57;
    font-weight: 400;
}

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

.content-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2d5016;
    margin-bottom: 2rem;
}

.content-block {
    background-color: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(143, 188, 143, 0.1);
    border: 1px solid rgba(143, 188, 143, 0.15);
    margin-bottom: 2rem;
}

.content-block p {
    color: #5a6c57;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.content-block ul {
    color: #5a6c57;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.content-block ul:last-child {
    margin-bottom: 0;
}

.content-block li {
    margin-bottom: 0.5rem;
}

.content-block h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d5016;
    margin: 2rem 0 1rem 0;
}

.content-block a {
    color: #8FBC8F;
    text-decoration: none;
    font-weight: 500;
}

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

.svg-illustration {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.image-placeholder {
    background-color: rgba(143, 188, 143, 0.1);
    border: 2px dashed rgba(143, 188, 143, 0.3);
    border-radius: 12px;
    padding: 3rem;
    color: #8FBC8F;
    font-weight: 500;
    text-align: center;
    margin-top: 1.5rem;
}

.team-image {
    width: 100%;
    max-width: 500px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    margin: 2rem auto 0;
    display: block;
    box-shadow: 0 4px 20px rgba(143, 188, 143, 0.2);
}

/* Services Grid (About Page) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-item {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(143, 188, 143, 0.15);
    text-align: center;
}

.service-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.service-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d5016;
    margin-bottom: 1rem;
}

.service-item p {
    color: #5a6c57;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
    text-align: left;
}

/* Team Features */
.team-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.team-feature {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(143, 188, 143, 0.15);
    text-align: center;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.team-feature h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d5016;
    margin-bottom: 0.8rem;
}

.team-feature p {
    color: #5a6c57;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
    text-align: left;
}

/* Values List */
.values-list {
    margin: 2rem 0;
}

.values-list ul {
    list-style: none;
    padding: 0;
}

.values-list li {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border-left: 4px solid #8FBC8F;
    color: #5a6c57;
}

.values-list strong {
    color: #2d5016;
}

/* Empty Content for Policy Pages */
.empty-content {
    background-color: white;
    padding: 4rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(143, 188, 143, 0.1);
    border: 1px solid rgba(143, 188, 143, 0.15);
    text-align: center;
}

.placeholder-text {
    color: #8FBC8F;
    font-size: 1.1rem;
    font-style: italic;
    margin: 0;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-brand .footer-brand {
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-nav h4,
.footer-contact h4 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.footer-nav li {
    margin-bottom: 0.5rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #FFCBA4;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .page-header {
        padding: 2rem 1rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .content-section h2 {
        font-size: 1.5rem;
    }

    .content-block {
        padding: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .image-placeholder {
        padding: 2rem;
        font-size: 0.9rem;
    }

    .team-image {
        height: 200px;
    }
}