:root {
    --bg-soft-pink: #FFF0F2;
    --bg-white: #FFFFFF;
    --bg-deep-rose: #C74A6C;
    --bg-dark-plum: #4A1525;
    --text-primary: #2D1E20;
    --text-secondary: #705A5D;
    --text-light: #FFE3E8;
    --text-muted: #DDA7B3;
    --text-white: #FFFFFF;
    --font-headings: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --transition-default: all 0.3s ease-in-out;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-soft-pink);
    color: var(--text-primary);
    line-height: 1.6;
    font-weight: 400;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-headings);
    font-weight: 700;
    line-height: 1.25;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 3rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

h5 {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
}

h6 {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
}

a,
a:hover,
a:focus {
    text-decoration: none;
}

a {
    color: var(--bg-deep-rose);
    transition: var(--transition-default);
}

a:hover,
a:focus {
    color: var(--bg-dark-plum);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: var(--font-body);
    transition: var(--transition-default);
}

button:focus,
a:focus {
    outline: 2px solid var(--bg-deep-rose);
    outline-offset: 4px;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.35rem;
    }

    h4 {
        font-size: 1.2rem;
    }

    h5 {
        font-size: 1.1rem;
    }

    h6 {
        font-size: 1rem;
    }

    a,
    p,
    span,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    li {
        word-wrap: break-word;
        word-break: break-word;
        overflow-wrap: break-word;
    }
}

/* ===== header ===== */
.pilvona-header-section {
    background-color: var(--bg-soft-pink);
    width: 100%;
    overflow-x: hidden;
    position: relative;
    border-bottom: 1px solid rgba(74, 21, 37, 0.15);
}

.pilvona-navbar {
    padding: 1.25rem 0;
    width: 100%;
}

.pilvona-header-container {
    width: 100%;
}

.pilvona-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pilvona-logo-img {
    max-width: 50px;
    height: auto;
    object-fit: contain;
}

.pilvona-brand-name {
    font-family: inherit;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--bg-dark-plum);
    letter-spacing: -0.02em;
    white-space: nowrap;
}

@media (max-width: 767.98px) {
    .pilvona-brand-name {
        font-size: 0.8rem;
    }
}

.pilvona-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pilvona-nav-link {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.25s ease;
    padding: 0.5rem 0;
    text-decoration: none;
}

.pilvona-nav-link:hover {
    color: var(--bg-dark-plum);
}

.pilvona-cta-btn {
    background-color: var(--bg-deep-rose);
    color: var(--text-white) !important;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: none;
    transition: background-color 0.25s ease;
    text-decoration: none;
}

.pilvona-cta-btn:hover {
    background-color: var(--bg-dark-plum);
}

.pilvona-toggler {
    background: transparent;
    border: 1px solid rgba(74, 21, 37, 0.2);
    padding: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.25s ease;
}

.pilvona-toggler:hover {
    background-color: rgba(74, 21, 37, 0.05);
}

.pilvona-toggle-icon {
    font-size: 1.75rem;
    color: var(--bg-dark-plum);
}

.pilvona-mobile-menu {
    display: none;
    background-color: var(--bg-soft-pink);
    border-top: 1px solid rgba(74, 21, 37, 0.1);
    width: 100%;
}

.pilvona-mobile-menu.open {
    display: block;
}

.pilvona-mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pilvona-mobile-link {
    display: block;
    color: var(--bg-dark-plum);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    padding: 0.75rem 0;
    transition: color 0.25s ease;
}

.pilvona-mobile-link:hover {
    color: var(--bg-deep-rose);
}

.border-top.border-plum-light {
    border-top-color: rgba(74, 21, 37, 0.1) !important;
}

.pilvona-mobile-cta-btn {
    background-color: var(--bg-deep-rose);
    color: var(--text-white) !important;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.85rem 1.25rem;
    border-radius: 50px;
    border: none;
    text-align: center;
    transition: background-color 0.25s ease;
    text-decoration: none;
    display: block;
}

.pilvona-mobile-cta-btn:hover {
    background-color: var(--bg-dark-plum);
}

