/* Font - Franklin Gothic ATF */
@font-face {
    font-family: 'Franklin Gothic ATF';
    src: url('../assets/fonts/Franklin_Gothic_ATF.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Franklin Gothic ATF';
    src: url('../assets/fonts/Franklin_Gothic_ATF_Med.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Franklin Gothic ATF';
    src: url('../assets/fonts/Franklin_Gothic_ATF_Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Franklin Gothic ATF';
    src: url('../assets/fonts/Franklin_Gothic_ATF_Hvy.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
}

/* CSS Variables */
:root {
    --coral: #E15A4A;
    --coral-dark: #D14A3A;
    --text-dark: #2D2D2D;
    --text-gray: #666666;
    --bg-light: #FAFAFA;
    --bg-footer: #F5F5F5;
    --white: #FFFFFF;
    --font-family: 'Franklin Gothic ATF', Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 1000;
    padding: 20px 40px;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 18px;
    font-weight: 600;
    color: var(--coral);
    transition: opacity 0.2s;
}

.nav-link:hover {
    opacity: 0.8;
}

.nav-link-active {
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* FAQ Hero */
.faq-hero {
    padding: 160px 40px 60px;
    display: flex;
    justify-content: center;
}

.faq-content {
    max-width: 700px;
}

.faq-content h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.faq-description {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

/* FAQ Body */
.faq-body {
    padding: 60px 40px 100px;
    display: flex;
    justify-content: center;
}

.faq-body-content {
    max-width: 700px;
    width: 100%;
}

/* FAQ item (single question) */
.faq-item {
    padding: 32px 0;
    border-top: 1px solid #ececec;
}

.faq-item:first-of-type {
    border-top: none;
    padding-top: 16px;
}

.faq-item h2 {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.faq-item h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 14px;
    color: var(--text-dark);
}

.faq-item h4 {
    font-size: 17px;
    font-weight: 700;
    margin-top: 22px;
    margin-bottom: 8px;
    color: var(--coral);
}

.faq-item p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-dark);
    margin-bottom: 14px;
}

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

.faq-item a {
    color: var(--coral);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.faq-item a:hover {
    color: var(--coral-dark);
}

/* Callout */
.faq-callout {
    background: var(--bg-light);
    border-left: 3px solid var(--coral);
    padding: 18px 22px;
    margin-top: 18px;
    border-radius: 2px;
}

.faq-callout-label {
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--coral) !important;
    margin-bottom: 10px !important;
    line-height: 1.4 !important;
}

/* Sections (groups of related FAQ items) */
.faq-section {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 2px solid var(--text-dark);
}

.faq-section-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.faq-section-intro {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 8px;
}

/* Tables */
.faq-table-wrap {
    overflow-x: auto;
    margin: 16px 0 8px;
    -webkit-overflow-scrolling: touch;
}

.faq-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    min-width: 480px;
}

.faq-table th,
.faq-table td {
    text-align: left;
    padding: 12px 14px;
    border-bottom: 1px solid #ececec;
    vertical-align: top;
    line-height: 1.6;
}

.faq-table thead th {
    background: var(--bg-light);
    font-weight: 700;
    color: var(--text-dark);
    border-bottom: 2px solid var(--text-dark);
}

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

/* Lists */
.faq-list {
    margin: 4px 0 0 20px;
    padding-left: 4px;
}

.faq-list li {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.faq-list li:last-child {
    margin-bottom: 0;
}

/* Footer */
.footer {
    background: var(--bg-footer);
    padding: 50px 40px;
    border-top: 1px solid #e0e0e0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand {
    flex-shrink: 0;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
}

.footer-brand address {
    font-style: normal;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.footer-brand address a {
    color: var(--coral);
}

.footer-brand address a:hover {
    text-decoration: underline;
}

.copyright {
    font-size: 13px;
    color: var(--text-gray);
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
    }

    .header-right {
        gap: 16px;
    }

    .nav-link {
        font-size: 15px;
    }

    .logo img {
        height: 45px;
    }

    .faq-hero {
        padding: 120px 20px 40px;
    }

    .faq-content h1 {
        font-size: 30px;
    }

    .faq-description {
        font-size: 15px;
    }

    .faq-body {
        padding: 40px 20px 60px;
    }

    .faq-item {
        padding: 26px 0;
    }

    .faq-item h2 {
        font-size: 21px;
    }

    .faq-item h3 {
        font-size: 19px;
    }

    .faq-item h4 {
        font-size: 16px;
    }

    .faq-item p,
    .faq-list li {
        font-size: 16px;
    }

    .faq-section {
        margin-top: 36px;
        padding-top: 26px;
    }

    .faq-section-title {
        font-size: 26px;
    }

    .faq-callout {
        padding: 14px 16px;
    }

    .footer {
        padding: 40px 20px;
    }
}
