@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

* {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background-color: #003049;
    color: white;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: white;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #001a2c;
}

::-webkit-scrollbar-thumb {
    background: #2b9348;
    border-radius: 3px;
}

/* WhatsApp Button */
.scroll-up-btn {
    position: fixed;
    height: 48px;
    width: 48px;
    background: #3fc351;
    box-shadow: 0 4px 15px rgba(63, 195, 81, 0.25);
    right: 25px;
    bottom: 25px;
    color: #fff;
    z-index: 999;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.scroll-up-btn span {
    display: none;
}

.scroll-up-btn i {
    font-size: 26px;
}

.scroll-up-btn.show {
    opacity: 1;
}

.scroll-up-btn:hover {
    transform: scale(1.08);
}

/* Container */
.container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

/* Header Section */
.header-section {
    width: 100%;
    min-height: 42vh;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    position: relative;
    padding: 80px 0 45px;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 48, 73, 0.6) 0%, rgba(0, 48, 73, 0.95) 100%);
}

.header-section .container {
    position: relative;
    z-index: 2;
}

.pages-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.pages-indicator a {
    font-size: 13px;
    font-weight: 400;
    opacity: 0.5;
    transition: 0.2s ease;
}

.pages-indicator a:last-child {
    opacity: 0.8;
}

.pages-indicator a:hover {
    opacity: 1;
}

.header-content {
    max-width: 600px;
}

.article-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #3fc351;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.header-title {
    font-size: 34px;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 10px;
}

.header-subtitle {
    font-size: 15px;
    opacity: 0.65;
    line-height: 1.6;
    font-weight: 300;
}

/* Article Section */
.article-section {
    padding: 50px 0;
}

.article-wrapper {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 50px;
    align-items: start;
}

/* Main Content */
.article-main {
    max-width: 680px;
}

.article-block {
    margin-bottom: 40px;
}

.article-block:last-child {
    margin-bottom: 0;
}

.lead-text {
    font-size: 16px;
    line-height: 1.85;
    opacity: 0.8;
    font-weight: 300;
}

.article-block h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.article-block h2 i {
    color: #3fc351;
    font-size: 16px;
}

.article-block h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 28px 0 10px;
    color: rgba(255, 255, 255, 0.9);
}

.article-block p {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.75;
    font-weight: 300;
    margin-bottom: 12px;
}

/* Highlight Box */
.highlight-box {
    background: rgba(63, 195, 81, 0.06);
    border-left: 3px solid #3fc351;
    padding: 18px 20px;
    display: flex;
    gap: 15px;
    margin: 25px 0;
}

.highlight-icon {
    width: 36px;
    height: 36px;
    background: #3fc351;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    flex-shrink: 0;
}

.highlight-content h4 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.highlight-content p {
    font-size: 13px;
    line-height: 1.7;
    opacity: 0.9;
    margin: 0;
}

/* Season Cards */
.season-card {
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid;
    padding: 18px;
    margin: 18px 0;
}

.season-card.dry {
    border-color: #f4a261;
}

.season-card.wet {
    border-color: #457b9d;
}

.season-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.season-card.dry .season-header {
    color: #f4a261;
}

.season-card.wet .season-header {
    color: #457b9d;
}

.season-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.season-list li {
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.75;
}

.season-list li i {
    color: #3fc351;
    font-size: 9px;
}

/* Pro Tip */
.pro-tip {
    background: rgba(244, 162, 97, 0.05);
    border-left: 3px solid #f4a261;
    padding: 15px 18px;
    margin-top: 20px;
}

.tip-header {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #f4a261;
    margin-bottom: 6px;
}

.pro-tip p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
}

/* Months Grid */
.months-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.month-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 14px 10px;
    text-align: center;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.month-card:hover {
    background: rgba(255, 255, 255, 0.04);
}

.month-card.best {
    background: rgba(63, 195, 81, 0.08);
}

.month-card.good {
    background: rgba(244, 162, 97, 0.05);
}

.month-card.moderate {
    background: rgba(69, 123, 157, 0.05);
}

