/* Extracted base.css and layout.css */

/* Button Styles - Refined */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    border-radius: 50px;
    /* Pill shape */
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    letter-spacing: 0.05em;
    cursor: pointer;
    font-family: 'Noto Sans JP', sans-serif;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(192, 158, 56, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(192, 158, 56, 0.4);
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid var(--white);
    /* For Hero */
    color: var(--white);
}

.btn-secondary.btn-outline {
    border: 1px solid var(--white);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Dark Outline Button (for light backgrounds) */
.btn-secondary.btn-outline-dark {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary.btn-outline-dark:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-sub-inline {
    font-size: 0.8em;
    margin-left: 8px;
    opacity: 0.9;
}


/* --- Hero Section --- */
.hero-section {
    position: relative;
    width: 100%;
    height: 125vh;
    /* Make it tall so text requires real scrolling */
    min-height: 800px;
    background-image: url('hero_bg.jpg');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    /* Align box to the bottom */
    justify-content: flex-end;
    /* Align box to the right */
    padding-bottom: 20px;
    /* Small safe margin so it's not totally cut off at the border */
    padding-right: 5vw;
    /* Distance from the right edge */
    color: var(--white);
    overflow: hidden;
}

/* Overlay for text readability */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    /* Thin black overlay */
    z-index: 1;
}

.hero-content-static {
    position: relative;
    z-index: 10;
    display: flex;
    /* Flex context to restrict width naturally */
    flex-direction: column;
    align-items: flex-end;
    /* Ensure right alignment */
}

/* Internal text alignment wrapper */
.hero-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Keep internal layout left-aligned */
    width: fit-content;
    padding: 0 40px;
    /* Some safe padding */
}

.hero-main-copy {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-line1 {
    display: block;
    font-size: clamp(2.1rem, 3.5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-line2 {
    display: block;
    font-size: clamp(2.1rem, 3.5vw, 3.5rem);
    font-weight: 800;
    margin-left: clamp(20px, 15vw, 150px);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
}

.hero-sub-copy {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(1.2rem, 2vw, 2.0rem);
    font-weight: 600;
    line-height: 1.7;
    white-space: nowrap;
    color: var(--white);
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
    margin-bottom: 0;
    opacity: 0.95;
    margin-left: clamp(20px, 15vw, 150px);
    /* Align with line 2 */
}

/* Ensure Logo is visible */
.logo-container {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* --- Sections Common (Warmth updates) --- */

/* Empathy Section */
.empathy-section {
    background-color: var(--bg-color);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    width: 100%;
    /* Ensure grid takes full width */
}

.card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 4px;
    /* Less rounded, more classic */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    /* Softer shadow */
    text-align: center;
    transition: transform 0.4s ease;
    border-top: 3px solid transparent;
}

.card:hover {
    transform: translateY(-8px);
    border-top-color: var(--primary-color);
}

.icon-box {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.card p {
    font-size: 0.95rem;
    color: #777;
    line-height: 1.8;
}

/* Empathy Section Specifics */
.empathy-section .card h3 {
    font-size: 1.5rem;
    /* Larger than default 1.3rem */
}

.empathy-section .card p {
    font-size: 1.1rem;
    /* Larger than default 0.95rem */
    color: #555;
    /* Slightly darker for better readability */
}

/* Strengths Section */
.strengths-section {
    background-color: var(--section-bg-alt);
    /* Light Cream */
}

.strengths-content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.representative-photo {
    flex: 0 0 150px;
    /* ID photo size roughly */
    text-align: center;
}

.representative-photo img {
    width: 120px;
    /* Fixed width for ID photo look */
    height: auto;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--white);
}

.strengths-text h3 {
    font-size: 1.8rem;
    margin-bottom: 40px;
    border-left: none;
    /* Removed blocky border */
    padding-left: 0;
    position: relative;
    padding-bottom: 15px;
}

.strengths-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 1px;
    background-color: var(--primary-color);
}

.strengths-text .check-list li {
    margin-bottom: 50px;
}

.check-list strong {
    color: var(--secondary-color);
    /* Navy for professionalism here */
}

.check-list strong::before {
    color: var(--primary-color);
}

/* Service Details Section */
.service-section {
    background-color: var(--white);
    background-image: radial-gradient(var(--border-color) 1px, transparent 1px);
    background-size: 20px 20px;
    /* Subtle pattern */
}

.service-card {
    border: 1px solid var(--border-color);
    box-shadow: none;
}

.service-card:hover {
    box-shadow: 0 15px 40px rgba(192, 158, 56, 0.15);
}


/* Flow Section */
.flow-section {
    background-color: var(--bg-color);
}

.flow-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    /* Spacing between steps */
    max-width: 800px;
    margin: 0 auto;
}

.step {
    background: var(--white);
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    text-align: left;
}

.step-label {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: bold;
    flex-shrink: 0;
}

.step h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-color);
    flex-grow: 1;
}