/* ===== hero_section ===== */
.digest-hero-section {
    background-color: var(--bg-soft-pink);
    overflow-x: hidden;
    position: relative;
}

.digest-card {
    background-color: var(--bg-white);
    border-radius: 16px;
    border: 1px solid rgba(199, 74, 108, 0.15);
    box-shadow: 0 10px 30px rgba(74, 21, 37, 0.05);
}

.digest-badge {
    background-color: var(--bg-soft-pink);
    color: var(--bg-deep-rose);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.digest-date {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.digest-date i {
    color: var(--bg-deep-rose);
}

.digest-title {
    color: var(--text-primary);
    font-weight: 800;
    line-height: 1.2;
    font-size: 2.25rem;
}

.digest-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.digest-label {
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 600;
}

.input-group-text {
    background-color: var(--bg-soft-pink);
    border-color: rgba(199, 74, 108, 0.2);
    color: var(--bg-deep-rose);
}

.digest-input {
    border-color: rgba(199, 74, 108, 0.2);
    color: var(--text-primary);
    background-color: var(--bg-white);
}

.digest-input:focus {
    border-color: var(--bg-deep-rose);
    box-shadow: 0 0 0 0.2rem rgba(199, 74, 108, 0.25);
}

.digest-input::placeholder {
    color: var(--text-secondary);
    opacity: 0.6;
}

.digest-checkbox-label {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.digest-link {
    color: var(--bg-deep-rose);
    text-decoration: underline;
    font-weight: 500;
}

.digest-link:hover {
    color: var(--bg-dark-plum);
}

.digest-submit-btn {
    background-color: var(--bg-dark-plum);
    color: var(--text-white);
    border: none;
    padding: 12px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.digest-submit-btn:hover {
    background-color: var(--bg-deep-rose);
    color: var(--text-white);
    transform: translateY(-1px);
}

.digest-image-container {
    min-height: 400px;
    border-radius: 16px;
    overflow: hidden;
}

.digest-hero-img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.digest-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 21, 37, 0.15) 0%, rgba(199, 74, 108, 0.15) 100%);
    pointer-events: none;
}

@media (max-width: 767.98px) {
    .digest-title {
        font-size: 1.125rem !important;
        line-height: 1.2 !important;
        hyphens: auto;
    }

    .digest-badge {
        font-size: 0.65rem;
    }

    .digest-date {
        font-size: 0.75rem;
    }

    .digest-desc {
        font-size: 0.85rem;
    }

    .digest-card {
        padding: 1.5rem !important;
    }

    .digest-image-container {
        min-height: 300px;
    }

    .digest-hero-img {
        min-height: 300px;
    }
}

/* ===== info_popups ===== */
#modals {
    overflow-x: hidden;
    hyphens: auto;
}

#modals .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#modals .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(74, 21, 37, 0.08) !important;
}

#modals .custom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1050;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: rgba(45, 30, 32, 0.8);
    padding: 1rem;
}

#modals .custom-modal.is-active {
    display: flex;
}

#modals .custom-modal-content {
    background-color: var(--bg-white);
    border-radius: 12px;
    max-width: 720px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    border: 1px solid var(--bg-soft-pink);
    animation: modalFadeIn 0.3s ease forwards;
}

@keyframes modalFadeIn {
    from {
        transform: translateY(20px);
    }

    to {
        transform: translateY(0);
    }
}

@media (max-width: 767.98px) {
    #modals h2 {
        font-size: 1rem !important;
        line-height: 1.2 !important;
    }

    #modals h3 {
        font-size: 0.875rem !important;
        line-height: 1.2 !important;
    }

    #modals .lead {
        font-size: 0.95rem !important;
    }

    #modals .custom-modal-content {
        padding: 1.5rem !important;
    }
}

/* ===== timeline_steps ===== */
html {
    scroll-behavior: smooth;
}

#timeline .timeline-nav-item {
    border: 2px solid transparent !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#timeline .timeline-nav-item:hover {
    border-color: var(--bg-deep-rose) !important;
    background-color: var(--bg-white) !important;
    transform: translateY(-2px);
}