.month-card.wet {
    background: rgba(255, 255, 255, 0.015);
}

.month-name {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 5px;
}

.month-rating {
    margin-bottom: 5px;
}

.month-rating i {
    color: #f4a261;
    font-size: 9px;
    margin: 0 1px;
}

.month-card p {
    font-size: 10px;
    opacity: 0.55;
    margin: 0;
    line-height: 1.4;
}

/* Events List */
.events-list {
    margin-top: 20px;
}

.event-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.event-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.event-date {
    background: #3fc351;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    text-align: center;
    min-width: 55px;
    height: fit-content;
}

.event-info h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.event-info p {
    font-size: 12px;
    opacity: 0.65;
    margin: 0;
    line-height: 1.5;
}

/* Recommendations Grid */
.recommendations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 20px;
}

.rec-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 18px;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.rec-card:hover {
    background: rgba(255, 255, 255, 0.04);
}

.rec-icon {
    width: 36px;
    height: 36px;
    background: rgba(63, 195, 81, 0.1);
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: #3fc351;
    margin-bottom: 12px;
}

.rec-card h4 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px;
}

.rec-card p {
    font-size: 12px;
    opacity: 0.65;
    margin: 0;
    line-height: 1.5;
}

/* Sidebar */
.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: sticky;
    top: 25px;
}

.sidebar-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    padding: 20px;
}

.sidebar-card h4 {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-card h4 i {
    color: #3fc351;
    font-size: 12px;
}

.sidebar-card p {
    font-size: 13px;
    opacity: 0.7;
    line-height: 1.6;
    margin-bottom: 15px;
}

.cta-card {
    background: rgba(63, 195, 81, 0.06);
}

.sidebar-btn {
    display: block;
    text-align: center;
    padding: 10px 16px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 8px;
    transition: all 0.2s ease;
}

.sidebar-btn:last-child {
    margin-bottom: 0;
}

.sidebar-btn.primary {
    background: #3fc351;
}

.sidebar-btn.primary:hover {
    background: #2b9348;
}

.sidebar-btn.secondary {
    background: rgba(255, 255, 255, 0.06);
}

.sidebar-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.related-list {
    list-style: none;
}

.related-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.related-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.related-list a {
    font-size: 12px;
    opacity: 0.75;
    transition: all 0.2s ease;
}

.related-list a:hover {
    opacity: 1;
    color: #3fc351;
}

/* Weather Card */
.weather-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.weather-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 5px;
}

.weather-item .label {
    font-size: 11px;
    opacity: 0.55;
}

.weather-item .value {
    font-size: 12px;
    font-weight: 600;
    color: #3fc351;
}

/* Back Section */
.back-section {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    opacity: 0.6;
    transition: all 0.2s ease;
}

.back-link:hover {
    opacity: 1;
    color: #3fc351;
}

.back-link:hover i {
    transform: translateX(-3px);
}

.back-link i {
    transition: transform 0.2s ease;
}