.step p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

.step-arrow {
    display: none;
    /* Hide old arrow */
}

/* Vertical line connector */
.step:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -32px;
    /* connects next card */
    left: 50%;
    width: 2px;
    height: 30px;
    background-color: var(--border-color);
    transform: translateX(-50%);
    display: block;
}

@media (min-width: 768px) {
    .step {
        padding: 40px;
    }

    .step h3 {
        font-size: 1.3rem;
    }
}

/* Pricing Section */
/* Pricing Section (New Card Layout) */
.pricing-section {
    background-color: var(--white);
}

.pricing-lead {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #555;
    font-size: 1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(192, 158, 56, 0.15);
    border-color: var(--primary-color);
}

.pricing-title {
    font-family: 'Shippori Mincho', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-color);
    min-height: 3em;
    /* Align titles */
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-price {
    background-color: var(--section-bg-alt);
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 25px;
}

.pricing-price span {
    display: block;
    font-size: 0.8rem;
    color: #777;
    margin-bottom: 5px;
}

.pricing-price strong {
    font-size: 1.4rem;
    color: var(--primary-color);
    font-family: 'Shippori Mincho', serif;
}

.pricing-content {
    text-align: left;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.8;
}

.pricing-content ul {
    list-style: disc;
    padding-left: 20px;
    margin-top: 10px;
}

.pricing-content li {
    margin-bottom: 5px;
}

.pricing-note {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
    color: #777;
    background-color: var(--section-bg-alt);
    padding: 15px;
    border-radius: 4px;
}


/* Company Section */
.company-section {
    background-color: #333;
    /* Reverted to dark */
    color: #fff;
}

.section-title.company-title {
    color: #e6c873;
    display: table;
    margin: 0 auto 60px;
    padding: 15px 40px;
    border: 1px solid #e6c873;
    background-color: rgba(230, 200, 115, 0.05);
    /* Made thinner/lighter */
}

.section-title.company-title::after {
    display: none;
}

.company-content {
    background: rgba(255, 255, 255, 0.03);
    color: #eee;
    /* Reverted to white/grey */
    border: 1px solid #555;
    padding: 50px;
}



.company-data {
    width: 100%;
    margin: 0 auto;
    border-top: 1px solid #eee;
}

.company-data .row {
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid #eee;
    margin: 0;
    padding: 0;
}

.company-data dt {
    color: #333;
    background-color: #f7f9fa;
    /* Light grey/blue background */
    font-weight: 700;
    flex: 0 0 8.5em;
    /* Narrowed width to fit "メールアドレス" closely */
    /* Narrowed width to fit "メールアドレス" closely */
    white-space: nowrap;
    padding: 4px 20px;
    margin-right: 0;
    border-right: 1px solid #eee;
    display: flex;
    align-items: center;
}

.company-data dd {
    flex: 1;
    line-height: 1.6;
    padding: 4px 20px;
    margin: 0;
    display: flex;
    align-items: center;
}

.company-content a {
    color: #e6c873;
    text-decoration: underline;
}

.company-content a:hover {
    color: var(--white);
    text-decoration: none;
}

.company-business-list {
    list-style: disc;
    padding-left: 20px;
    margin: 5px 0;
}

.company-business-list li {
    margin-bottom: 4px;
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-color);
    /* Gold/Amber */
    color: var(--white);
    padding: 100px 0;
}

.cta-box {
    background: transparent;
    padding: 0;
    max-width: 100%;
}

.cta-title,
.cta-lead {
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.btn-large {
    background-color: var(--white);
    color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    font-weight: 700;
}

.btn-large:hover {
    background-color: #f8f8f8;
    color: var(--primary-hover);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    /* Hero Section Mobile Adjustments */
    .hero-section {
        height: 110vh;
        /* Still require some scroll */
        min-height: 500px;
        padding-top: 0;
        padding-bottom: 100px;
        padding-right: 0;
        /* Let mobile center or shift differently */
        align-items: flex-end;
        justify-content: center;
        background-position: center bottom;
    }

    .hero-section::before {
        background-color: rgba(0, 0, 0, 0.4);
    }

    .hero-content-static {
        position: relative;
        z-index: 10;
        width: 100%;
        align-items: center;
        /* Center on mobile for readability */
        padding: 0 10px;
    }

    .hero-text-wrapper {
        padding: 0 10px;
    }

    .hero-line1 {
        font-size: clamp(1.7rem, 6vw, 2.4rem);
        margin-bottom: 10px;
    }

    .hero-line2 {
        font-size: clamp(1.7rem, 6vw, 2.4rem);
        margin-left: 10vw;
        /* Smaller indent */
    }

    .hero-sub-copy {
        font-size: clamp(1.0rem, 3.5vw, 1.4rem);
        margin-left: 10vw;
        white-space: normal;
        /* Allow wrap on very small screens if necessary */
    }

    /* Mobile adjustments existing... */
    .representative-photo {
        flex: 0 0 auto;
        width: 100%;
    }
}

/* --- Sticky Navigation Bar --- */
/* --- Sticky Navigation Bar --- */
.sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0;
    /* Remove padding to let list fill */
    transition: all 0.3s ease;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    display: flex;
    justify-content: center;
    /* Center the list container */
    align-items: center;
}