#timeline .timeline-nav-item.active {
    border-color: var(--bg-dark-plum) !important;
    background-color: var(--bg-white) !important;
    box-shadow: 0 .5rem 1rem rgba(74, 21, 37, 0.1) !important;
}

#timeline .timeline-nav-item.active .step-num {
    background-color: var(--bg-deep-rose) !important;
    color: var(--text-white) !important;
}

#timeline .js-timeline-pane {
    animation: fadeInTimelinePane 0.45s ease-in-out forwards;
}

@keyframes fadeInTimelinePane {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 767.98px) {
    #timeline h1 {
        font-size: 1.125rem !important;
        line-height: 1.2 !important;
        hyphens: auto;
    }

    #timeline h2 {
        font-size: 1rem !important;
        line-height: 1.2 !important;
        hyphens: auto;
    }

    #timeline h3 {
        font-size: 0.875rem !important;
        line-height: 1.2 !important;
        hyphens: auto;
    }

    #timeline .lead {
        font-size: 0.875rem !important;
    }
}

/* ===== analytical_introduction ===== */
#intro-article {
    background-color: var(--bg-soft-pink);
    color: var(--text-primary);
    overflow-x: hidden;
    padding: 5rem 0;
}

#intro-article .article-title {
    color: var(--bg-dark-plum);
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 1.2;
}

#intro-article .article-subtitle {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 1.15rem;
}

#intro-article .drop-cap::first-letter {
    font-size: 4rem;
    float: left;
    line-height: 0.85;
    margin-top: 0.15em;
    margin-right: 0.15em;
    font-weight: 800;
    color: var(--bg-deep-rose);
    font-family: serif;
}

#intro-article p {
    color: var(--text-primary);
    line-height: 1.65;
    margin-bottom: 1.5rem;
    text-align: justify;
}

#intro-article .image-container {
    border-radius: 12px;
    overflow: hidden;
    border: 8px solid var(--bg-white);
    box-shadow: 0 10px 30px rgba(74, 21, 37, 0.08);
    position: relative;
}

#intro-article .image-container img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    display: block;
}

#intro-article .highlight-badge {
    background-color: var(--bg-deep-rose);
    color: var(--text-white);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-weight: 600;
}

#intro-article .keyword-highlight {
    color: var(--bg-dark-plum);
    font-weight: 600;
    border-bottom: 2px solid var(--bg-deep-rose);
}

@media (max-width: 767px) {
    #intro-article {
        padding: 3rem 0;
    }

    #intro-article .article-title {
        font-size: 1rem !important;
        line-height: 1.25 !important;
        word-break: break-word;
        hyphens: auto;
    }

    #intro-article .article-subtitle {
        font-size: 0.875rem !important;
        line-height: 1.25 !important;
    }

    #intro-article p {
        font-size: 0.875rem;
        line-height: 1.4;
        text-align: left;
        hyphens: auto;
    }

    #intro-article .image-container img {
        min-height: 320px;
    }
}

/* ===== key_principles ===== */
#principles {
    overflow-x: hidden;
}

#principles .js-principle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(74, 21, 37, 0.08) !important;
}

@media (max-width: 767.98px) {
    #principles h2 {
        font-size: 1.25rem !important;
        line-height: 1.2 !important;
    }

    #principles h3 {
        font-size: 1rem !important;
        line-height: 1.2 !important;
    }

    #principles p {
        font-size: 0.85rem !important;
        line-height: 1.4;
    }
}

/* ===== strategy_checklist ===== */
.strategy-checklist-section .checklist-card {
    border-left: 4px solid transparent !important;
    box-shadow: 0 4px 12px rgba(74, 21, 37, 0.03);
}

.strategy-checklist-section .checklist-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 21, 37, 0.08) !important;
}

.strategy-checklist-section .js-checklist-item.is-checked {
    border-left: 4px solid var(--bg-deep-rose) !important;
    background-color: var(--bg-white) !important;
    box-shadow: 0 6px 18px rgba(199, 74, 68, 0.08) !important;
}

.strategy-checklist-section .js-checklist-item.is-checked .custom-checkbox-ui {
    background-color: var(--bg-deep-rose) !important;
    border-color: var(--bg-deep-rose) !important;
    color: var(--text-white) !important;
}