/* Footer */
.footer {
    padding: 22px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer p {
    font-size: 12px;
    opacity: 0.45;
}

.footer a {
    color: #3fc351;
}

/* Footer */
.footer {
    padding: 2em 0;
    width: 100%;
    height: auto;
    display: grid;
    place-items: center;
    background: #14213d;
    position: relative;
}

.footer .main-content {
    width: 90%;
    display: flex;
    font-size: 14px;
    color: #ffff !important;
}

.footer .main-content .box {
    flex-basis: 25%;
    padding: 10px 20px;
}

.footer .main-content .content-2 {
    width: 100%;
    height: auto;
}

.footer .box h2 {
    font-size: 1.125rem;
    font-weight: 600;
    text-transform: uppercase;
    text-align: left;
}

.footer .box .content-1 {
    margin: 20px 0 0 0;
    position: relative;
}

.footer .box .content-1:before {
    position: absolute;
    content: "";
    top: -10px;
    height: 2px;
    width: 100%;
    background: #14213d;
}

.footer .box .content-1:after {
    position: absolute;
    content: "";
    height: 2px;
    width: 15%;
    border-radius: 20px;
    background: #3fc351;
    top: -10px;
    left: 0;
}

.footer .content-1 {
    padding: 0 0 !important;
}

.footer .left .content-1 p {
    padding-top: 1em;
    text-align: justify;
}

.footer .center {
    margin-left: 2em !important;
    padding-left: 4em !important;
}

.footer .right .content-1 ul {
    padding-top: 1em !important;
    padding-left: 1em !important;
    list-style: none;
}

.footer .right .content-1 ul li {
    padding: 0.2em 0;
    text-align: left;
}

.footer .right .content-1 ul li a {
    color: #fff;
    transition: 0.05s ease-in-out;
}

.footer .right .content-1 ul li a:hover {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: underline;
}

.footer .right .content-2 .title-txt {
    padding-top: 0.5em;
    font-size: 36px;
    letter-spacing: 0.5px;
    font-weight: 600;
    text-align: left;
    line-height: 1.3em;
}

.footer .right .content-2 .title-txt p {
    text-align: left;
}

.footer .title-txt span {
    color: #3fc351;
}

@media screen and (max-width: 900px) {
    .footer .main-content {
        flex-wrap: wrap;
        flex-direction: column;
    }

    .footer .main-content .box {
        margin: 5px 0;
    }

    .footer .center {
        padding-left: 0 !important;
        margin-left: 0 !important;
    }
}

/* Responsive */
@media (max-width: 1000px) {
    .article-wrapper {
        grid-template-columns: 1fr;
    }

    .article-main {
        max-width: 100%;
    }

    .article-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .months-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .header-section {
        min-height: 35vh;
        padding: 70px 0 35px;
    }

    .header-title {
        font-size: 26px;
    }

    .header-subtitle {
        font-size: 14px;
    }

    .article-block h2 {
        font-size: 18px;
    }

    .highlight-box {
        flex-direction: column;
        gap: 10px;
    }

    .highlight-icon {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .season-list {
        grid-template-columns: 1fr;
    }

    .months-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .recommendations-grid {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        grid-template-columns: 1fr;
    }

    .event-item {
        flex-direction: column;
        gap: 8px;
    }

    .event-date {
        width: fit-content;
    }
}

@media (max-width: 500px) {
    .container {
        width: 92%;
    }

    .header-title {
        font-size: 22px;
    }

    .article-block h2 {
        font-size: 16px;
        flex-wrap: wrap;
    }

    .months-grid {
        gap: 6px;
    }

    .month-card {
        padding: 10px 8px;
    }

    .scroll-up-btn {
        right: 18px;
        bottom: 18px;
        width: 42px;
        height: 42px;
    }

    .scroll-up-btn i {
        font-size: 22px;
    }
}
/* Place Blocks - Must Visit Places Article */
.place-block {
    position: relative;
    padding-left: 50px;
}

.place-number {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 28px;
    font-weight: 700;
    color: #3fc351;
    opacity: 0.3;
    line-height: 1;
}

.place-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
}

.place-meta span {
    font-size: 11px;
    opacity: 0.6;
    display: flex;
    align-items: center;
    gap: 5px;
}

.place-meta span i {
    color: #3fc351;
    font-size: 10px;
}

.place-highlights {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    padding: 15px 18px;
    margin: 15px 0;
}

.place-highlights h4 {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    color: #3fc351;
}

.place-highlights ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.place-highlights ul li {
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.75;
}

.place-highlights ul li i {
    color: #3fc351;
    font-size: 9px;
}

/* Itinerary Grid */
.itinerary-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 20px;
}

.itinerary-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    padding: 18px;
    transition: background 0.2s ease;
}

.itinerary-card:hover {
    background: rgba(255, 255, 255, 0.04);
}

.itinerary-card h4 {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.itinerary-card h4 i {
    color: #3fc351;
}

.itinerary-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.itinerary-card ul li {
    font-size: 12px;
    opacity: 0.7;
    padding: 3px 0;
    padding-left: 15px;
    position: relative;
}

.itinerary-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3fc351;
}

