/*
Theme Name: Kaisha Kaitori
Theme URI: https://kaisha-buysell.com/
Author: Custom Development
Author URI: https://kaisha-buysell.com/
Description: 会社買取専門サイト用のカスタムテーマ
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kaisha-kaitori
Tags: business, matching, marketplace, custom-post-type
*/

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #fafafa;
    font-size: 15px;
}

@media (max-width: 768px) {
    body {
        font-size: 13px;
    }
}

/* Header Styles */
.site-header {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    display: inline-block;
    text-decoration: none;
}

.site-logo-image {
    height: 40px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 3px;
    transition: all 0.3s;
    transform-origin: center;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    transition: color 0.3s;
    display: block;
    padding: 0.5rem 0;
    letter-spacing: 0.02em;
}

.main-navigation a:hover {
    color: #0066cc;
}

.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn {
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: #0066cc;
    color: #fff;
}

.btn-primary:hover {
    background-color: #0052a3;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid #0066cc;
    color: #0066cc;
}

.btn-outline:hover {
    background-color: #0066cc;
    color: #fff;
}

/* Main Content */
.site-main {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 1rem;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

@media (max-width: 768px) {
    .site-main {
        padding: 0 1rem;
        margin: 1rem auto;
        max-width: 100%;
        overflow-x: hidden;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    background-color: #2c3e50;
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #e8e8e8;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 1;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.6) 0%, rgba(44, 62, 80, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-section h1 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: #fff;
    font-weight: 600;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero-section p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Search Form */
.search-form {
    background-color: #fff;
    padding: 1.5rem;
    border: 1px solid #e0e0e0;
    margin-bottom: 2rem;
}

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

.search-field {
    display: flex;
    flex-direction: column;
}

.search-field label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #666;
}

.search-field select,
.search-field input {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.search-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

/* Companies Table */
.companies-table-wrapper {
    overflow-x: auto;
    margin-bottom: 2rem;
}

.companies-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    border: 1px solid #e8e8e8;
    font-size: 0.85rem;
}

.companies-table thead {
    background-color: #f5f5f5;
    border-bottom: 2px solid #e8e8e8;
}

.companies-table th {
    padding: 0.75rem;
    text-align: left;
    font-weight: 600;
    color: #2c3e50;
    white-space: nowrap;
    font-size: 0.8rem;
}

.companies-table td {
    padding: 0.75rem;
    border-bottom: 1px solid #f0f0f0;
    color: #2c3e50;
}

.companies-table tbody tr:hover {
    background-color: #fafafa;
}

.companies-table tbody tr:last-child td {
    border-bottom: none;
}

.company-name-cell {
    font-weight: 600;
    color: #2c3e50;
    min-width: 150px;
}

.company-category-cell {
    color: #0066cc;
    min-width: 100px;
}

.company-location-cell {
    min-width: 120px;
}

.company-price-cell {
    font-weight: 700;
    color: #0066cc;
    min-width: 120px;
    white-space: nowrap;
}

.company-employees-cell,
.company-established-cell {
    text-align: center;
    min-width: 80px;
}

.company-detail-cell {
    text-align: center;
    min-width: 100px;
}

.btn-small {
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    display: inline-block;
    text-decoration: none;
    background-color: #0066cc;
    color: #fff;
    border-radius: 4px;
    transition: background-color 0.3s;
    font-weight: 500;
    white-space: nowrap;
}

.btn-small:hover {
    background-color: #0052a3;
}

.view-all-link {
    text-align: center;
    margin-top: 2rem;
}

.btn-secondary {
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
    display: inline-block;
    text-decoration: none;
    background-color: #5a6c7d;
    color: #fff;
    border-radius: 4px;
    transition: background-color 0.3s;
    font-weight: 500;
}

.btn-secondary:hover {
    background-color: #4a5c6d;
}

@media (max-width: 768px) {
    .companies-table {
        font-size: 0.7rem;
    }

    .companies-table th,
    .companies-table td {
        padding: 0.5rem 0.35rem;
    }

    .companies-table th {
        font-size: 0.7rem;
    }

    .btn-small {
        padding: 0.35rem 0.6rem;
        font-size: 0.7rem;
    }

    .company-name-cell {
        min-width: 100px;
    }

    .company-category-cell,
    .company-location-cell {
        min-width: 80px;
    }

    .company-price-cell {
        min-width: 90px;
    }

    .company-employees-cell,
    .company-established-cell {
        min-width: 60px;
    }

    .company-detail-cell {
        min-width: 70px;
    }
}

/* Company List */
.companies-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .companies-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .company-image-wrapper {
        height: 100px;
        padding: 0.75rem;
    }

    .company-info {
        padding: 1rem;
    }

    .company-name {
        font-size: 1rem;
    }

    .company-price {
        font-size: 1.1rem;
    }

    .company-detail-item {
        font-size: 0.8rem;
        padding: 0.35rem 0;
    }

    .company-link {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
}

.company-card {
    background-color: #fff;
    border: 1px solid #e8e8e8;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-radius: 4px;
}

.company-image-wrapper {
    width: 100%;
    height: 120px;
    background-color: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border-bottom: 1px solid #e8e8e8;
}

.company-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    width: auto;
    height: auto;
}

.company-info {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.company-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    line-height: 1.4;
}

.company-name a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s;
}