.nav-logo {
    font-size: 1.2rem;
    font-weight: 800;
    /* Max weight available in Google font */
    -webkit-text-stroke: 0.5px currentColor;
    /* Ensure maximum visual thickness */
    color: var(--text-color);
    text-decoration: none !important;
    white-space: nowrap;
    font-family: 'Shippori Mincho', serif;
    display: flex;
    justify-content: flex-start;
    /* Align Left */
    align-items: center;
    width: 100%;
    margin-bottom: 0.5em;
    /* 0.5 lines gap between rows */
    padding-left: 20px;
    /* Slight padding to align nicely with content bounds */
}

.sticky-nav .nav-links {
    display: flex;
    flex-direction: row;
    /* Links remain in a row */
    flex-wrap: wrap;
    /* Allow the logo to sit on its own line */
    justify-content: center;
    /* Center align on Desktop */
    align-items: center;
    gap: 0;
    /* Remove gap, use padding on items */
    margin: 10px 0;
    /* Add slight padding around the nav */
    padding: 0;
    list-style: none;
    width: 100%;
    overflow-x: auto;
    /* Enable horizontal scroll on all screens if needed */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE 10+ */
}

.sticky-nav .nav-links::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.sticky-nav .nav-links li {
    margin: 0;
    flex: 0 0 auto;
}

/* Logo specific spacing */
.sticky-nav .nav-links li.logo-item {
    flex: 0 0 100%;
    text-align: left;
    /* Align text left inside the li */
    margin-right: 0;
    padding-left: 0;
}

.sticky-nav .nav-links li {
    margin: 0;
}

.sticky-nav .nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-family: 'Shippori Mincho', serif;
    font-size: 22pt;
    font-weight: 600;
    position: relative;
    padding: 0 20px;
    height: 60px;
    line-height: 60px;
    /* Larger click area */
    display: block;
    transition: color 0.3s;
    white-space: nowrap;
    /* Prevent text wrapping */
}

/* Remove underline effect from logo */
.sticky-nav .nav-links a.nav-logo::after {
    display: none;
}

.sticky-nav .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 20px;
    /* Match padding */
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s;
}

.sticky-nav .nav-links a:hover {
    color: var(--primary-color);
}

.sticky-nav .nav-links a:hover::after {
    width: calc(100% - 40px);
    /* Width minus padding */
}

/* Responsive adjustment for small screens */
@media (max-width: 768px) {
    .sticky-nav {
        padding: 10px 0;
    }

    .sticky-nav .nav-links {
        gap: 0;
        /* Remove gap */
        flex-wrap: wrap;
        /* Allow wrapping */
        overflow-x: visible;
        /* Disable scroll */
        justify-content: center;
        /* Center content */
        padding: 5px 0;
        /* Vertical padding */
        width: 100%;
    }

    .sticky-nav .nav-links::-webkit-scrollbar {
        display: none;
    }

    .sticky-nav .nav-links li {
        flex: 0 0 auto;
    }

    /* Force logo to take full width on mobile */
    .sticky-nav .nav-links li.logo-item {
        width: 100%;
        display: flex;
        justify-content: flex-start;
        /* Align left on mobile */
        margin-right: 0;
        padding-left: 20px;
        /* Match left padding for visual alignment */
        margin-bottom: 5px;
    }

    .sticky-nav .nav-links li.logo-item .nav-logo {
        font-size: 1.3rem;
        padding: 5px 0;
    }

    .sticky-nav .nav-links a {
        font-size: 22pt;
        /* Matches Desktop */
        padding: 8px 10px;
        /* Compact padding */
    }

    .sticky-nav .nav-links a::after {
        bottom: 2px;
        left: 10px;
    }

    .sticky-nav .nav-links a:hover::after {
        width: calc(100% - 20px);
    }

    /* Fix for header text hidden behind doubled nav bar on mobile */
    .company-header-band,
    .message-header-band,
    .contact-header-band,
    .common-header-band,
    .privacy-header-band,
    .security-header-band,
    .achievements-header-band,
    .faq-header-band,
    .thanks-header-band {

        margin-top: 240px !important;
        /* Adjusted to clear multi-line wrapped tabs and override inline style */
    }

    /* Achievements Header Band */
    .achievements-header-band {
        position: relative;
        width: 100%;
        height: 520px;
        overflow: hidden;
        background-color: #f9f9f9;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 92px;
    }

    /* Action Guidelines List */
    .action-guidelines-list {
        list-style: none;
        padding: 0;
        text-align: center;
        font-size: 1.1rem;
        line-height: 2;
        margin-top: 20px;
        font-family: 'Shippori Mincho', serif;
        color: var(--text-color);
    }

    .action-guidelines-list li {
        margin-bottom: 10px;
    }

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

    .nav-links a:hover::after {
        width: 100%;
    }

    .nav-links .nav-cta {
        margin-top: 20px;
        width: 100%;
        color: var(--white);
        padding: 15px;
    }

    /* Company Profile Updates */
}