.strategy-checklist-section .js-checklist-item.is-checked .card-heading {
    color: var(--bg-deep-rose) !important;
}

@media (max-width: 767px) {
    .strategy-checklist-section h2.strategy-title {
        font-size: 1.125rem !important;
        line-height: 1.25 !important;
    }

    .strategy-checklist-section h3.card-heading {
        font-size: 0.875rem !important;
        line-height: 1.3 !important;
    }

    .strategy-checklist-section .strategy-badge {
        font-size: 0.75rem !important;
    }

    .strategy-checklist-section .strategy-desc {
        font-size: 0.85rem !important;
        hyphens: auto;
    }
}

/* ===== deep_planning_article ===== */
#deep-article {
    background-color: var(--bg-soft-pink);
    color: var(--text-primary);
    overflow-x: hidden;
    width: 100%;
}

#deep-article .bg-rose-accent {
    background-color: var(--bg-deep-rose);
    color: var(--text-white);
    font-size: 0.75rem;
    letter-spacing: 1.5px;
}

#deep-article .article-title {
    color: var(--bg-dark-plum);
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.25;
}

#deep-article .article-meta {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

#deep-article .text-rose-accent {
    color: var(--bg-deep-rose);
}

#deep-article .article-lead {
    font-size: 1.2rem;
    line-height: 1.7;
    font-weight: 500;
    color: var(--text-primary);
}

#deep-article p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-primary);
}

#deep-article .article-keyword {
    color: var(--bg-deep-rose);
    font-weight: 700;
}

#deep-article .image-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(74, 21, 37, 0.08);
}

#deep-article .workspace-img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

#deep-article .image-container:hover .workspace-img {
    transform: scale(1.03);
}

#deep-article .image-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(74, 21, 37, 0.9));
    color: var(--text-white);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

#deep-article .cta-card {
    background-color: var(--bg-dark-plum);
    color: var(--text-light);
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(74, 21, 37, 0.15);
}

#deep-article .cta-icon {
    font-size: 2.5rem;
    color: var(--text-light);
}

#deep-article .cta-title {
    font-size: 1.75rem;
    font-weight: 700;
}

#deep-article .cta-description {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-light);
    opacity: 0.95;
}

#deep-article .cta-btn {
    background-color: var(--bg-deep-rose);
    color: var(--text-white);
    border: none;
    box-shadow: 0 4px 15px rgba(199, 74, 108, 0.4);
    transition: all 0.3s ease;
}

#deep-article .cta-btn:hover {
    background-color: #b03d5b;
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(199, 74, 108, 0.5);
}

@media (max-width: 767.98px) {
    #deep-article .article-title {
        font-size: 1.125rem !important;
        line-height: 1.2 !important;
        hyphens: auto;
    }

    #deep-article h2.cta-title {
        font-size: 1rem !important;
        line-height: 1.3 !important;
        hyphens: auto;
    }

    #deep-article p,
    #deep-article .article-lead {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
    }

    #deep-article .workspace-img {
        height: 250px;
    }
}

/* ===== mistakes_guide ===== */
#mistakes {
    overflow-x: hidden;
}

#mistakes .mistakes-title {
    color: var(--bg-dark-plum) !important;
    font-weight: 700;
}

#mistakes .mistakes-lead {
    color: var(--text-secondary) !important;
}

#mistakes .acc-item {
    border: 1px solid rgba(199, 74, 108, 0.15);
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--bg-white);
    box-shadow: 0 4px 6px -1px rgba(74, 21, 37, 0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#mistakes .acc-item:hover {
    border-color: rgba(199, 74, 108, 0.3);
    box-shadow: 0 6px 12px -2px rgba(74, 21, 37, 0.06);
}

#mistakes .acc-trigger {
    background: var(--bg-white);
    color: var(--text-primary) !important;
    padding: 16px 20px;
    width: 100%;
    text-align: left;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

#mistakes .acc-trigger:focus {
    outline: none;
}

#mistakes .acc-trigger.active {
    background-color: var(--bg-dark-plum);
    color: var(--text-white) !important;
}