.company-name a:hover {
    color: #0066cc;
}

.company-category {
    color: #0066cc;
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.company-details {
    margin-bottom: 0.75rem;
    flex: 1;
}

.company-detail-item {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.85rem;
}

.company-detail-item:last-child {
    border-bottom: none;
}

.company-detail-label {
    color: #5a6c7d;
    font-size: 0.8rem;
}

.company-detail-value {
    font-weight: 500;
    color: #2c3e50;
    font-size: 0.85rem;
}

.company-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0066cc;
    margin: 0.75rem 0;
    text-align: center;
    padding: 0.5rem 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.company-link {
    display: block;
    text-align: center;
    margin-top: 0.75rem;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
}

/* Single Company Page */
.single-company {
    background-color: #fff;
    border: 1px solid #e8e8e8;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 4px;
    max-width: 100%;
    width: 100%;
}

.company-header {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.company-logo-wrapper {
    width: 200px;
    min-width: 200px;
    height: 150px;
    background-color: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
}

.company-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    width: auto;
    height: auto;
}

.company-header-info {
    flex: 1;
    min-width: 0;
}

.company-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
    font-weight: 600;
    line-height: 1.4;
}

.company-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.meta-item {
    padding: 0.75rem;
    background-color: #fafafa;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
}

.meta-label {
    font-size: 0.8rem;
    color: #5a6c7d;
    margin-bottom: 0.4rem;
}

.meta-value {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
}

.company-price-large {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0066cc;
    text-align: center;
    padding: 1rem;
    background-color: #f0f7ff;
    border: 1px solid #e0e8f0;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.company-content {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e8e8e8;
}

.company-content h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    border-bottom: 2px solid #0066cc;
    padding-bottom: 0.5rem;
    font-weight: 600;
}

.company-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #2c3e50;
    font-size: 0.95rem;
}

.company-contact-button {
    margin-top: 2.5rem;
    padding-top: 2rem;
    text-align: center;
    border-top: 1px solid #e8e8e8;
}