/* End of max-width: 768px */

/* Company Profile Updates (Global) */
.representative-dd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.company-profile-photo-small {
    width: 120px;
    /* ID photo size (approx 3x4cm scaled) */
    height: auto;
    border-radius: 4px;
    margin-left: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
}

@media (max-width: 480px) {
    .representative-dd {
        gap: 10px;
    }
}

/* --- Contact Page Styles --- */
.contact-header {
    background-color: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 40px;
}

.contact-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-link {
    color: var(--secondary-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-header h1 {
    font-size: 1.5rem;
    color: var(--text-color);
}

.contact-page-container {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
    /* Center the form block visually if possible, or at least the heading */
}

.contact-form {
    display: inline-block;
    width: 100%;
    text-align: center !important;
    /* Force center */
}

.form-intro {
    text-align: center !important;
    margin-bottom: 40px;
    line-height: 1.5;
    font-size: clamp(16px, 4vw, 27px);
}

.form-group {
    text-align: center !important;
    margin-bottom: 30px;
    /* Add spacing */
}

.contact-form label {
    display: block;
    /* Stack label above input */
    margin-bottom: 10px;
    text-align: center !important;
    /* Force label center */
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    margin: 0 auto;
    /* Center the input box itself if it has width < 100% */
    display: block;
    width: 100%;
    /* Or keep standard width */
    max-width: 600px;
    /* Prevent too wide on large screens */
}

/* Checkbox specific override */
.contact-form input[type="checkbox"] {
    display: inline-block;
    width: auto;
    margin-right: 10px;
    vertical-align: middle;

    transform: scale(1.2);
    /* Make it slightly bigger */
}

.checkbox-label {
    display: inline-flex !important;
    /* Treat as one unit, let parent align it */
    align-items: center;
    justify-content: center;
    flex-direction: row !important;
    width: auto;
    /* Shrink to fit content */
    margin: 0 auto;
    /* Ensure it centers itself if treated as block in some contexts */
    cursor: pointer;
}

.contact-form label,
.contact-form input,
.contact-form textarea,
.form-section-title {
    font-family: 'Shippori Mincho', serif;
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    font-weight: 600;
    line-height: 1.8;
    color: #444;
}

.form-section-title {
    margin-bottom: 25px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    display: block;
    width: 100%;
}

/* --- Profile & Philosophy Page Styles --- */
.profile-page-container {
    padding-top: 80px;
    /* Header space */
    min-height: 100vh;
    background-color: #fff;
    max-width: 1200px;
    /* Increased to allow message page to use full width */
    margin: 0 auto;
    padding: 80px 20px 60px;
}

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

.profile-header h1 {
    font-size: 2.2rem;
    font-family: 'Shippori Mincho', serif;
    color: var(--primary-color);
}

.profile-content {
    background: #fff;
    padding: 0;
}

/* Member Block (Reusable for multiple members) */
.member-block {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding-bottom: 60px;
    border-bottom: 1px solid #eee;
    margin-bottom: 60px;
}

.member-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.member-photo-container {
    flex: 0 0 280px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.member-photo {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(100%);
    /* Premium black & white look */
}

.member-text-block {
    flex: 1;
}

.member-text-block h2 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    border-left: 4px solid var(--accent-color);
    padding-left: 15px;
}

.member-role {
    font-size: 1rem;
    margin-bottom: 5px;
    color: #555;
    font-weight: bold;
}

.member-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Shippori Mincho', serif;
}

.member-name span.en {
    display: block;
    font-size: 0.9rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    color: #888;
    margin-top: 5px;
    letter-spacing: 0.1em;
}

.member-bio-title {
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 10px;
    display: inline-block;
    border-bottom: 2px solid var(--accent-color);
}

@media (max-width: 768px) {
    .member-block {
        flex-direction: column;
        gap: 30px;
    }

    .member-photo-container {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        flex: none;
    }
}

/* Philosophy Specific */
.philosophy-block {
    text-align: center;
    margin-bottom: 50px;
}

.philosophy-title {
    font-family: 'Shippori Mincho', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

/* New Philosophy & About Us Layout Classes */
.philosophy-tagline {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    line-height: 1.4;
    text-align: center;
    /* Always centered */
}

.philosophy-body {
    text-align: left;
    /* Internal text left-aligned */
    font-family: 'Shippori Mincho', serif;
    font-weight: 500;
    font-size: 2.0rem;
    line-height: 1.5;
    /* Reduced line-height for tighter spacing */
    max-width: 40em;
    /* Limit to ~40 characters */
    margin: 0 auto;
    /* Block centered */
    width: 100%;
    /* Ensure it takes space up to max-width */
}

.philosophy-body p {
    margin-bottom: 1.2rem;
    /* Reduced paragraph spacing */
}

.philosophy-body p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {

    .philosophy-tagline {
        font-size: 2.0rem;
        /* Adjusted for mobile */
        margin-bottom: 40px;
    }

    .philosophy-body {
        text-align: left;
        /* Mobile: Left aligned */
        max-width: 30ch;
        /* Mobile line length control (28-32ch) */
        width: 100%;
        margin: 0 auto;
        /* Center the block itself */
        padding: 0 10px;
        /* Safety padding */
    }


}

/* Philosophy Page Redesign */
.philosophy-bg-section {
    position: relative;
    background-image: url('philosophy_bg.png');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    color: #333;
    overflow: hidden;
}

.philosophy-bg-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    /* 80% opacity white overlay -> 20% image visibility */
    z-index: 1;
}

.philosophy-bg-section .container {
    position: relative;
    z-index: 2;
}

.philosophy-separator {
    width: 60px;
    height: 1px;
    background-color: var(--primary-color);
    /* Gold */
    margin: 40px auto;
    opacity: 0.8;
}

.philosophy-quote-wrapper {
    position: relative;
    display: inline-block;
    padding: 10px 0;
    margin-bottom: 30px;
}

.philosophy-quote-wrapper::before {
    content: '“';
    position: absolute;
    top: -40px;
    left: -40px;
    font-size: 6rem;
    color: rgba(192, 158, 56, 0.3);
    /* Increased opacity and size */
    font-family: serif;
    line-height: 1;
}

.philosophy-quote-wrapper::after {
    content: '”';
    position: absolute;
    bottom: -80px;
    right: -40px;
    font-size: 6rem;
    color: rgba(192, 158, 56, 0.3);
    /* Increased opacity and size */
    font-family: serif;
    line-height: 1;
}

.philosophy-main-statement {
    font-size: 1.6rem;
    /* Slightly larger */
    font-weight: 700;
    font-family: 'Shippori Mincho', serif;
    /* Enforce Ming font */
    letter-spacing: 0.05em;
    margin-bottom: 0;
}

/* Override previous mobile left-align for Philosophy only */
.philosophy-body {
    text-align: center !important;
    /* Force center as requested */
    max-width: 900px;
}

@media (max-width: 768px) {
    .philosophy-body {
        text-align: center !important;
        max-width: 100%;
        padding: 0 20px;
    }

    .philosophy-quote-wrapper::before {
        left: -10px;
        font-size: 4rem;
    }

    .philosophy-quote-wrapper::after {
        right: -10px;
        font-size: 4rem;
    }
}

.philosophy-text {
    font-size: 1.1rem;
    line-height: 2;
    font-weight: 500;
}

.credo-list {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.credo-list li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    font-weight: 400;
}

.credo-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.policy-block {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.policy-intro {
    margin-bottom: 30px;
}

.policy-heading {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* --- Responsive Design (Mobile Optimization) --- */

@media (max-width: 768px) {

    /* Header & Hero */
    /* .hero-section height, .hero-main-copy font-size are handled in the main media query above */

    /* .hero-message-section is removed */

    /* Grids */
    .cards-grid {
        grid-template-columns: 1fr;
        /* Force single column */
        gap: 30px;
    }

    /* Strengths Section */
    .strengths-content {
        flex-direction: column;
    }

    .representative-photo {
        margin: 0 auto;
    }

    /* Flow Section */
    .step {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 10px auto;
    }

    /* Company Profile Page */
    .profile-header-block {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .profile-photo-container {
        margin-bottom: 20px;
    }

    /* Contact Form Header */
    .contact-header .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .back-link {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {

    /* Typography */
    html {
        font-size: 14px;
        /* Base font scaling */
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
        /* Full width buttons for easy tapping */
    }

    /* Padding adjustments */
    .section {
        padding: 50px 0;
    }

    .container {
        padding: 0 20px;
    }



    /* Company Data Definition List Mobile */
    .company-data .row {
        flex-direction: column;
        padding: 0;
    }

    .company-data dt {
        flex: auto;
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 6px 20px;
        margin-right: 0;
    }

    .company-data dd {
        padding: 6px 20px;
    }

    /* Card Padding */
    /* Card Padding */
    .card {
        padding: 30px 20px;
    }

    .profile-content {
        padding: 20px;
    }

    .footer-badges img {
        height: 60px !important;
        /* Scale down logo */
    }
}

/* --- Multi-layer Slide Menu --- */
.mobile-nav {
    overflow: hidden;
    /* Hide the overflow for sliding effect */
    padding: 0;
    /* Reset padding for full layout */
}

.nav-slider {
    display: flex;
    width: 200%;
    /* Two layers side by side */
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-layer {
    width: 50%;
    height: 100%;
    overflow-y: auto;
    padding: 80px 40px;
}

.nav-layer.sub-layer {
    background-color: #f9f9f9;
    /* Slight contrast for sub menu */
}

/* Menu Items */
.nav-item-parent {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.nav-item-parent::after {
    content: '\f054';
    /* FontAwesome Chevron Right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.9rem;
    color: var(--primary-color);
    transition: transform 0.3s;
    width: auto;
    height: auto;
    background: none;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background: url('hero_bg.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    /* White text for contrast */
}

.nav-back-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: #888;
    cursor: pointer;
    margin-bottom: 30px;
    font-family: 'Noto Sans JP', sans-serif;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
}

.nav-back-btn i {
    font-size: 0.9rem;
}

.nav-back-btn:hover {
    color: var(--primary-color);
}

/* Slide Classes */
.mobile-nav.slide-active .nav-slider {
    transform: translateX(-50%);
    /* Slide to second layer */
}

/* --- FAQ Accordion --- */
.faq-section {
    background-color: var(--white);
}

.faq-category {
    margin-bottom: 50px;
}

.faq-category-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--border-color);
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    background: transparent;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
    transition: background-color 0.3s;
}

.faq-item:hover {
    background-color: rgba(0, 0, 0, 0.01);
    transform: none;
    /* Override card hover */
    border-top-color: transparent;
    /* Override card hover */
}

/* Question Part (Trigger) */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-color);
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-left: 15px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

/* Rotate icon when active */
.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Answer Part (Hidden by default) */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease-out, opacity 0.4s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    /* Adjust if content is very long */
    opacity: 1;
}

.faq-answer-content {
    padding: 10px 25px 30px;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
}

/* Override previous .faq-q / .faq-a simple styles if they conflict, 
   but we replaced HTML so it should be fine. */
/* --- Achievements Section (New) --- */
.achievements-section {
    background-color: var(--white);
    /* Matched with profile-content background */
}

.achievements-intro {
    font-size: 1.1rem;
    line-height: 2;
    max-width: 800px;
    margin: 0 auto 80px;
}

.philosophy-content-new {
    text-align: left;
    margin: 30px 0 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Align left */
    gap: 0;
    /* Removed gap to make lines touch */
}

.achievements-cards-full {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
}

.achievement-card {
    text-align: left;
    /* Explicitly left-aligned */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px;
    border-top: 3px solid var(--primary-color);
    /* Top border for emphasis */
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    /* Slightly deeper shadow on hover */
}

/* Tags */
.achievement-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.achievement-tag i {
    font-size: 0.9rem;
}


.tag-public {
    background-color: #0056b3;
    /* Trustworthy Blue for Public/Admin */
}

.tag-global {
    background-color: #2C3E50;
    /* Navy for Global */
}

.tag-local {
    background-color: #D35400;
    /* Burnt Orange for Local/Vitality */
}

.tag-management {
    background-color: #27AE60;
    /* Green for Growth/Sustainability */
}

/* Typography */
.achievement-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.6;
    color: var(--text-color);
    font-family: 'Shippori Mincho', serif;
}

.achievement-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Details List */
.achievement-details {
    background-color: #f9f9f9;
    padding: 20px;
    width: 100%;
    border-radius: 4px;
    border-left: 3px solid #ddd;
}

.achievement-details h4 {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 10px;
    opacity: 0.8;
}

.achievement-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.achievement-details li {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
    line-height: 1.6;
}

.achievement-details li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.achievement-details li:last-child {
    margin-bottom: 0;
}

/* Mobile adjustments handled by grid responsiveness */

/* Philosophy Section Specifics for Bold Impact */
/* Philosophy Section Specifics for Bold Impact */
.philosophy-block .section-title,
.company-info-block .section-title {
    font-size: 22pt;
    /* 22pt as requested */
    margin-bottom: 25px;
    /* Reduced from 80px to close the gap */
    letter-spacing: 0.1em;
}

.philosophy-text-container {
    /* PC: Large, readable size */
    font-size: 1.5rem !important;
    /* ~24px */
    line-height: 1.8 !important;
    text-align: left;
    display: inline-block;
    max-width: 900px;
    margin: 0 auto;
}

.philosophy-item {
    margin-bottom: 4em;
    /* Increased spacing */
    text-align: left;
}

.philosophy-item:last-child {
    margin-bottom: 0;
}

.philosophy-text {
    display: inline-block;
}

/* Mobile text break utility for Philosophy */
.mobile-break-keep {
    display: block;
    word-break: keep-all;
    overflow-wrap: normal;
}

@media (max-width: 768px) {

    .philosophy-block .section-title,
    .company-info-block .section-title {
        font-size: 22pt;
        /* Keep 22pt on mobile */
        margin-bottom: 30px;
    }

    .philosophy-text-container {
        font-size: 1.125rem !important;
        /* ~18px Mobile */
        line-height: 1.8 !important;
        width: 100%;
        padding: 0 15px;
    }

    .philosophy-item {
        margin-bottom: 3em !important;
    }

    /* Ensure long sentences wrap if they overflow screen width despite keep-all */
    /* System default natural wrapping */
    .mobile-break-keep {
        white-space: normal;
        word-break: break-word;
        word-break: auto-phrase;
    }

    .message-signatures {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    /* Fix Mobile Typography for Philosophy */
    .philosophy-body {
        font-size: 1.0rem !important;
        /* Standard readable size for mobile */
        line-height: 1.8 !important;
        text-align: left !important;
        max-width: 100% !important;
        padding: 0 20px;
    }

    .philosophy-tagline {
        font-size: 1.8rem;
        /* Slightly smaller for better fit */
        margin-bottom: 30px;
    }

    /* Hide manual line breaks on mobile to allow natural wrapping */
    .philosophy-body br {
        display: none;
    }

    .action-guidelines-list {
        text-align: left !important;
        padding-left: 20px;
        /* Ensure bullets are visible */
        display: inline-block;
        /* Or block with width constraint if needed */
        max-width: 100%;
    }

    .action-guidelines-list li {
        margin-bottom: 0.8em;
    }

    /* Cleaned up redundant heroic mobile optimizations */
}

/* Force override for philosophy body (PC Only) */
@media (min-width: 769px) {

    body .philosophy-body {
        text-align: left !important;
        max-width: 40em !important;
        margin: 0 auto !important;
        width: 100% !important;
        font-size: 2.0rem !important;
    }
}



/* --- Message Page Unified Layout --- */
.message-unified-section {
    max-width: 1200px;
    margin: 0 auto 100px;
    padding: 0 20px;
}

.message-unified-section::after {
    content: "";
    display: table;
    clear: both;
}

.message-founders-float {
    float: right;
    width: 50%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    /* Align the columns (and thus the images) at the bottom */
    gap: 20px;
    margin-left: 40px;
    margin-bottom: 20px;
}

.message-founder {
    width: 48%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.message-founder img {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    object-position: center 15%;
    /* Align faces near the top */
    margin-bottom: 10px;
}



.message-founder .founder-name {
    font-family: 'Shippori Mincho', serif;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 1em;
    align-items: baseline;
}

.message-founder .founder-name rt {
    font-size: 0.4em;
    font-weight: 400;
    opacity: 0.8;
}

.message-title {
    font-size: 2.0rem;
    font-family: 'Shippori Mincho', serif;
    color: #C09E38;
    margin-top: 0;
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.4;
}

.message-body {
    font-size: 1.0rem;
    line-height: 1.5;
    color: #333;
    font-family: 'Shippori Mincho', serif;
}

.message-body p {
    margin-bottom: 0.4em;
}

.message-signature {
    margin-top: 40px;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: right;
    font-family: 'Shippori Mincho', serif;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .message-founders-float {
        float: none;
        width: 100%;
        margin-left: 0;
        margin-bottom: 40px;
        flex-direction: column;
        align-items: center;
    }

    .message-founder {
        width: 80%;
        max-width: 300px;
        margin-bottom: 30px;
    }

    .message-title {
        font-size: 1.6rem;
        text-align: center;
    }
}

/* --- New Philosophy & Action Layout (Dense/Bold) --- */
.philosophy-content-new {
    text-align: center;
    font-family: 'Shippori Mincho', serif;
    font-weight: 700;
    line-height: 2.5;
    margin: 80px 0 100px;
    color: var(--text-color);
}

.philosophy-main-text {
    font-size: clamp(1.4rem, 6.5vw, 5.2rem);
    /* Adjusted size (min 1.4rem) so the longest line fits on mobile */
    display: block;
    /* Force each item to its own line */
    margin: 0;
    line-height: 1.1;
    /* Reduced line height further */
    letter-spacing: 0.05em;
    position: relative;
    text-align: left;
    /* Ensure text aligns left */
    width: fit-content;
    /* Shrink to fit text width */
    white-space: nowrap;
    /* Prevent the final character from wrapping onto a new line */
}


.action-guidelines-box {
    background-color: #fbfbfb;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px 40px 30px;
    /* Reduced top padding from 60px to 40px */
    max-width: 1200px;
    /* Increased to allow larger text on a single line */
    margin: 0 auto 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.action-guidelines-list-new {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    /* Keep left for readability of list */
    display: inline-block;
    /* Center the block itself */
}

/* Container to center the list block */
.action-guidelines-container {
    text-align: center;
}

.action-guidelines-list-new li {
    font-family: 'Shippori Mincho', serif;
    font-size: clamp(16px, 4.5vw, 2.6rem);
    /* Adjusted upper limit to keep the longest item on a single line */
    font-weight: 600;
    margin-bottom: 0;
    /* Reduced margin to bring lines closer */
    line-height: 1.4;
    /* Reduced from 1.5 for tighter spacing */
    color: #444;
    padding-left: 1.2em;
    text-indent: -1.2em;
    /* Hanging indent for numbers adjusted for larger font */
}

.action-guidelines-list-new li:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .philosophy-content-new {
        margin: 20px 0 30px;
        line-height: 1.1;
        gap: 0px;
    }

    .action-guidelines-box {
        padding: 20px 20px;
        margin-bottom: 40px;
    }

    .action-guidelines-list-new li {
        margin-bottom: 0;
        /* Reduced to remove extra gap */
        text-align: left;
    }
}

/* --- Officer Titles (Message Page) --- */
.officer-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.0rem;
    color: var(--primary-color);
    text-align: center;
    margin: 80px 0 50px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .officer-title {
        font-size: 2.2rem;
        margin: 50px 0 30px;
    }
}

/* --- Company Info Centering Override --- */
.company-info-block {
    text-align: center;
}

.company-data {
    margin: 0 auto;
    max-width: 1000px;
    /* Increased from 800px to give more room for email on company.html */
    /* Limit width to keep it centered and readable */
    text-align: left;
    /* Keep internal text alignment left for data readability */
    display: inline-block;
    /* Allow centering of the block itself */
    width: 100%;
}

/* Ensure rows flex correctly within the centered block */

/* On mobile, ensure it takes full width but remains centered */
@media (max-width: 768px) {
    .company-data {
        display: block;
        width: 100%;
    }
}







/* Highlight Red for Philosophy */
.highlight-red {
    color: #cc0000;
    font-weight: 700;
}

/* --- Company Info & Message Body Text Sizing (Match Action Guidelines) --- */
.company-data,
.company-data dt,
.company-data dd,
.company-business-list li,
.message-body {
    font-family: 'Shippori Mincho', serif;
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    font-weight: 600;
    line-height: 1.5;
}

.company-data dd {
    margin-left: 0;
    line-height: 1.4;
    word-break: break-all;
    /* Allow breaking long email addresses smoothly if needed on very small screens */
    /* Override for tighter spacing on multi-line elements */
    /* Align clean if needed */
}

/* --- Footer Copyright Standardization --- */
.copyright {
    text-align: center !important;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #666;
}

/* --- Contact Form Required Label --- */
.required {
    font-size: 0.8em;
    color: #e74c3c;
    margin-left: 0.5em;
    vertical-align: middle;
    font-weight: normal;
    background: #fff0f0;
    padding: 2px 6px;
    border-radius: 4px;
}

/* Form Validation Styles */
.error-message {
    display: none;
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
    font-weight: 500;
}

.error-message.show {
    display: block;
}

.input-error {
    border-color: #e74c3c !important;
    background-color: #fffaf9 !important;
}

.input-error:focus {
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2) !important;
}

/* Mustard Button */
.btn-mustard {
    background-color: #C0A441;
    /* Mustard yellow from image */
    color: #fff;
    border: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 1.2rem;
    text-decoration: none;
    font-family: inherit;
}

.btn-mustard:hover {
    background-color: #a88d33;
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {}


/* --- Layout reversal on mobile --- */
@media (max-width: 900px) {
    .founders-and-text-wrapper {
        display: flex;
        flex-direction: column-reverse;
    }
}
