/* ============================================
   Content Templates — Shared Styles
   State Pages | Apostille Countries | Documents
   ============================================ */

/* ---------- Layout Container ---------- */
.ct-page {
    padding: 40px 0 60px;
    font-family: 'Poppins', 'Raleway', sans-serif;
    color: #333;
    line-height: 1.75;
}

.ct-page h1 {
    color: #004085;
    font-weight: 700;
    font-size: 3.2rem;
    margin-bottom: 15px;
}

.ct-page h2,
.ct-page h3 {
    color: #004085;
    font-weight: 600;
}

/* ---------- Breadcrumb ---------- */
.ct-breadcrumb {
    background: #f0f4f8;
    border-radius: 6px;
    padding: 12px 20px;
    margin-bottom: 30px;
    font-size: 1.4rem;
}
.ct-breadcrumb a {
    color: #004085;
    text-decoration: none;
}
.ct-breadcrumb a:hover {
    text-decoration: underline;
}
.ct-breadcrumb .separator {
    margin: 0 8px;
    color: #999;
}

/* ---------- Intro Block ---------- */
.ct-intro {
    font-size: 1.6rem;
    color: #555;
    margin-bottom: 25px;
    border-left: 4px solid #004085;
    padding-left: 15px;
    background: #f8fafc;
    padding: 15px 20px;
    border-radius: 0 6px 6px 0;
}

/* ---------- Featured Image ---------- */
.ct-featured-image {
    width: auto;
    max-height: 420px;
    margin: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* ---------- Content Body ---------- */
.ct-content-body {
    font-size: 1.5rem;
    line-height: 1.85;
    color: #444;
}

.ct-content-body h2,
.ct-content-body h3,
.ct-content-body h4 {
    margin-top: 25px;
    margin-bottom: 12px;
}

.ct-content-body img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
}

.ct-content-body ul,
.ct-content-body ol {
    padding-left: 20px;
    margin-bottom: 15px;
}

.ct-content-body a {
    color: #004085;
    text-decoration: underline;
}
.ct-content-body a:hover {
    color: #002752;
}

/* ---------- Section Label ---------- */
.ct-section-label {
    display: inline-block;
    background: linear-gradient(135deg, #004085, #0069d9);
    color: #fff;
    font-weight: 600;
    font-size: 1.4rem;
    padding: 8px 22px;
    border-radius: 25px;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

/* ---------- Sidebar ---------- */
.ct-sidebar {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 25px;
    position: sticky;
    top: 20px;
}

.ct-sidebar-title {
    color: #004085;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #004085;
}

.ct-sidebar img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.ct-sidebar a {
    color: #004085;
}

/* ---------- FAQ Section ---------- */
.ct-faq-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e2e8f0;
}

.ct-faq-section h2 {
    font-size: 2.2rem;
}

.ct-faq-accordion .accordion-item {
    border: 1px solid #e2e8f0;
    border-radius: 8px !important;
    margin-bottom: 10px;
    overflow: hidden;
}

.ct-faq-accordion .accordion-button {
    font-weight: 600;
    font-size: 1.5rem;
    color: #004085;
    background: #f8fafc;
    padding: 16px 20px;
    box-shadow: none !important;
}

.ct-faq-accordion .accordion-button:not(.collapsed) {
    background: #e8f0fe;
    color: #002752;
}

.ct-faq-accordion .accordion-button::after {
    filter: brightness(0) saturate(100%) invert(18%) sepia(80%) saturate(2000%) hue-rotate(200deg);
}

.ct-faq-accordion .accordion-body {
    font-size: 1.45rem;
    line-height: 1.8;
    color: #555;
    padding: 16px 20px;
    background: #fff;
}

/* ---------- Date Badge ---------- */
.ct-date-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #777;
    font-size: 1.35rem;
    margin-bottom: 20px;
}
.ct-date-badge i {
    color: #004085;
}

/* ---------- CTA ---------- */
.ct-cta-block {
    background: linear-gradient(135deg, #004085, #0069d9);
    color: #fff;
    border-radius: 10px;
    padding: 30px;
    margin-top: 40px;
    text-align: center;
}
.ct-cta-block h3 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 10px;
}
.ct-cta-block p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}
.ct-cta-block .btn-cta {
    background: #fff;
    color: #004085;
    font-weight: 600;
    padding: 10px 30px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}
.ct-cta-block .btn-cta:hover {
    background: #e8f0fe;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ---------- Schema / SEO hidden ---------- */
.ct-schema-markup {
    display: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
    .ct-sidebar {
        position: static;
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .ct-page {
        padding: 20px 0 40px;
    }
    .ct-page h1 {
        font-size: 2.6rem;
    }
    .ct-featured-image {
        max-height: 260px;
    }
}