.company-contact-button .btn {
    padding: 1rem 2.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.contact-form {
    display: grid;
    gap: 1rem;
}

.contact-form textarea {
    min-height: 150px;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

/* LINE Contact Section */
.line-contact-section {
    text-align: center;
    padding: 3rem 2rem;
    background-color: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
}

.line-contact-title {
    font-size: 1.75rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.line-contact-description {
    font-size: 0.95rem;
    color: #5a6c7d;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.line-button-wrapper {
    margin-top: 2.5rem;
}

.btn-line {
    background-color: #06C755;
    color: #fff;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 0;
    text-decoration: none;
    transition: background-color 0.3s;
    border: 2px solid #06C755;
}

.btn-line:hover {
    background-color: #05b34a;
    border-color: #05b34a;
}

.line-icon {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .line-contact-section {
        padding: 2rem 1.5rem;
    }

    .line-contact-title {
        font-size: 1.4rem;
    }

    .line-contact-description {
        font-size: 0.85rem;
    }

    .btn-line {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        justify-content: center;
    }

    .line-button-wrapper {
        margin-top: 2rem;
    }
}

/* Footer */
.site-footer {
    background-color: #fff;
    color: #666;
    padding: 2rem;
    margin-top: 3rem;
    border-top: 1px solid #e0e0e0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.footer-section {
    text-align: center;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.footer-section li {
    margin: 0;
}

.footer-section a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: #0066cc;
}

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

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        position: relative;
        padding: 0.6rem 1rem;
    }

    .site-logo-image {
        height: 35px;
        max-width: 200px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .main-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        border-top: 1px solid #e0e0e0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }

    .main-navigation.active {
        max-height: 500px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
    }

    .main-navigation li {
        border-bottom: 1px solid #f0f0f0;
    }

    .main-navigation li:last-child {
        border-bottom: none;
    }

    .main-navigation a {
        padding: 1rem 2rem;
        display: block;
    }

    .main-navigation a:hover {
        background-color: #f5f5f5;
    }

    .companies-list {
        grid-template-columns: 1fr;
    }

    .company-name {
        font-size: 1.1rem;
    }

    .company-price {
        font-size: 1.3rem;
    }

    .company-detail-item {
        font-size: 0.85rem;
    }

    .single-company {
        padding: 1rem;
    }

    .company-header {
        flex-direction: column;
        gap: 1.5rem;
    }

    .company-logo-wrapper {
        width: 100%;
        min-width: auto;
        height: 120px;
    }

    .company-title {
        font-size: 1.25rem;
    }

    .company-price-large {
        font-size: 1.25rem;
        padding: 0.75rem;
    }

    .company-meta {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .meta-item {
        padding: 0.6rem;
    }

    .meta-label {
        font-size: 0.75rem;
    }

    .meta-value {
        font-size: 0.9rem;
    }

    .company-content h2 {
        font-size: 1.1rem;
    }

    .company-contact h2 {
        font-size: 1.1rem;
    }

    .company-contact-button {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .company-contact-button .btn {
        padding: 0.9rem 2rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .hero-section {
        padding: 2rem 1rem;
    }

    .hero-section {
        padding: 3rem 1rem;
        min-height: 250px;
    }

    .hero-section h1 {
        font-size: 1.25rem;
    }

    .hero-section p {
        font-size: 0.85rem;
    }

    .search-fields {
        grid-template-columns: 1fr;
    }

    .search-form {
        padding: 1rem;
    }

    .consultation-section,
    .process-steps {
        padding: 2rem 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .consultation-section {
        padding: 1.25rem 1rem;
    }

    .consultation-lead {
        font-size: 0.7rem;
        white-space: normal;
    }

    .consultation-text {
        font-size: 0.7rem;
    }

    .section-title {
        font-size: 1.15rem;
        margin-bottom: 1.25rem;
    }

    .steps-container {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        max-width: 100%;
        width: 100%;
        padding: 0;
        margin: 0 auto;
    }

    .step-item {
        padding: 1.5rem 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0;
        overflow: visible;
    }

    .step-number {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }

    .step-number span {
        font-size: 1.5rem;
        margin-top: 0.25rem;
    }

    .step-number {
        font-size: 0.75rem;
    }

    .step-number span {
        font-size: 1.25rem;
    }

    .step-title {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
        line-height: 1.5;
        word-break: keep-all;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .step-description {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
        line-height: 1.7;
    }

    .process-contact-button {
        margin-top: 2rem;
        padding-top: 1.5rem;
        width: 100%;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
        box-sizing: border-box;
    }

    .process-contact-button .btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
        width: calc(100% - 2rem);
        max-width: calc(100% - 2rem);
        min-width: auto;
        box-sizing: border-box;
        word-break: keep-all;
        white-space: normal;
        overflow-wrap: break-word;
        margin: 0 1rem;
    }

    .footer-section ul {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Notices */
.notice {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 4px;
}

.notice-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.notice-error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* Section Title */
.section-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    text-align: center;
    font-weight: 600;
    letter-spacing: -0.01em;
}

h3.section-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* Consultation Section */
.consultation-section {
    background-color: #fff;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #e8e8e8;
}

.consultation-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.consultation-lead {
    font-size: 0.75rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.consultation-text {
    font-size: 0.75rem;
    color: #5a6c7d;
    line-height: 1.6;
}

/* Process Steps */
.process-steps {
    background-color: #fff;
    padding: 2.5rem 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #e8e8e8;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-wrap: break-word;
}

.steps-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 1024px) {
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0;
    }
}

@media (max-width: 768px) {
    .steps-container {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        padding: 0;
        width: 100%;
        max-width: 100%;
    }
}

.step-item {
    padding: 1.5rem;
    border: 1px solid #e8e8e8;
    background-color: #fafafa;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    border-radius: 4px;
}

.step-number {
    font-size: 0.85rem;
    font-weight: 600;
    color: #0066cc;
    margin-bottom: 0.75rem;
    text-align: center;
    letter-spacing: 0.05em;
}

.step-number span {
    font-size: 1.5rem;
    display: block;
    margin-top: 0.25rem;
    font-weight: 700;
}

.step-title {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    line-height: 1.6;
    word-break: keep-all;
    overflow-wrap: break-word;
    hyphens: auto;
    letter-spacing: -0.01em;
}

.step-description {
    font-size: 0.875rem;
    color: #5a6c7d;
    line-height: 1.75;
    margin-bottom: 0.5rem;
}

.step-description:last-child {
    margin-bottom: 0;
}

.process-contact-button {
    margin-top: 2.5rem;
    text-align: center;
    padding-top: 1.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding-left: 0;
    padding-right: 0;
}

.process-contact-button .btn {
    padding: 1rem 2.5rem;
    font-size: 0.95rem;
    display: inline-block;
    max-width: calc(100% - 2rem);
    box-sizing: border-box;
    word-break: keep-all;
    white-space: normal;
    overflow-wrap: break-word;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 3rem 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.no-results h2 {
    margin-bottom: 1rem;
    color: #333;
}

.no-results p {
    color: #666;
}

/* Page Content */
.page-content {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    padding: 2rem;
    margin-bottom: 2rem;
}

.page-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #0066cc;
}

.page-title {
    font-size: 2rem;
    color: #333;
    margin: 0;
}

.page-content-body {
    line-height: 1.8;
}

.page-content-body h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #333;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 0.5rem;
}

.page-content-body h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #333;
}

.page-content-body p {
    margin-bottom: 1rem;
}

.page-content-body ul,
.page-content-body ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.page-content-body a {
    color: #0066cc;
    text-decoration: none;
}

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

/* Company Contact */
.company-contact {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #fafafa;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
}

.company-contact h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

.company-contact ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.company-contact li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e8e8e8;
    font-size: 0.9rem;
}

.company-contact li:last-child {
    border-bottom: none;
}

.company-contact strong {
    color: #5a6c7d;
    margin-right: 0.5rem;
    font-weight: 500;
}

.company-contact a {
    color: #0066cc;
    text-decoration: none;
}

.company-contact a:hover {
    text-decoration: underline;
}

/* Company Info Section */
.company-info-section {
    margin-bottom: 3rem;
}

.company-details-list {
    margin-top: 1.5rem;
}

.company-details-list dt {
    font-weight: bold;
    color: #333;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.company-details-list dt:first-child {
    margin-top: 0;
}

.company-details-list dd {
    margin-left: 0;
    margin-bottom: 0.5rem;
    color: #666;
    padding-left: 1rem;
}

.company-message-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

/* Contact Form */
.contact-page-form {
    margin-top: 2rem;
    max-width: 600px;
}

.form-field {
    margin-bottom: 1.5rem;
}

.form-field label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-field .required {
    color: #d32f2f;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-field textarea {
    resize: vertical;
    min-height: 150px;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.1);
}

.form-submit {
    margin-top: 2rem;
}

.form-submit .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Utilities */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
