/* ===== Company Info Page Styles - JGA Premier Air ===== */

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

/* Legal Page Main */
.ac-legal-page {
    background: #f8fafc;
    padding: 120px 0 80px;
    min-height: 100vh;
}

/* Legal Content */
.ac-legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

/* Back Link */
.ac-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0369a1;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 32px;
    transition: color 0.3s ease;
}

.ac-back-link:hover {
    color: #0ea5e9;
}

.ac-back-link img {
    opacity: 0.8;
    filter: invert(30%) sepia(80%) saturate(1000%) hue-rotate(180deg);
}

/* Typography */
.ac-legal-content h1 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #0c4a6e;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 3px solid #0ea5e9;
}

.ac-legal-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0c4a6e;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0f2fe;
}

.ac-legal-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #0369a1;
    margin: 28px 0 12px;
}

.ac-legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 16px;
}

.ac-legal-content a {
    color: #0369a1;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s ease;
}

.ac-legal-content a:hover {
    color: #0ea5e9;
}

.ac-legal-content strong {
    color: #1e293b;
    font-weight: 600;
}

/* Lists */
.ac-legal-content ul {
    margin: 16px 0 24px;
    padding-left: 24px;
}

.ac-legal-content li {
    font-size: 1rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 10px;
    position: relative;
}

.ac-legal-content ul li::marker {
    color: #0ea5e9;
}

/* Highlight Box */
.ac-highlight-box {
    background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
    border-left: 4px solid #0ea5e9;
    border-radius: 0 12px 12px 0;
    padding: 24px 28px;
    margin: 24px 0;
}

.ac-highlight-box p {
    margin: 0;
    color: #0c4a6e;
}

.ac-highlight-box p + p {
    margin-top: 12px;
}

.ac-highlight-box strong {
    color: #0c4a6e;
}

/* ===== Responsive Design ===== */

@media (max-width: 768px) {
    .ac-legal-page {
        padding: 100px 0 60px;
    }

    .ac-legal-content {
        padding: 35px 28px;
        border-radius: 16px;
    }

    .ac-legal-content h1 {
        font-size: 1.75rem;
        margin-bottom: 24px;
    }

    .ac-legal-content h2 {
        font-size: 1.3rem;
        margin: 32px 0 16px;
    }

    .ac-legal-content h3 {
        font-size: 1.1rem;
        margin: 24px 0 10px;
    }

    .ac-legal-content p,
    .ac-legal-content li {
        font-size: 0.95rem;
    }

    .ac-highlight-box {
        padding: 20px 22px;
    }
}

@media (max-width: 480px) {
    .ac-legal-page {
        padding: 90px 0 50px;
    }

    .ac-legal-content {
        padding: 28px 20px;
        border-radius: 14px;
    }

    .ac-legal-content h1 {
        font-size: 1.5rem;
    }

    .ac-legal-content h2 {
        font-size: 1.2rem;
        margin: 28px 0 14px;
    }

    .ac-legal-content h3 {
        font-size: 1.05rem;
    }

    .ac-legal-content p,
    .ac-legal-content li {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .ac-highlight-box {
        padding: 18px 18px;
        margin: 20px -20px;
        border-radius: 0;
    }

    .ac-back-link {
        font-size: 14px;
    }
}

@media (max-width: 375px) {
    .ac-legal-page {
        padding: 80px 0 40px;
    }

    .ac-legal-content {
        padding: 24px 16px;
        border-radius: 12px;
    }

    .ac-legal-content h1 {
        font-size: 1.35rem;
    }

    .ac-legal-content h2 {
        font-size: 1.15rem;
    }

    .ac-legal-content h3 {
        font-size: 1rem;
    }

    .ac-legal-content p,
    .ac-legal-content li {
        font-size: 0.875rem;
    }

    .ac-highlight-box {
        padding: 16px 14px;
        margin: 18px -16px;
    }

    .ac-legal-content ul {
        padding-left: 20px;
    }
}