#mistakes .acc-icon {
    font-size: 1.35rem;
    color: var(--bg-deep-rose);
    transition: transform 0.3s ease, color 0.3s ease;
}

#mistakes .acc-trigger.active .acc-icon {
    transform: rotate(180deg);
    color: var(--text-white);
}

#mistakes .acc-content {
    background-color: var(--bg-white);
    color: var(--text-secondary) !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
    padding: 0 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

#mistakes .acc-content.active {
    padding-bottom: 20px;
    padding-top: 4px;
}

#mistakes .acc-content strong {
    color: var(--bg-deep-rose);
}

@media (max-width: 767.98px) {
    #mistakes h2.mistakes-title {
        font-size: 1rem !important;
        line-height: 1.2 !important;
        hyphens: auto;
    }

    #mistakes .mistakes-lead {
        font-size: 0.875rem !important;
    }

    #mistakes .acc-trigger {
        padding: 12px 16px;
    }

    #mistakes .acc-title-text {
        font-size: 0.875rem !important;
        line-height: 1.2;
        hyphens: auto;
    }

    #mistakes .acc-content {
        font-size: 0.8rem !important;
        padding: 0 16px;
    }

    #mistakes .acc-content.active {
        padding-bottom: 16px;
        padding-top: 4px;
    }

    #mistakes .image-box {
        height: 180px;
    }
}

/* ===== faq_accordion ===== */
#faq {
    background-color: var(--bg-soft-pink);
    color: var(--text-primary);
    overflow-x: hidden;
    position: relative
}

#faq .container {
    overflow-x: hidden
}

.faq-title {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 1rem
}

.faq-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem
}

.faq-accordion {
    margin-top: 2rem
}

.faq-accordion-item {
    background-color: var(--bg-white);
    border: 1px solid rgba(74, 21, 37, 0.1);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease
}

.faq-accordion-item.is-active {
    border-color: var(--bg-deep-rose);
    box-shadow: 0 10px 20px rgba(199, 74, 108, 0.05)
}

.faq-accordion-header {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: between;
    align-items: center;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.05rem;
    transition: background-color 0.3s ease
}

.faq-accordion-header:hover {
    background-color: rgba(199, 74, 108, 0.02)
}

.faq-question-text {
    flex-grow: 1;
    padding-right: 1rem;
    color: var(--text-primary)
}

.faq-accordion-icon {
    color: var(--bg-deep-rose);
    font-size: 1.4rem;
    transition: transform 0.3s ease;
    flex-shrink: 0
}

.faq-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    padding: 0 1.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6
}

.faq-accordion-item.is-active .faq-accordion-body {
    padding-bottom: 1.5rem
}

.faq-accordion-item.is-active .faq-accordion-icon {
    transform: rotate(180deg)
}

@media (max-width:767.98px) {
    #faq {
        padding: 3.5rem 0
    }

    .faq-title {
        font-size: 1rem !important;
        line-height: 1.2;
        margin-bottom: 0.75rem
    }

    .faq-subtitle {
        font-size: 0.875rem
    }

    .faq-accordion-header {
        padding: 1rem;
        font-size: 0.875rem !important;
        line-height: 1.25
    }

    .faq-question-text {
        font-size: 0.875rem !important
    }

    .faq-accordion-body {
        font-size: 0.825rem;
        padding: 0 1rem
    }

    .faq-accordion-item.is-active .faq-accordion-body {
        padding-bottom: 1rem
    }
}

/* ===== footer ===== */
#footer {
    font-family: sans-serif;
}

.footer-logo {
    max-width: 50px;
    height: auto;
    object-fit: contain;
}

.footer-stamp {
    max-width: 90px;
    height: auto;
    object-fit: contain;
}

.footer-nav-link:hover {
    color: var(--bg-deep-rose) !important;
    text-decoration: underline !important;
}

@media (max-width: 767px) {
    .footer-heading {
        font-size: 0.875rem !important;
        line-height: 1.2;
    }

    .footer-brand {
        font-size: 0.75rem !important;
    }

    .footer-stamp {
        max-width: 80px;
    }
}