/* Highlight Box Button */
.highlight-btn {
    display: inline-block;
    background: #3fc351;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 10px;
    transition: background 0.2s ease;
}

.highlight-btn:hover {
    background: #2b9348;
}

/* Sidebar Navigation List */
.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-list li {
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-list li:last-child {
    border-bottom: none;
}

.nav-list li a {
    color: #fff;
    font-size: 12px;
    opacity: 0.7;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: opacity 0.2s ease;
}

.nav-list li a:hover {
    opacity: 1;
}

.nav-list li a i {
    font-size: 8px;
    color: #3fc351;
}

@media (max-width: 768px) {
    .place-block {
        padding-left: 0;
        padding-top: 35px;
    }

    .place-number {
        top: 0;
        left: 0;
    }

    .place-highlights ul {
        grid-template-columns: 1fr;
    }

    .itinerary-grid {
        grid-template-columns: 1fr;
    }
}

/* Packing List Styles */
.checklist-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.checklist-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    padding: 18px;
}

.checklist-card.full-width {
    grid-column: 1 / -1;
}

.checklist-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #3fc351;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
    font-size: 12px;
    opacity: 0.8;
}

.checkbox {
    width: 14px;
    height: 14px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    flex-shrink: 0;
    margin-top: 2px;
}

.documents-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px 20px;
}

/* Temple Requirements */
.temple-requirements {
    margin-top: 20px;
}

.requirement-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.requirement-item:last-child {
    border-bottom: none;
}

.requirement-item .req-icon {
    color: #3fc351;
    font-size: 16px;
    flex-shrink: 0;
}

.requirement-item.warning .req-icon {
    color: #f4a261;
}

.req-text strong {
    font-size: 13px;
    display: block;
    margin-bottom: 3px;
}

.req-text p {
    font-size: 12px;
    opacity: 0.7;
    margin: 0;
    line-height: 1.5;
}

/* Info Box */
.info-box {
    background: rgba(69, 123, 157, 0.1);
    border-left: 3px solid #457b9d;
    padding: 15px 18px;
    margin-top: 20px;
}

.info-header {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #457b9d;
    margin-bottom: 6px;
}

.info-box p {
    margin: 0;
    font-size: 12px;
    line-height: 1.6;
    opacity: 0.85;
}

/* Money Tips */
.money-tips {
    margin-top: 20px;
}

.money-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.money-item:last-child {
    border-bottom: none;
}

.money-icon {
    width: 40px;
    height: 40px;
    background: rgba(63, 195, 81, 0.1);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: #3fc351;
    flex-shrink: 0;
}

.money-text strong {
    font-size: 13px;
    display: block;
    margin-bottom: 3px;
}

.money-text p {
    font-size: 12px;
    opacity: 0.7;
    margin: 0;
    line-height: 1.5;
}

/* Don't Bring List */
.dont-bring-list {
    margin-top: 20px;
}

.dont-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dont-item:last-child {
    border-bottom: none;
}

.dont-item i {
    color: #e63946;
    font-size: 14px;
    margin-top: 2px;
}

.dont-item.warning i {
    color: #f4a261;
}

.dont-item span {
    font-size: 12px;
    opacity: 0.8;
    line-height: 1.5;
}

/* Final Checklist */
.final-checklist {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 20px;
}

.final-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 6px;
    font-size: 12px;
    opacity: 0.85;
}

.checkbox-round {
    width: 16px;
    height: 16px;
    border: 2px solid #3fc351;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Sidebar Luggage Tips */
.luggage-tips {
    margin-bottom: 12px;
}

.luggage-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 12px;
}

.luggage-item:last-child {
    border-bottom: none;
}

.luggage-label {
    opacity: 0.7;
}

.luggage-value {
    font-weight: 600;
    color: #3fc351;
}

.sidebar-note {
    font-size: 11px;
    opacity: 0.6;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .checklist-grid {
        grid-template-columns: 1fr;
    }

    .documents-list {
        grid-template-columns: 1fr;
    }

    .final-checklist {
        grid-template-columns: 1fr;
    }
}
