/* ===== RESPONSIVE DESIGN SYSTEM ===== */
/* 
 * Mobile-first approach with progressive enhancement
 * Breakpoints: 400px, 576px, 768px, 992px, 1200px
 * Supports: Very Small Mobile, Mobile, Tablet, Desktop, Large Desktop
 */

/* ===== VERY SMALL DEVICES (phones, 400px and down) ===== */
@media (max-width: 399.98px) {
    /* Container & Layout */
    .container {
        padding: 0 10px;
    }

    /* Section Titles */
    .section-title {
        font-size: 32px !important;
        line-height: 1.3 !important;
        margin-bottom: 20px !important;
    }

    /* Section Titles */
    .section-title {
        font-size: 32px !important;
        line-height: 1.3 !important;
        margin-bottom: 20px !important;
    }

    /* Footer */
    .footer {
        padding: 60px 0 0;
    }

    .footer .container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding-bottom: 50px;
    }

    .footer__logo {
        font-size: 40px;
        line-height: 44px;
        justify-content: center;
        margin-bottom: 15px;
    }

    .footer__description {
        font-size: 18px;
        line-height: 26px;
        width: 100%;
        margin-bottom: 20px;
    }

    .footer__social {
        justify-content: center;
        gap: 18px;
        margin-bottom: 8px;
    }

    .footer__social-link {
        font-size: 18px;
    }

    .footer__menu-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .footer__nav {
        align-items: center;
        gap: 12px;
    }

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

    .footer__contact {
        align-items: center;
    }

    .footer__contact-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .footer__phone,
    .footer__email {
        align-items: center;
        text-align: center;
        gap: 8px;
    }

    .footer__phone {
        padding-bottom: 15px;
        margin-bottom: 25px;
    }

    .footer__email {
        border-bottom: none;
        padding-bottom: 0;
    }

    .footer__phone-link {
        font-size: 24px;
        line-height: 30px;
    }

    .footer__email-link {
        font-size: 24px;
        line-height: 30px;
    }

    .footer__bottom .container {
        text-align: center;
        padding: 20px 0;
    }

    .footer__copyright {
        font-size: 13px;
    }
}

/* ===== HEADER RESPONSIVE STYLES ===== */
/* Hide navigation and icons on screens smaller than 1200px */
@media (max-width: 1199.98px) {
    .header__nav {
        display: none;
    }

    .header__icons {
        display: none;
    }

    /* Show mobile menu toggle on screens smaller than 1200px */
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        background: none;
        border: none;
        color: var(--color-white);
        font-size: 24px;
        cursor: pointer;
        z-index: 1001;
        transition: all 0.3s ease;
        padding: 8px;
        border-radius: 4px;
    }

    .mobile-menu-toggle:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: scale(1.1);
    }

    .mobile-menu-toggle--active {
        background: rgba(255, 255, 255, 0.2);
        transform: rotate(90deg);
    }

    /* Mobile menu styles for all screens smaller than 1200px */
    .header__nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(4, 33, 119, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
    }

    /* Mobile menu icons */
    .header__nav .header__icons {
        display: flex !important;
        flex-direction: row;
        gap: 30px;
        margin-top: 20px;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
        transition-delay: 0.7s;
    }

    .header__nav--active .header__icons {
        opacity: 1;
        transform: translateY(0);
    }

    .header__nav .header__icon {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.3s ease;
    }

    .header__nav .header__icon:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    .header__nav .header__icon img {
        width: 24px;
        height: 24px;
        filter: brightness(0) invert(1);
    }

    .header__nav--active {
        left: 0;
        display: flex !important;
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .header__nav-link {
        font-size: 24px;
        font-weight: 600;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
        transition-delay: 0.1s;
    }

    .header__nav--active .header__nav-link {
        opacity: 1;
        transform: translateY(0);
    }

    /* Footer phone and email links */
    .footer__phone-link {
        font-size: 28px;
        line-height: 34px;
    }

    .footer__email-link {
        font-size: 28px;
        line-height: 34px;
    }
}

/* ===== HERO SECTION RESPONSIVE STYLES ===== */
/* Large devices (desktops, 992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .hero {
        height: 700px;
    }

    .hero__overlay {
        width: 100%;
        background: linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0, 0, 0, 0.5) 40%,
            rgba(0, 0, 0, 0.3) 70%,
            rgba(0, 0, 0, 0.1) 100%
        );
    }

    .hero__content {
        max-width: 600px;
        width: 60%;
    }

    .hero__title {
        font-size: 64px;
        line-height: 70px;
        margin-bottom: 40px;
    }

    .hero__bottom {
        gap: 40px;
    }

    .hero__btn {
        width: 140px;
        height: 140px;
        padding: 60px 40px;
        font-size: 16px;
    }

    .hero__text {
        font-size: 16px;
        line-height: 28px;
        max-width: 350px;
        background-image: url("/assets/images/donate/bg.jpg");
    }
    .hero__nav {
        right: 20px;
    }

    .hero__nav-btn {
        width: 60px;
        height: 60px;
        font-size: 14px;
    }
}

/* Medium devices (tablets, 768px - 991px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .hero {
        height: 768px;
    }

    .hero__overlay {
        width: 100%;
        background: linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.6) 50%,
            rgba(0, 0, 0, 0.4) 100%
        );
    }

    .hero__content {
        max-width: 500px;
        width: 70%;
    }

    .hero__title {
        font-size: 48px;
        line-height: 54px;
        margin-bottom: 35px;
    }

    .hero__bottom {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }

    .hero__btn {
        width: 120px;
        height: 120px;
        padding: 50px 30px;
        font-size: 14px;
        align-self: flex-start;
    }

    .hero__text {
        font-size: 16px;
        line-height: 26px;
        max-width: 400px;
        margin-top: 0;
    }

    .hero__nav {
        right: 15px;
    }

    .hero__nav-btn {
        width: 50px;
        height: 50px;
        font-size: 12px;
    }

    /* Story Slider Tablet */
    .story__timeline {
        display: block;
    }

    .story__timeline-item,
    .story__timeline-item--clone {
        flex: 0 0 calc(50% - 15px);
        min-width: calc(50% - 15px);
        width: calc(50% - 15px);
        flex-shrink: 0;
    }
}

/* Small devices (landscape phones, 576px - 767px) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .hero {
        height: 768px;
    }

    .hero__overlay {
        width: 100%;
        background: linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.3) 100%
        );
    }

    .hero__content {
        max-width: 100%;
        width: 100%;
        text-align: center;
        padding: 0 20px;
    }

    .hero__title {
        font-size: 42px;
        line-height: 48px;
        margin-bottom: 30px;
    }

    .hero__bottom {
        flex-direction: column-reverse;
        gap: 30px;
        align-items: center;
    }

    .hero__btn {
        width: 120px;
        height: 120px;
        padding: 50px 30px;
        font-size: 14px;
        align-self: center;
    }

    .hero__text {
        font-size: 16px;
        line-height: 28px;
        text-align: center;
        margin-top: 0;
        max-width: 100%;
    }

    .hero__text::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .hero__nav {
        display: none;
    }
}

/* Show navigation and icons on screens 1200px and up */
@media (min-width: 1200px) {
    .header__nav {
        display: flex;
    }

    .header__icons {
        display: flex;
    }

    /* Hide mobile menu icons on desktop */
    .header__nav .header__icons {
        display: none !important;
    }
}

/* ===== EXTRA SMALL DEVICES (phones, 576px and down) ===== */
@media (max-width: 575.98px) {
    /* Container & Layout */
    .container {
        padding: 0 15px;
    }

    /* Section Titles */
    .section-title {
        font-size: 36px !important;
        line-height: 1.3 !important;
        margin-bottom: 25px !important;
    }

    /* Header & Navigation */
    .header {
        padding: 10px 0;
    }

    .header__logo {
        font-size: 28px;
    }

    .mobile-menu-toggle--active {
        position: fixed;
        top: 10px;
        right: 15px;
    }

    /* Hero Section */
    .hero {
        height: 100vh;
        min-height: 600px;
    }

    .hero__overlay {
        width: 100%;
        background: linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.3) 100%
        );
    }

    .hero__content {
        width: 100%;
        text-align: center;
        padding: 0 20px;
    }

    .hero__title {
        font-size: 36px;
        line-height: 42px;
        margin-bottom: 30px;
    }

    .hero__bottom {
        flex-direction: column-reverse;
        gap: 30px;
        align-items: center;
    }

    .hero__btn {
        width: 120px;
        height: 120px;
        padding: 50px 30px;
        font-size: 14px;
        align-self: center;
    }

    .hero__text {
        font-size: 16px;
        line-height: 28px;
        text-align: center;
        margin-top: 0;
    }

    .hero__text::before {
        content: "";
        position: absolute;
        top: -18px;
        left: 50%;
        transform: translateX(-50%);
        width: 70px;
        height: 1px;
        background-color: var(--color-accent);
    }

    .hero__nav {
        display: none;
    }

    /* Page Header */
    .page-header {
        height: 500px;
    }

    .page-header__content {
        padding: 20px 0;
    }

    .page-header__title {
        font-size: 36px;
        line-height: 40px;
        margin-bottom: 15px;
    }

    .page-header__breadcrumb {
        font-size: 14px;
    }

    /* News Page Header Specific */
    .page-header--news {
        height: 400px;
    }

    .page-header--news .page-header__title {
        font-size: 32px;
        line-height: 36px;
    }

    .page-header--news .page-header__breadcrumb {
        font-size: 13px;
    }

    /* Post Blue Page Header Specific */
    .page-header--post-blue {
        height: 500px;
    }

    .page-header--post-blue .page-header__heading .page-header__title {
        font-size: 22px;
        line-height: 32px;
        margin-top: 80px;
        padding: 0 20px;
    }

    .page-header--post-blue .page-header__content .page-header__title {
        font-size: 28px;
        line-height: 32px;
    }

    .page-header--post-blue .page-header__breadcrumb {
        font-size: 13px;
    }

    /* Issues Grid Section */
    .issues-grid {
        padding: 60px 0;
    }

    .issues-grid__content {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .issue-card {
        height: auto;
        min-height: 400px;
    }

    .issue-card__image {
        height: 250px;
    }

    .issue-card__overlay {
        margin-top: -60px;
        padding: 20px 30px 30px 30px;
        gap: 20px;
        position: relative;
        z-index: 2;
        min-height: 180px;
    }

    .issue-card__title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .issue-card__description {
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 15px;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .issue-card__link {
        font-size: 14px;
    }

    .issue-card__arrow {
        width: 24px;
        height: 24px;
    }

    /* READ MORE Button */
    .issues-grid__button-container {
        margin-top: 20px;
    }

    .cta {
        padding: 10px 16px;
        line-height: 32px;
    }

    .cta:before {
        width: 48px;
        height: 48px;
    }

    .cta span {
        font-size: 16px;
    }

    .cta svg {
        width: 12px;
        height: 8px;
        margin-left: 8px;
    }

    /* Donation Section */
    .donation {
        padding: 60px 0 0 0;
    }

    .donation .container {
        flex-direction: column;
        gap: 40px;
        min-height: auto;
    }

    .donation__image {
        flex: 0 0 100%;
        max-width: 100%;
        height: 300px;
    }

    .donation__title {
        font-size: 32px;
        line-height: 38px;
        text-align: center;
    }

    .donation__options-container {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .donation__options {
        width: 100%;
        max-width: 300px;
    }

    .donation__amount {
        width: 100%;
    }

    .donation__btn-container {
        display: none;
    }

    .donation__btn {
        width: 150px;
        height: 150px;
        font-size: 14px;
    }

    /* Steps Section */
    .steps .container {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 20px !important;
    }

    .steps__card {
        padding: 40px 20px;
        text-align: center;
        border: none !important;
        border-bottom: 1px solid #e0e0e0 !important;
        border-radius: 0;
        box-shadow: none;
    }

    .steps__card:last-child {
        border-bottom: none;
    }

    .steps__card:nth-child(2) .steps__number {
        margin-top: 0px;
    }

    .steps__number {
        font-size: 60px;
        line-height: 66px;
    }

    .steps__title {
        font-size: 24px;
        line-height: 28px;
    }

    .steps__description {
        font-size: 16px;
        line-height: 24px;
    }

    /* Video Section */
    .video {
        padding: 60px 20px;
    }

    .video .container {
        flex-direction: column;
        gap: 40px;
        padding: 0;
    }

    .video__content {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .video__text {
        flex: 0 0 100%;
        max-width: 100%;
        padding-left: 0;
        text-align: center;
        flex-direction: column;
        align-items: center;
    }

    .video__quote-number {
        width: 60px;
        height: 50px;
        margin: 0 auto;
        font-size: 80px;
    }

    .video__description {
        font-size: 16px;
        line-height: 24px;
    }

    .video__footer {
        height: 60px;
        padding: 40px 0;
    }

    .video__play-btn {
        bottom: 20px;
        left: 20px;
        padding: 12px 20px;
        font-size: 12px;
    }

    /* About Section */
    .about {
        padding: 60px 0;
    }

    .about__content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .about__image {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .about__text {
        padding-left: 0;
    }

    .about__title {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .about__divider {
        margin: 0 auto 30px auto;
    }

    .about__description p {
        font-size: 16px;
    }

    /* Story Section */
    .story__timeline-wrapper {
        width: 100%;
    }

    .story {
        padding: 60px 0;
    }

    .story__header {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        margin-bottom: 40px;
    }

    .story__title {
        font-size: 32px;
        line-height: 38px;
    }

    /* Section Title Responsive */
    .section-title {
        font-size: 32px !important;
        line-height: 1.3 !important;
        margin-bottom: 20px !important;
    }

    .story__timeline {
        display: block;
        margin-bottom: 40px;
        overflow: hidden;
    }

    .story__timeline-item,
    .story__timeline-item--clone {
        flex: 0 0 100%;
        min-width: 100%;
        width: 100%;
        flex-shrink: 0;
        text-align: center;
    }

    .story__timeline-header {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 20px;
    }

    .story__timeline-year {
        font-size: 48px;
        line-height: 52px;
    }

    .story__timeline-label {
        font-size: 16px;
        line-height: 20px;
    }

    .story__timeline-image {
        height: 250px;
        margin-bottom: 20px;
    }

    .story__timeline-desc {
        padding: 15px;
        font-size: 16px;
        line-height: 24px;
        text-align: center;
        border-left: none;
        padding-left: 0;
        padding-top: 15px;
        position: relative;
    }

    .story__timeline-desc::after {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
        height: 2px;
        background-color: var(--color-accent);
    }

    .story__view-all {
        margin-top: 30px;
    }

    /* Issues Section */
    .issues {
        padding: 60px 0;
    }

    .issues__header {
        margin-bottom: 40px;
    }

    .issues__title {
        font-size: 32px;
        line-height: 38px;
        margin-bottom: 20px;
    }

    /* Section Title Responsive */
    .section-title {
        font-size: 32px !important;
        line-height: 1.3 !important;
        margin-bottom: 20px !important;
    }

    .issues__description {
        font-size: 16px;
        line-height: 24px;
    }

    .issues__grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 300px);
        gap: 20px;
    }

    .issues__card {
        padding: 30px 20px;
    }

    .issues__card-overlay {
        padding: 30px 20px;
    }

    .issues__card-title {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 15px;
    }

    .issues__card-desc {
        font-size: 16px;
        line-height: 20px;
        padding-right: 0;
    }

    /* Campaign Section */
    .campaign {
        padding: 60px 0;
    }

    .campaign__header {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        text-align: center;
        margin-bottom: 40px;
    }

    .campaign__title {
        font-size: 32px;
        line-height: 38px;
    }

    /* Section Title Responsive */
    .section-title {
        font-size: 32px !important;
        line-height: 1.3 !important;
        margin-bottom: 20px !important;
    }

    .campaign__events {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .campaign__event-date {
        justify-content: center;
        gap: 20px;
        padding-bottom: 15px;
    }

    .campaign__event-month {
        font-size: 18px;
        line-height: 24px;
    }

    .campaign__event-day {
        font-size: 14px;
        line-height: 18px;
    }

    .campaign__event-info {
        padding: 30px 20px;
        gap: 25px;
    }

    .campaign__event-title {
        font-size: 24px;
        line-height: 26px;
    }

    .campaign__event-desc {
        font-size: 16px;
        line-height: 22px;
    }

    /* Contact Section */
    .contact {
        padding: 0 0px 0px 0px;
    }

    .contact .container {
        padding: 0;
    }

    .contact__info-container {
        width: 100%;
    }

    .contact__content {
        flex-direction: column;
        padding: 40px 20px;
        gap: 30px;
    }

    .contact__title {
        font-size: 32px;
        line-height: 38px;
        margin-bottom: 30px;
    }

    .contact__form {
        width: 100%;
        flex: 0 0 100%;
    }

    .contact__info {
        flex: 0 0 100%;
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .contact__description {
        font-size: 16px;
        line-height: 22px;
        margin: 15px 0 30px 0;
    }

    .contact__btn {
        margin-top: 15px;
        align-self: center;
    }

    /* Action Cards Section */
    .action-cards {
        padding: 50px 0;
    }

    .action-cards__grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
    }

    .action-card {
        padding: 50px 30px;
    }

    .action-card__title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .action-card__accent-line {
        margin-bottom: 30px;
    }

    .action-card__cta {
        font-size: 14px;
    }

    /* Footer */
    .footer {
        padding: 80px 0 0;
    }

    .footer .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding-bottom: 60px;
    }

    .footer__logo {
        font-size: 48px;
        line-height: 52px;
        justify-content: center;
        margin-bottom: 20px;
    }

    .footer__description {
        font-size: 20px;
        line-height: 28px;
        width: 100%;
        margin-bottom: 25px;
    }

    .footer__social {
        justify-content: center;
        gap: 20px;
        margin-bottom: 10px;
    }

    .footer__social-link {
        font-size: 20px;
    }

    .footer__menu-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .footer__nav {
        align-items: center;
        gap: 15px;
    }

    .footer__nav-link {
        font-size: 16px;
    }

    .footer__contact {
        align-items: center;
    }

    .footer__contact-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .footer__phone,
    .footer__email {
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .footer__phone {
        padding-bottom: 20px;
        margin-bottom: 30px;
    }

    .footer__email {
        border-bottom: none;
        padding-bottom: 0;
    }

    .footer__phone-link {
        font-size: 28px;
        line-height: 34px;
    }

    .footer__email-link {
        font-size: 28px;
        line-height: 34px;
    }

    .footer__bottom .container {
        text-align: center;
        padding: 25px 0;
    }

    .footer__copyright {
        font-size: 14px;
    }

    /* Donation Banner */
    .donation-banner {
        padding: 40px 0;
    }

    .donation-banner__content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
        padding: 30px 0;
    }

    .donation-banner__title {
        font-size: 24px;
        line-height: 1.3;
    }

    .donation-banner__description {
        font-size: 14px;
        line-height: 1.4;
    }

    .donation-banner__btn {
        align-self: center;
        padding: 12px 24px;
        font-size: 14px;
    }

    /* Donation Banner Responsive */
    @media (max-width: 768px) {
        .donation-banner {
            padding: 50px 0;
        }

        .donation-banner__content {
            gap: 30px;
            padding: 40px 0;
        }

        .donation-banner__title {
            font-size: 28px;
            line-height: 1.3;
        }

        .donation-banner__description {
            font-size: 15px;
            line-height: 1.5;
        }

        .donation-banner__btn {
            padding: 14px 28px;
            font-size: 15px;
        }
    }

    @media (max-width: 576px) {
        .donation-banner {
            padding: 40px 0;
        }

        .donation-banner__content {
            gap: 25px;
            padding: 30px 0;
        }

        .donation-banner__title {
            font-size: 24px;
            line-height: 1.3;
        }

        .donation-banner__description {
            font-size: 14px;
            line-height: 1.4;
        }

        .donation-banner__btn {
            padding: 12px 24px;
            font-size: 14px;
        }
    }

    /* Pagination */
    .pagination {
        flex-direction: column;
        gap: 20px;
    }

    .pagination__pages {
        order: 2;
    }

    .pagination__link--prev {
        order: 1;
    }

    .pagination__link--next {
        order: 3;
    }
}

/* ===== SMALL DEVICES (landscape phones, 576px and up) ===== */
@media (min-width: 576px) and (max-width: 767.98px) {
    .container {
        padding: 0 20px;
    }

    /* Header - Ensure navigation is hidden on small screens */
    .header__nav {
        display: none;
    }

    .header__icons {
        display: none;
    }

    /* Section Titles */
    .section-title {
        font-size: 42px !important;
        line-height: 1.3 !important;
        margin-bottom: 30px !important;
    }

    /* Action Cards Section */
    .action-cards {
        padding: 60px 0;
    }

    .action-cards__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 100%;
    }

    .action-card {
        padding: 60px 40px;
    }

    .action-card__title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .action-card__accent-line {
        margin-bottom: 35px;
    }

    .action-card__cta {
        font-size: 16px;
    }

    /* Footer */
    .footer {
        padding: 90px 0 0;
    }

    .footer .container {
        grid-template-columns: 1fr;
        gap: 45px;
        text-align: center;
        padding-bottom: 70px;
    }

    .footer__logo {
        font-size: 52px;
        line-height: 56px;
        justify-content: center;
        margin-bottom: 25px;
    }

    .footer__description {
        font-size: 22px;
        line-height: 30px;
        width: 100%;
        margin-bottom: 30px;
    }

    .footer__social {
        justify-content: center;
        gap: 25px;
        margin-bottom: 15px;
    }

    .footer__social-link {
        font-size: 22px;
    }

    .footer__menu-title {
        font-size: 22px;
        margin-bottom: 18px;
    }

    .footer__nav {
        align-items: center;
        gap: 18px;
    }

    .footer__nav-link {
        font-size: 17px;
    }

    .footer__contact {
        align-items: center;
    }

    .footer__contact-title {
        font-size: 22px;
        margin-bottom: 18px;
    }

    .footer__phone,
    .footer__email {
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    .footer__phone {
        padding-bottom: 25px;
        margin-bottom: 35px;
    }

    .footer__email {
        border-bottom: none;
        padding-bottom: 0;
    }

    .footer__phone-link {
        font-size: 32px;
        line-height: 38px;
    }

    .footer__email-link {
        font-size: 32px;
        line-height: 38px;
    }

    .footer__bottom .container {
        text-align: center;
        padding: 30px 0;
    }

    .footer__copyright {
        font-size: 15px;
    }

    /* Issues Grid Section */
    .issues-grid__content {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .issue-card {
        height: auto;
        min-height: 450px;
    }

    .issue-card__image {
        height: 320px;
    }

    .issue-card__overlay {
        margin-top: -70px;
        padding: 25px 30px 30px 30px;
        gap: 25px;
        position: relative;
        z-index: 2;
        min-height: 200px;
    }

    .issue-card__title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .issue-card__description {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 18px;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .issue-card__link {
        font-size: 16px;
    }

    /* READ MORE Button */
    .cta {
        padding: 12px 18px;
        line-height: 36px;
    }

    .cta:before {
        width: 56px;
        height: 56px;
    }

    .cta span {
        font-size: 18px;
    }

    .hero__title {
        font-size: 42px;
        line-height: 48px;
    }

    .donation__title {
        font-size: 36px;
        line-height: 42px;
    }

    .story__title {
        font-size: 36px;
        line-height: 42px;
    }

    .issues__title {
        font-size: 36px;
        line-height: 42px;
    }
    .campaign__header {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        text-align: center;
        margin-bottom: 40px;
    }
    .campaign__title {
        font-size: 36px;
        line-height: 42px;
    }

    .contact__title {
        font-size: 36px;
        line-height: 42px;
    }

    /* Post Blue Page Header Specific */
    .page-header--post-blue {
        height: 500px;
    }

    .page-header--post-blue .page-header__heading .page-header__title {
        font-size: 32px;
        line-height: 36px;
        margin-top: 60px;
        padding: 0 20px;
    }

    .page-header--post-blue .page-header__content .page-header__title {
        font-size: 32px;
        line-height: 36px;
    }

    .page-header--post-blue .page-header__breadcrumb {
        font-size: 14px;
    }
}

/* ===== MEDIUM DEVICES (tablets, 768px and up) ===== */
@media (min-width: 768px) and (max-width: 991.98px) {
    .container {
        padding: 0 30px;
    }

    /* Section Titles */
    .section-title {
        font-size: 42px !important;
        line-height: 1.3 !important;
        margin-bottom: 35px !important;
    }

    /* Action Cards Section */
    .action-cards {
        padding: 70px 0;
    }

    .action-cards__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        max-width: 100%;
    }

    .action-card {
        padding: 70px 50px;
    }

    .action-card__title {
        font-size: 32px;
        margin-bottom: 25px;
    }

    .action-card__accent-line {
        margin-bottom: 40px;
    }

    .action-card__cta {
        font-size: 18px;
    }

    /* Header */
    .header {
        padding: 10px 0;
    }

    .header__logo {
        font-size: 42px;
    }

    /* Ensure navigation is hidden on medium screens */
    .header__nav {
        display: none;
    }

    .header__icons {
        display: none;
    }

    /* Issues Grid Section */
    .issues-grid__content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .issue-card {
        height: auto;
        min-height: 548px;
    }

    .issue-card__image {
        height: 320px;
    }

    .issue-card__overlay {
        margin-top: -75px;
        padding: 30px 40px 35px 40px;
        gap: 30px;
        position: relative;
        z-index: 2;
        min-height: 220px;
    }

    .issue-card__title {
        font-size: 28px;
        margin-bottom: 18px;
    }

    .issue-card__description {
        font-size: 18px;
        line-height: 1.5;
        margin-bottom: 20px;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .issue-card__link {
        font-size: 16px;
    }

    /* READ MORE Button */
    .cta {
        padding: 14px 20px;
        line-height: 40px;
    }

    .cta:before {
        width: 60px;
        height: 60px;
    }

    .cta span {
        font-size: 18px;
    }

    /* Hero Section - Tablet adjustments */
    .hero__overlay {
        width: 70%;
    }

    .hero__title {
        font-size: 56px;
        line-height: 62px;
        margin-bottom: 40px;
    }

    .hero__bottom {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }

    .hero__btn {
        width: 140px;
        height: 140px;
        padding: 60px 40px;
        font-size: 16px;
        order: 2;
    }

    .hero__text {
        font-size: 16px;
        line-height: 24px;
    }

    .hero__nav {
        right: 20px;
    }

    .hero__nav-btn {
        width: 50px;
        height: 50px;
        font-size: 14px;
    }

    /* Post Blue Page Header Specific */
    .page-header--post-blue {
        height: 500px;
    }

    .page-header--post-blue .page-header__heading .page-header__title {
        font-size: 48px;
        line-height: 52px;
        margin-top: 100px;
    }

    .page-header--post-blue .page-header__content .page-header__title {
        font-size: 36px;
        line-height: 40px;
    }

    .page-header--post-blue .page-header__breadcrumb {
        font-size: 15px;
    }

    /* Donation Section */
    .donation .container {
        gap: 50px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .donation__image {
        flex: 0 0 auto;
        max-width: 400px;
        height: 350px;
    }

    .donation__title {
        font-size: 42px;
        line-height: 48px;
        margin-bottom: 30px;
    }

    .donation__content {
        margin-bottom: 60px;
    }

    .donation__options-container {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        width: 100%;
        max-width: 600px;
    }

    .donation__options {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .donation__amount {
        width: 100%;
        height: 60px;
    }

    .donation__amount-line {
        height: 60px;
        padding: 0 20px;
        width: 100%;
    }

    .donation__amount-line::after {
        bottom: 18px;
    }

    .donation__amount-text {
        font-size: 18px;
    }

    .donation__btn-container {
        display: none;
    }

    /* Steps Section */
    .steps .container {
        grid-template-columns: repeat(3, 1fr);
        gap: 1px;
    }

    .steps__card {
        padding: 80px 40px;
    }

    .steps__number {
        font-size: 70px;
        line-height: 76px;
    }

    /* Video Section */
    .video .container {
        flex-direction: column;
        gap: 40px;
        padding: 0;
    }
    .video__content {
        max-width: 100%;
    }
    .video {
        padding: 80px 40px;
    }

    .video__text {
        padding-left: 0;
        max-width: 100%;
    }

    /* Story Section */
    .story__timeline {
        gap: 20px;
    }

    .story__timeline-year {
        font-size: 56px;
        line-height: 60px;
    }

    .story__timeline-image {
        height: 400px;
    }

    .story__timeline-item:nth-child(1) .story__timeline-image,
    .story__timeline-item:nth-child(3) .story__timeline-image {
        height: 500px;
    }

    .story__timeline-item:nth-child(2) .story__timeline-image {
        height: 480px;
    }

    /* Issues Section */
    .issues__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 400px);
        gap: 25px;
    }

    /* Campaign Section */
    .campaign__header {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        text-align: center;
        margin-bottom: 40px;
    }
    .campaign__events {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .campaign__event:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }

    /* Contact Section */
    .contact__content {
        padding: 50px 30px;
    }

    .contact__form {
        width: 55%;
        flex: 0 0 55%;
    }

    .contact__info {
        flex: 0 0 45%;
        gap: 50px;
    }

    /* Footer */
    .footer {
        padding: 100px 0 0;
    }

    .footer .container {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 60px;
        padding-bottom: 80px;
    }

    .footer__logo {
        font-size: 56px;
        line-height: 60px;
    }

    .footer__description {
        font-size: 26px;
        line-height: 34px;
        width: 280px;
    }

    .footer__social {
        gap: 28px;
    }

    .footer__social-link {
        font-size: 20px;
    }

    .footer__menu-title {
        font-size: 24px;
        margin-bottom: 22px;
    }

    .footer__nav {
        gap: 22px;
    }

    .footer__nav-link {
        font-size: 17px;
    }

    .footer__contact-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .footer__phone {
        gap: 10px;
        padding-bottom: 25px;
        margin-bottom: 40px;
    }

    .footer__email {
        gap: 10px;
        padding-bottom: 25px;
    }

    .footer__phone-link {
        font-size: 18px;
        line-height: 42px;
    }

    .footer__email-link {
        font-size: 18px;
        line-height: 42px;
    }

    .footer__bottom .container {
        padding: 35px 10px;
    }

    .footer__copyright {
        font-size: 16px;
    }

    /* Pagination */
    .pagination-section {
        padding: 40px 0;
    }

    .pagination {
        gap: 30px;
    }

    .pagination__pages {
        gap: 20px;
    }

    .pagination__page {
        font-size: 16px;
    }

    .pagination__text {
        font-size: 14px;
    }
}

/* ===== LARGE DEVICES (desktops, 992px and up) ===== */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .container {
        padding: 0 40px;
    }

    /* Section Titles */
    .section-title {
        font-size: 42px !important;
        line-height: 1.3 !important;
        margin-bottom: 40px !important;
    }

    /* Action Cards Section */
    .action-cards {
        padding: 80px 0;
    }

    .action-cards__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
        max-width: 100%;
    }

    .action-card {
        padding: 80px 60px;
    }

    .action-card__title {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .action-card__accent-line {
        margin-bottom: 45px;
    }

    .action-card__cta {
        font-size: 20px;
    }

    /* Header - Show mobile menu for screens smaller than 1200px */
    .header__nav {
        display: none;
    }

    .header__icons {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    /* Issues Grid Section */
    .issues-grid__content {
        grid-template-columns: repeat(3, 1fr);
        gap: 26px;
    }

    .issue-card {
        height: auto;
        min-height: 550px;
    }

    .issue-card__image {
        height: 380px;
    }

    .issue-card__overlay {
        margin-top: -80px;
        padding: 22px 54px 35px 54px;
        gap: 40px;
        position: relative;
        z-index: 2;
        min-height: 250px;
    }

    .issue-card__title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .issue-card__description {
        font-size: 24px;
        line-height: 1.6;
        margin-bottom: 20px;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .issue-card__link {
        font-size: 18px;
    }

    /* READ MORE Button */
    .cta {
        padding: 12px 18px;
        line-height: 36px;
    }

    .cta:before {
        width: 56px;
        height: 56px;
    }

    .cta span {
        font-size: 18px;
    }

    /* Hero Section */
    .hero__title {
        font-size: 68px;
        line-height: 74px;
    }

    .hero__btn {
        width: 160px;
        height: 160px;
        padding: 70px 45px;
    }

    /* Post Blue Page Header Specific */
    .page-header--post-blue {
        height: 550px;
    }

    .page-header--post-blue .page-header__heading .page-header__title {
        font-size: 54px;
        line-height: 58px;
        margin-top: 110px;
    }

    .page-header--post-blue .page-header__content .page-header__title {
        font-size: 42px;
        line-height: 46px;
    }

    .page-header--post-blue .page-header__breadcrumb {
        font-size: 16px;
    }

    /* Donation Section */
    .donation .container {
        gap: 30px;
        flex-direction: row;
        align-items: center;
        text-align: left;
    }

    .donation__image {
        flex: 0 0 45%;
        max-width: 45%;
        height: 540px;
    }

    .donation__content {
        flex: 0 0 55%;
        max-width: 55%;
    }

    .donation__title {
        font-size: 42px;
        line-height: 54px;
        margin-bottom: 25px;
    }

    .donation__options-container {
        flex-direction: row;
        gap: 30px;
        align-items: flex-start;
        width: 100%;
        max-width: none;
    }

    .donation__options {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        flex: 1;
    }

    .donation__amount {
        width: 100%;
        height: 50px;
    }

    .donation__amount-line {
        height: 50px;
        padding: 0 15px;
        width: 95%;
    }

    .donation__amount-text {
        font-size: 16px;
    }

    .donation__btn-container {
        display: none;
    }
    /* Video Section */
    .video__text {
        padding-left: 50px;
    }

    /* Issues Section */
    .issues__grid {
        gap: 30px;
    }

    /* Campaign Section */
    .campaign__events {
        gap: 30px;
    }
}

/* ===== LANDSCAPE ORIENTATION ADJUSTMENTS ===== */
@media (orientation: landscape) and (max-height: 600px) {
    .hero {
        height: 100vh;
        min-height: 500px;
    }

    .hero__title {
        font-size: 48px;
        line-height: 54px;
        margin-bottom: 30px;
    }

    .hero__btn {
        width: 100px;
        height: 100px;
        padding: 40px 25px;
        font-size: 12px;
    }

    .hero__text {
        font-size: 14px;
        line-height: 24px;
    }

    /* Section Titles */
    .section-title {
        font-size: 44px !important;
        line-height: 1.3 !important;
        margin-bottom: 30px !important;
    }

    /* Issues Grid Section */
    .issues-grid {
        padding: 40px 0;
    }

    .issues-grid__content {
        gap: 20px;
        margin-bottom: 30px;
    }

    .issue-card {
        height: auto;
        min-height: 380px;
    }

    .issue-card__image {
        height: 250px;
    }

    .issue-card__overlay {
        margin-top: -60px;
        padding: 20px 30px;
        gap: 25px;
        position: relative;
        z-index: 2;
    }

    .issue-card__description {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* Footer */
    .footer {
        padding: 80px 0 0;
    }

    .footer .container {
        gap: 40px;
        padding-bottom: 60px;
    }

    .footer__logo {
        font-size: 52px;
        line-height: 56px;
        margin-bottom: 20px;
    }

    .footer__description {
        font-size: 22px;
        line-height: 30px;
        margin-bottom: 25px;
    }

    .footer__social {
        gap: 22px;
        margin-bottom: 12px;
    }

    .footer__social-link {
        font-size: 19px;
    }

    .footer__menu-title {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .footer__nav {
        gap: 16px;
    }

    .footer__nav-link {
        font-size: 16px;
    }

    .footer__contact-title {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .footer__phone {
        gap: 10px;
        padding-bottom: 22px;
        margin-bottom: 30px;
    }

    .footer__email {
        gap: 10px;
        padding-bottom: 22px;
    }

    .footer__phone-link {
        font-size: 30px;
        line-height: 36px;
    }

    .footer__email-link {
        font-size: 30px;
        line-height: 36px;
    }

    .footer__bottom .container {
        padding: 25px 0;
    }

    .footer__copyright {
        font-size: 15px;
    }
}

/* ===== LANDSCAPE + RESPONSIVE BREAKPOINT COMBINATIONS ===== */
/* Large devices landscape (992px - 1199px) + landscape orientation */
@media (orientation: landscape) and (max-height: 600px) and (min-width: 992px) and (max-width: 1199.98px) {
    .hero {
        height: 600px;
    }

    .hero__title {
        font-size: 56px;
        line-height: 62px;
    }

    .hero__btn {
        width: 120px;
        height: 120px;
        padding: 50px 30px;
        font-size: 14px;
    }
}

/* Medium devices landscape (768px - 991px) + landscape orientation */
@media (orientation: landscape) and (max-height: 600px) and (min-width: 768px) and (max-width: 991.98px) {
    .hero {
        height: 500px;
    }

    .hero__title {
        font-size: 42px;
        line-height: 48px;
    }

    .hero__btn {
        width: 100px;
        height: 100px;
        padding: 40px 25px;
        font-size: 12px;
    }
}

/* Small devices landscape (576px - 767px) + landscape orientation */
@media (orientation: landscape) and (max-height: 600px) and (min-width: 576px) and (max-width: 767.98px) {
    .hero {
        height: 450px;
    }

    .hero__title {
        font-size: 36px;
        line-height: 42px;
    }

    .hero__btn {
        width: 90px;
        height: 90px;
        padding: 35px 20px;
        font-size: 11px;
    }
}

/* ===== HIGH DPI DISPLAYS ===== */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero {
        background-image: url("/assets/images/home/hero-banner-1.png");
    }

    .donation__image img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .header,
    .hero__nav,
    .footer,
    .cta,
    .cta-blue {
        display: none !important;
    }

    .hero {
        height: auto;
        min-height: auto;
        background: none !important;
    }

    .hero__overlay {
        display: none;
    }

    .hero__content {
        color: var(--color-black);
        text-align: left;
    }

    .container {
        max-width: none;
        padding: 0;
    }

    /* Section Titles */
    .section-title {
        font-size: 28px !important;
        line-height: 1.3 !important;
        margin-bottom: 20px !important;
        color: black !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        page-break-after: avoid;
    }

    .issues__card,
    .campaign__event,
    .story__timeline-item {
        page-break-inside: avoid;
    }

    /* Post Blue Page Header Specific */
    .page-header--post-blue {
        height: 350px;
    }

    .page-header--post-blue .page-header__heading .page-header__title {
        font-size: 22px;
        line-height: 40px;
        margin-top: 80px;
    }

    .page-header--post-blue .page-header__content .page-header__title {
        font-size: 28px;
        line-height: 32px;
    }

    .page-header--post-blue .page-header__breadcrumb {
        font-size: 14px;
    }

    /* Footer Print Styles */
    .footer {
        padding: 30px 0 0;
        background: white !important;
        color: black !important;
    }

    .footer .container {
        grid-template-columns: 1fr;
        gap: 25px;
        padding-bottom: 30px;
        text-align: left;
    }

    .footer__logo {
        color: black !important;
        font-size: 36px;
        margin-bottom: 15px;
    }

    .footer__logo-accent {
        color: #333 !important;
    }

    .footer__description {
        color: black !important;
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 15px;
    }

    .footer__social {
        display: none !important;
    }

    .footer__menu-title {
        color: black !important;
        font-size: 18px;
        margin-bottom: 12px;
    }

    .footer__nav-link {
        color: black !important;
        font-size: 14px;
    }

    .footer__contact-title {
        color: black !important;
        font-size: 18px;
        margin-bottom: 12px;
    }

    .footer__phone-link {
        color: black !important;
        font-size: 20px;
        line-height: 26px;
    }

    .footer__email-link {
        color: black !important;
        font-size: 20px;
        line-height: 26px;
    }

    .footer__bottom {
        border-top: 1px solid #ccc;
    }

    .footer__bottom .container {
        padding: 15px 0;
    }

    .footer__copyright {
        color: #666 !important;
        font-size: 12px;
    }
}

/* ===== PAGE-SPECIFIC RESPONSIVE STYLES ===== */

/* ===== TRINH STORY PAGE ===== */
@media (max-width: 1024px) {
    .issues-grid__content {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .issue-card {
        height: 350px;
    }

    /* About Section */
    .about__content {
        gap: 60px;
    }

    .about__image {
        flex: 0 0 45%;
        max-width: 45%;
    }

    .about__divider {
        width: 280px;
    }

    /* Page Header */
    .page-header {
        height: 400px;
    }

    .page-header .page-header__title {
        font-size: 48px;
        line-height: 52px;
    }

    .page-header .page-header__breadcrumb {
        font-size: 14px;
    }

    /* Timeline Section */
    .timeline__content {
        width: 100%;
        padding-left: 60px;
    }

    .timeline__content-wrapper {
        gap: 40px;
    }

    .timeline__year::after {
        content: "";
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: -68px;
        width: 12px;
        height: 12px;
    }

    .timeline__image {
        max-width: 300px;
        height: 450px;
    }

    .timeline__subtitle {
        font-size: 32px;
    }

    /* Donation Banner */
    .donation-banner {
        height: 450px;
    }

    .donation-banner__title {
        font-size: 36px;
        line-height: 1.3;
    }

    .donation-banner__description {
        font-size: 16px;
        line-height: 24px;
    }
}

@media (max-width: 768px) {
    .issues-grid {
        padding: 60px 0;
    }

    .issues-grid__content {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .issue-card {
        height: 300px;
    }

    .issue-card__overlay {
        padding: 25px 20px 20px;
    }

    .issue-card__title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .issue-card__description {
        font-size: 13px;
        margin-bottom: 16px;
    }

    /* About Section */
    .about {
        padding: 60px 0;
    }

    .about__content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .about__image {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .about__text {
        padding-left: 0;
    }

    .about__title {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .about__divider {
        width: 200px;
        margin: 0 auto 30px auto;
    }

    .about__description p {
        font-size: 16px;
        line-height: 1.6;
    }

    /* Page Header */
    .page-header {
        height: 300px;
    }

    .page-header .page-header__title {
        font-size: 28px;
        line-height: 32px;
    }

    .page-header .page-header__breadcrumb {
        font-size: 11px;
    }

    /* Timeline Section */
    .timeline {
        padding: 60px 0;
    }

    .timeline__content {
        width: 100%;
        padding-left: 30px;
        gap: 60px;
    }

    .timeline__content::before {
        left: -15px;
        width: 30px;
        height: 30px;
    }

    .timeline__year {
        font-size: 48px;
        margin-bottom: 25px;
    }

    .timeline__content-wrapper {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        text-align: center;
    }

    .timeline__content-wrapper--reverse {
        flex-direction: column;
    }

    .timeline__image {
        max-width: 100%;
        height: 350px;
        order: -1;
    }

    .timeline__text {
        flex: 1;
        width: 100%;
    }

    .timeline__subtitle {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .timeline__text p {
        border-left: none;
        border-right: none;
        padding-left: 0;
        padding-right: 0;
        padding-top: 15px;
        position: relative;
        text-align: center;
    }

    .timeline__text p::after {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 2px;
        background-color: var(--color-accent);
    }

    /* Donation Banner */
    .donation-banner {
        padding: 60px 0;
    }

    .donation-banner__content {
        flex-direction: column;
        padding: 40px 0;
        gap: 30px;
        text-align: center;
    }

    .donation-banner__title {
        font-size: 28px;
        line-height: 1.3;
    }

    .donation-banner__description {
        font-size: 16px;
        line-height: 24px;
    }

    .donation-banner__btn {
        align-self: center;
    }
}

@media (max-width: 576px) {
    /* About Section */
    .about {
        padding: 40px 0;
    }

    .about__title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .about__divider {
        width: 150px;
        margin-bottom: 20px;
    }

    .about__description p {
        font-size: 16px;
        line-height: 24px;
    }

    /* Timeline Section */
    .timeline {
        padding: 40px 0;
    }

    .timeline__title {
        font-size: 28px;
        line-height: 28px;
    }

    .timeline__content {
        padding-left: 20px;
        gap: 40px;
    }

    .timeline__content::before {
        left: -10px;
        width: 20px;
        height: 20px;
    }

    .timeline__year {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .timeline__year::after {
        left: -26px;
        width: 10px;
        height: 10px;
    }

    .timeline__content-wrapper--reverse .timeline__text p {
        padding-left: 0;
        padding-right: 00px !important;
        border-right: 0px !important;
    }

    .timeline__image {
        height: 250px;
    }

    .timeline__subtitle {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .timeline__text p {
        font-size: 16px;
        text-align: justify;
        line-height: 24px;
    }

    /* Donation Banner */
    .donation-banner {
        padding: 40px 0;
    }

    .donation-banner__title {
        font-size: 24px;
        line-height: 32px;
    }

    .donation-banner__description {
        font-size: 16px;
        line-height: 24px;
    }
}

/* ===== NEWS GRID PAGE ===== */
@media (max-width: 1200px) {
    .news-grid {
        padding: 80px 0 40px;
    }

    .news-grid__content {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        row-gap: 40px;
    }

    .news-card__content {
        padding: 40px 30px;
    }

    .news-card__title {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .news-card__description {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .pagination {
        gap: 50px;
        margin-top: 40px;
    }

    .pagination__pages {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .news-grid {
        padding: 70px 0 35px;
    }

    .news-grid__content {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        row-gap: 35px;
    }

    .news-card__content {
        padding: 35px 25px;
    }

    .news-card__title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .news-card__description {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .news-card__date {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .news-card__separator {
        width: 35px;
        margin-bottom: 25px;
    }

    .news-card__link {
        font-size: 16px;
    }

    .pagination {
        gap: 40px;
        margin-top: 35px;
    }

    .pagination__pages {
        gap: 25px;
    }

    .pagination__page {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .news-grid {
        padding: 60px 0 30px;
    }

    .news-grid__content {
        grid-template-columns: 1fr;
        gap: 20px;
        row-gap: 30px;
    }

    .news-card__content {
        padding: 30px 20px;
    }

    .news-card__title {
        font-size: 18px;
        margin-bottom: 18px;
    }

    .news-card__description {
        font-size: 16px;
        margin-bottom: 18px;
    }

    .news-card__date {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .news-card__separator {
        width: 30px;
        margin-bottom: 20px;
    }

    .news-card__link {
        font-size: 15px;
    }

    .pagination {
        flex-direction: row;
        gap: 25px;
        margin-top: 30px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .pagination__pages {
        order: 2;
        gap: 15px;
    }

    .pagination__link--prev {
        order: 1;
    }

    .pagination__link--next {
        order: 3;
    }

    .pagination__text {
        font-size: 12px;
    }

    .pagination__page {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .news-grid {
        padding: 50px 0 25px;
    }

    .news-grid__content {
        gap: 15px;
        row-gap: 25px;
    }

    .news-card__content {
        padding: 25px 18px;
    }

    .news-card__title {
        font-size: 18px;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .news-card__description {
        font-size: 16px;
        margin-bottom: 16px;
        line-height: 1.4;
    }

    .news-card__date {
        font-size: 16px;
        margin-bottom: 18px;
    }

    .news-card__separator {
        width: 25px;
        height: 2px;
        margin-bottom: 18px;
    }

    .news-card__link {
        font-size: 14px;
        gap: 6px;
    }

    .news-card__arrow {
        width: 18px;
        height: 18px;
    }

    .pagination {
        gap: 20px;
        margin-top: 25px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .pagination__pages {
        gap: 12px;
    }

    .pagination__page {
        font-size: 14px;
    }

    .pagination__text {
        font-size: 11px;
    }

    .pagination__arrow {
        width: 14px;
        height: 14px;
    }
}

/* ===== BLOG POST CONTENT ===== */
@media (max-width: 1024px) {
    .content-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .main-content {
        padding: 40px 0;
    }

    .blog-post__title {
        font-size: 24px;
    }

    .blog-post__subtitle {
        font-size: 20px;
    }

    .social-icons {
        justify-content: center;
    }
}

/* ===== VOLUNTEER SECTION ===== */
@media (max-width: 1024px) {
    .volunteer-form-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .volunteer-image {
        order: -1;
        height: 300px;
    }

    .volunteer-image__img {
        border-radius: 16px 16px 0 0;
    }

    .volunteer-form-content {
        padding: 40px;
    }

    .volunteer-options-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .volunteer-form-content {
        padding: 30px 20px;
    }

    .volunteer-form__title {
        font-size: 32px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .submit-btn {
        width: 150px;
        height: 150px;
        font-size: 16px;
    }

    .social-media-icons {
        justify-content: center;
    }
}

/* ===== DONATION FORM ===== */

/* ===== EXTRA SMALL DEVICES (phones, 576px and down) ===== */
@media (max-width: 575.98px) {
    .donation-form-section {
        padding: 0;
    }
    .donation-form-section .container {
        padding: 0;
    }

    .donation-form-section::before {
        display: none;
    }

    .donation-form-layout {
        grid-template-columns: 1fr;
        gap: 0;
        min-height: auto;
    }

    .donation-image {
        order: -1;
        min-height: 250px;
        margin-right: 0;
        width: 100%;
        border-radius: 0;
        background-image: url("/assets/images/donate/bg.jpg");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .donation-form {
        padding: 40px 20px;
        gap: 35px;
        border-radius: 0;
    }

    .donation-form__title {
        font-size: 24px;
        line-height: 32px;
        text-align: center;
    }

    .donation-form__divider {
        width: 200px;
        margin: 0 auto;
    }

    .donation-form__intro {
        text-align: center;
    }

    .donation-form__intro p {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 16px;
    }

    /* Amount Section */
    .donation-amount__title {
        font-size: 22px;
        text-align: center;
        margin-bottom: 10px;
    }

    .donation-amount__subtitle {
        font-size: 16px;
        text-align: center;
        margin-bottom: 16px;
    }

    .donation-amount__buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .amount-btn {
        padding: 12px 8px;
        font-size: 20px;
        border-radius: 0 12px 0 0;
    }

    /* Monthly Section */
    .monthly-donation__title {
        font-size: 22px;
        text-align: center;
        margin-bottom: 20px;
    }

    .monthly-toggle {
        flex-direction: column;
        gap: 15px;
    }

    .toggle-btn {
        padding: 15px 20px;
        font-size: 18px;
        line-height: 1.4;
        border-radius: 0 12px 0 0;
        justify-content: center;
        text-align: center;
    }

    /* Checkout Section */
    .checkout__title {
        font-size: 22px;
        text-align: center;
        margin-bottom: 20px;
    }

    .checkout-btn {
        padding: 15px 20px;
        font-size: 18px;
        border-radius: 0 12px 0 0;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .payment-logos {
        gap: 15px;
        justify-content: center;
    }

    .payment-logos img {
        height: 12px;
    }

    /* Contribution Rules */
    .contribution-rules-section {
        padding-top: 35px;
        border-top: 1px solid var(--color-primary);
    }

    .contribution-rules__title {
        font-size: 22px;
        text-align: center;
        margin-bottom: 16px;
    }

    .contribution-rules__list {
        max-height: 150px;
        padding-right: 15px;
        padding-left: 15px;
    }

    .contribution-rules__list li {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 16px;
        text-align: left;
    }

    .contribution-rules__list li::before {
        left: -15px;
    }
}

/* ===== SMALL DEVICES (landscape phones, 576px and up) ===== */
@media (min-width: 576px) and (max-width: 767.98px) {
    .donation-form-section .container {
        padding: 0;
    }
    .donation-form-section {
        padding: 0;
    }

    .donation-form-section::before {
        display: none;
    }

    .donation-form-layout {
        grid-template-columns: 1fr;
        gap: 0;
        min-height: auto;
    }

    .donation-image {
        order: -1;
        min-height: 300px;
        margin-right: 0;
        width: 100%;
        border-radius: 0;
        background-image: url("/assets/images/donate/bg.jpg");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .donation-form {
        padding: 50px 30px;
        gap: 40px;
        border-radius: 0;
    }

    .donation-form__title {
        font-size: 32px;
        line-height: 40px;
        text-align: center;
        margin-bottom: 20px;
    }

    .donation-form__divider {
        width: 250px;
        margin: 0 auto 25px auto;
    }

    .donation-form__intro {
        text-align: center;
    }

    .donation-form__intro p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    /* Amount Section */
    .donation-amount__title {
        font-size: 24px;
        text-align: center;
        margin-bottom: 12px;
    }

    .donation-amount__subtitle {
        font-size: 16px;
        text-align: center;
        margin-bottom: 25px;
    }

    .donation-amount__buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .amount-btn {
        padding: 15px 12px;
        font-size: 22px;
        border-radius: 0 14px 0 0;
    }

    /* Monthly Section */
    .monthly-donation__title {
        font-size: 24px;
        text-align: center;
        margin-bottom: 25px;
    }

    .monthly-toggle {
        flex-direction: column;
        gap: 20px;
    }

    .toggle-btn {
        padding: 18px 25px;
        font-size: 20px;
        line-height: 1.4;
        border-radius: 0 14px 0 0;
        justify-content: center;
        text-align: center;
    }

    /* Checkout Section */
    .checkout__title {
        font-size: 24px;
        text-align: center;
        margin-bottom: 25px;
    }

    .checkout-btn {
        padding: 18px 30px;
        font-size: 20px;
        border-radius: 0 14px 0 0;
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .payment-logos {
        gap: 20px;
        justify-content: center;
    }

    .payment-logos img {
        height: 12px;
    }

    /* Contribution Rules */
    .contribution-rules-section {
        padding-top: 40px;
    }

    .contribution-rules__title {
        font-size: 20px;
        text-align: center;
        margin-bottom: 20px;
    }

    .contribution-rules__list {
        max-height: 180px;
        padding-right: 20px;
        padding-left: 20px;
    }

    .contribution-rules__list li {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 12px;
        text-align: left;
    }

    /* Right Side Image */
    .donation-image {
        order: 1;
        min-height: 400px;
        margin-right: 0;
        width: 100%;
        border-radius: 0;
        background-image: url("/assets/images/donate/bg.jpg");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}

/* ===== MEDIUM DEVICES (tablets, 768px and up) ===== */
@media (min-width: 768px) and (max-width: 991.98px) {
    .donation-form-section .container {
        padding: 0;
    }
    .donation-form-section {
        padding: 0;
        background-size: cover;
        background-position: center;
    }

    .donation-form-section::before {
        display: none;
    }

    .donation-form-layout {
        grid-template-columns: 1fr;
        gap: 0;
        min-height: auto;
        padding: 0;
    }

    .donation-form {
        order: 2;
        padding: 50px 40px;
        gap: 40px;
        border-radius: 0;
        background: white;
    }

    .donation-form__title {
        font-size: 36px;
        line-height: 44px;
        text-align: center;
        margin-bottom: 20px;
    }

    .donation-form__divider {
        width: 280px;
        margin: 0 auto 25px auto;
    }

    .donation-form__intro {
        text-align: center;
    }

    .donation-form__intro p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    /* Amount Section */
    .donation-amount__title {
        font-size: 24px;
        text-align: center;
        margin-bottom: 10px;
    }

    .donation-amount__subtitle {
        font-size: 16px;
        text-align: center;
        margin-bottom: 25px;
    }

    .donation-amount__buttons {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .amount-btn {
        padding: 14px 8px;
        font-size: 22px;
        border-radius: 0 14px 0 0;
    }

    /* Monthly Section */
    .monthly-donation__title {
        font-size: 24px;
        text-align: center;
        margin-bottom: 25px;
    }

    .monthly-toggle {
        gap: 15px;
    }

    .toggle-btn {
        padding: 15px 20px;
        font-size: 18px;
        line-height: 1.4;
        border-radius: 0 14px 0 0;
    }

    /* Checkout Section */
    .checkout__title {
        font-size: 24px;
        text-align: center;
        margin-bottom: 25px;
    }

    .checkout-btn {
        padding: 15px 40px;
        font-size: 20px;
        border-radius: 0 14px 0 0;
        flex-direction: row;
        gap: 20px;
    }

    .payment-logos {
        gap: 20px;
    }

    .payment-logos img {
        height: 20px;
    }

    /* Contribution Rules */
    .contribution-rules-section {
        padding-top: 40px;
    }

    .contribution-rules__title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .contribution-rules__list {
        max-height: 180px;
        padding-right: 20px;
        padding-left: 20px;
    }

    .contribution-rules__list li {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 12px;
    }

    /* Right Side Image */
    .donation-image {
        order: 1;
        min-height: 400px;
        margin-right: 0;
        width: 100%;
        border-radius: 0;
        background-image: url("/assets/images/donate/bg.jpg");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}

/* ===== SMALL DEVICES (landscape phones, 576px - 767px) ===== */
@media (min-width: 576px) and (max-width: 767.98px) {
    .donation-form-section {
        padding: 0;
        background-size: cover;
        background-position: center;
    }

    .donation-form-section::before {
        display: none;
    }

    .donation-form-layout {
        grid-template-columns: 1fr;
        gap: 0;
        min-height: auto;
        padding: 0;
    }

    .donation-form {
        order: 2;
        padding: 40px 25px;
        gap: 30px;
        border-radius: 0;
        background: white;
    }

    .donation-form__title {
        font-size: 28px;
        line-height: 34px;
        text-align: center;
        margin-bottom: 15px;
    }

    .donation-form__divider {
        width: 180px;
        margin: 0 auto 20px auto;
    }

    .donation-form__intro {
        text-align: center;
    }

    .donation-form__intro p {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 12px;
    }

    /* Amount Section */
    .donation-amount__title {
        font-size: 20px;
        text-align: center;
        margin-bottom: 8px;
    }

    .donation-amount__subtitle {
        font-size: 14px;
        text-align: center;
        margin-bottom: 18px;
    }

    .donation-amount__buttons {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .amount-btn {
        padding: 10px 6px;
        font-size: 18px;
        border-radius: 0 10px 0 0;
    }

    /* Monthly Section */
    .monthly-donation__title {
        font-size: 20px;
        text-align: center;
        margin-bottom: 18px;
    }

    .monthly-toggle {
        flex-direction: column;
        gap: 10px;
    }

    .toggle-btn {
        padding: 12px 18px;
        font-size: 16px;
        line-height: 1.4;
        border-radius: 0 10px 0 0;
        justify-content: center;
        text-align: center;
    }

    /* Checkout Section */
    .checkout__title {
        font-size: 20px;
        text-align: center;
        margin-bottom: 18px;
    }

    .checkout-btn {
        padding: 12px 25px;
        font-size: 16px;
        border-radius: 0 10px 0 0;
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .payment-logos {
        gap: 12px;
        justify-content: center;
    }

    .payment-logos img {
        height: 14px;
    }

    /* Contribution Rules */
    .contribution-rules-section {
        padding-top: 30px;
        border-top: 1px solid var(--color-primary);
    }

    .contribution-rules__title {
        font-size: 18px;
        text-align: center;
        margin-bottom: 15px;
    }

    .contribution-rules__list {
        max-height: 140px;
        padding-right: 12px;
        padding-left: 12px;
    }

    .contribution-rules__list li {
        font-size: 13px;
        line-height: 1.4;
        margin-bottom: 8px;
        text-align: left;
    }

    .contribution-rules__list li::before {
        left: -12px;
    }

    /* Right Side Image */
    .donation-image {
        order: 1;
        min-height: 250px;
        margin-right: 0;
        width: 100%;
        border-radius: 0;
        background-image: url("/assets/images/donate/bg.jpg");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}

/* ===== EXTRA SMALL DEVICES (phones, 575px and down) ===== */
@media (max-width: 575.98px) {
    .donation-form-section {
        padding: 0;
        background-size: cover;
        background-position: center;
    }

    .donation-form-section::before {
        display: none;
    }

    .donation-form-layout {
        grid-template-columns: 1fr;
        gap: 0;
        min-height: auto;
        padding: 0;
    }

    .donation-form {
        order: 2;
        padding: 30px 20px;
        gap: 25px;
        border-radius: 0;
        background: white;
    }

    .donation-form__title {
        font-size: 24px;
        line-height: 30px;
        text-align: center;
        margin-bottom: 12px;
    }

    .donation-form__divider {
        width: 150px;
        margin: 0 auto 15px auto;
    }

    .donation-form__intro {
        text-align: center;
    }

    .donation-form__intro p {
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 10px;
    }

    /* Amount Section */
    .donation-amount__title {
        font-size: 18px;
        text-align: center;
        margin-bottom: 6px;
    }

    .donation-amount__subtitle {
        font-size: 13px;
        text-align: center;
        margin-bottom: 15px;
    }

    .donation-amount__buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .amount-btn {
        padding: 8px 4px;
        font-size: 16px;
        border-radius: 0 8px 0 0;
    }

    /* Monthly Section */
    .monthly-donation__title {
        font-size: 18px;
        text-align: center;
        margin-bottom: 15px;
    }

    .monthly-toggle {
        flex-direction: column;
        gap: 8px;
    }

    .toggle-btn {
        padding: 10px 15px;
        font-size: 14px;
        line-height: 1.3;
        border-radius: 0 8px 0 0;
        justify-content: center;
        text-align: center;
    }

    /* Checkout Section */
    .checkout__title {
        font-size: 18px;
        text-align: center;
        margin-bottom: 15px;
    }

    .checkout-btn {
        padding: 10px 20px;
        font-size: 14px;
        border-radius: 0 8px 0 0;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .payment-logos {
        gap: 10px;
        justify-content: center;
    }

    .payment-logos img {
        height: 12px;
    }

    /* Contribution Rules */
    .contribution-rules-section {
        padding-top: 25px;
        border-top: 1px solid var(--color-primary);
    }

    .contribution-rules__title {
        font-size: 16px;
        text-align: center;
        margin-bottom: 12px;
    }

    .contribution-rules__list {
        max-height: 120px;
        padding-right: 10px;
        padding-left: 10px;
    }

    .contribution-rules__list li {
        font-size: 12px;
        line-height: 1.3;
        margin-bottom: 6px;
        text-align: left;
    }

    .contribution-rules__list li::before {
        left: -10px;
    }

    /* Right Side Image */
    .donation-image {
        order: 1;
        min-height: 200px;
        margin-right: 0;
        width: 100%;
        border-radius: 0;
        background-image: url("/assets/images/donate/bg.jpg");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}

/* ===== LANDSCAPE ORIENTATION ADJUSTMENTS ===== */
@media (orientation: landscape) and (max-height: 600px) {
    .donation-form-section {
        min-height: 100vh;
    }

    .donation-form-layout {
        min-height: 100vh;
    }

    .donation-form {
        padding: 25px 20px;
        gap: 20px;
    }

    .donation-form__title {
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 10px;
    }

    .donation-form__divider {
        width: 120px;
        margin-bottom: 15px;
    }

    .donation-form__intro p {
        font-size: 13px;
        line-height: 1.3;
        margin-bottom: 8px;
    }

    .donation-amount__buttons {
        gap: 15px;
    }

    .amount-btn {
        padding: 8px 6px;
        font-size: 16px;
    }

    .monthly-toggle {
        gap: 8px;
    }

    .toggle-btn {
        padding: 8px 15px;
        font-size: 14px;
    }

    .checkout-btn {
        padding: 8px 20px;
        font-size: 14px;
    }

    .contribution-rules__list {
        max-height: 100px;
    }
}

/* ===== HIGH DPI DISPLAYS ===== */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .donation-form-section {
        background-image: url("/assets/images/donate/bg.jpg");
    }

    .amount-btn,
    .toggle-btn,
    .checkout-btn {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .donation-form-section::before {
        display: none;
    }

    .donation-image {
        display: none;
    }

    .donation-form {
        background: white;
        color: black;
        padding: 20px;
        gap: 20px;
    }

    .donation-form__title,
    .donation-amount__title,
    .monthly-donation__title,
    .checkout__title,
    .contribution-rules__title {
        color: black !important;
    }

    .donation-form__intro p,
    .donation-amount__subtitle,
    .contribution-rules__list li {
        color: black !important;
    }

    .amount-btn,
    .toggle-btn,
    .checkout-btn {
        background: white !important;
        color: black !important;
        border: 1px solid black !important;
        box-shadow: none !important;
    }

    .contribution-rules__list {
        max-height: none;
        overflow: visible;
    }
}

/* ===== NEWS POST PAGE RESPONSIVE ===== */

/* ===== EXTRA SMALL DEVICES (phones, 576px and down) ===== */
@media (max-width: 575.98px) {
    /* Main Content Section */
    .main-content {
        padding: 40px 0;
    }

    /* Content Layout */
    .content-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Blog Post Content */
    .blog-content {
        order: 1;
    }

    .blog-post__date {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .blog-post__title {
        font-size: 18px;
        line-height: 28px;
        text-align: start;
        margin-bottom: 25px;
        -webkit-line-clamp: 3;
    }

    .blog-post__image {
        margin-bottom: 25px;
    }

    .blog-post__text {
        margin: 20px 0;
    }

    .blog-post__text p {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .blog-post__quote {
        margin: 25px 0;
    }

    .blog-post__quote img {
        width: 50px;
        height: 50px;
    }

    .blog-post__subtitle {
        font-size: 18px;
        line-height: 24px;
        margin: 20px 0;
        margin-bottom: 20px;
    }

    /* Social Share Section */
    .blog-post__social {
        flex-direction: column;
        gap: 20px;
    }

    .blog-post__social-icons {
        padding: 12px 20px;
        gap: 15px;
    }

    .social-label {
        font-size: 14px;
    }

    .social-icons {
        gap: 15px;
        justify-content: center;
    }

    .social-icon {
        width: 32px;
        height: 32px;
    }

    .social-icon i {
        font-size: 14px;
    }

    /* Similar Posts Sidebar */
    .similar-posts {
        margin-top: 30px;
        order: 2;
    }

    .similar-posts__title {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 25px;
        text-align: center;
    }

    .similar-post-item {
        padding: 30px;
        margin-bottom: 20px;
    }

    .similar-post-item__date {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .similar-post-item__title {
        font-size: 18px;
        line-height: 1.3;
        margin-bottom: 15px;
        -webkit-line-clamp: 3;
    }

    .similar-post-item__link {
        font-size: 14px;
        gap: 8px;
    }

    .similar-post-item__link img {
        width: 16px;
        height: 16px;
    }
}

/* ===== SMALL DEVICES (landscape phones, 576px and up) ===== */
@media (min-width: 576px) and (max-width: 767.98px) {
    /* Main Content Section */
    .main-content {
        padding: 50px 0;
    }

    /* Content Layout */
    .content-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Blog Post Content */
    .blog-content {
        order: 1;
    }

    .blog-post__date {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .blog-post__title {
        font-size: 22px;
        line-height: 32px;
        margin-bottom: 30px;
    }

    .blog-post__image {
        margin-bottom: 30px;
    }

    .blog-post__text {
        margin: 25px 0;
    }

    .blog-post__text p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 18px;
    }

    .blog-post__quote {
        margin: 30px 0;
    }

    .blog-post__quote img {
        width: 55px;
        height: 55px;
    }

    .blog-post__subtitle {
        font-size: 22px;
        line-height: 32px;
        margin: 25px 0;
        margin-bottom: 25px;
    }

    /* Social Share Section */
    .blog-post__social {
        flex-direction: column;
        gap: 25px;
    }

    .blog-post__social-icons {
        padding: 15px 25px;
        gap: 20px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .social-label {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .social-icons {
        gap: 18px;
        justify-content: center;
    }

    .social-icon {
        width: 34px;
        height: 34px;
    }

    .social-icon i {
        font-size: 15px;
    }

    /* Similar Posts Sidebar */
    .similar-posts__title {
        font-size: 26px;
        line-height: 36px;
        margin-bottom: 30px;
        text-align: center;
    }

    .similar-post-item {
        padding: 22px;
        margin-bottom: 25px;
        border-radius: 8px;
    }

    .similar-post-item__date {
        font-size: 15px;
        margin-bottom: 18px;
    }

    .similar-post-item__title {
        font-size: 19px;
        line-height: 1.4;
        margin-bottom: 18px;
    }

    .similar-post-item__link {
        font-size: 15px;
        gap: 10px;
    }

    .similar-post-item__link img {
        width: 18px;
        height: 18px;
    }
}

/* ===== MEDIUM DEVICES (tablets, 768px and up) ===== */
@media (min-width: 768px) and (max-width: 991.98px) {
    /* Main Content Section */
    .main-content {
        padding: 60px 0;
    }

    /* Content Layout */
    .content-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    /* Blog Post Content */
    .blog-content {
        order: 1;
    }

    .blog-post__date {
        font-size: 19px;
        margin-bottom: 22px;
    }

    .blog-post__title {
        font-size: 23px;
        line-height: 36px;
        margin-bottom: 35px;
    }

    .blog-post__image {
        margin-bottom: 32px;
    }

    .blog-post__text {
        margin: 28px 0;
    }

    .blog-post__text p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .blog-post__quote {
        margin: 32px 0;
    }

    .blog-post__quote img {
        width: 58px;
        height: 58px;
    }

    .blog-post__subtitle {
        font-size: 24px;
        line-height: 36px;
        margin: 28px 0;
        margin-bottom: 26px;
    }

    /* Social Share Section */
    .blog-post__social {
        flex-direction: column;
        gap: 30px;
    }

    .blog-post__social-icons {
        padding: 18px 30px;
        gap: 25px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .social-label {
        font-size: 16px;
        margin-bottom: 0;
    }

    .social-icons {
        gap: 20px;
        justify-content: flex-end;
    }

    .social-icon {
        width: 36px;
        height: 36px;
    }

    .social-icon i {
        font-size: 16px;
    }

    /* Similar Posts Sidebar */

    .similar-posts__title {
        font-size: 28px;
        line-height: 40px;
        margin-bottom: 32px;
        text-align: center;
    }

    .similar-post-item {
        padding: 25px;
        margin-bottom: 28px;
        border-radius: 8px;
    }

    .similar-post-item__date {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .similar-post-item__title {
        font-size: 20px;
        line-height: 1.4;
        margin-bottom: 20px;
    }

    .similar-post-item__link {
        font-size: 16px;
        gap: 12px;
    }

    .similar-post-item__link img {
        width: 20px;
        height: 20px;
    }
}

/* ===== LARGE DEVICES (desktops, 992px and up) ===== */
@media (min-width: 992px) and (max-width: 1199.98px) {
    /* Main Content Section */
    .main-content {
        padding: 70px 0;
    }

    /* Content Layout */
    .content-layout {
        grid-template-columns: 2fr 1fr;
        gap: 50px;
    }

    /* Blog Post Content */
    .blog-post__date {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .blog-post__title {
        font-size: 24px;
        line-height: 44px;
        margin-bottom: 38px;
    }

    .blog-post__image {
        margin-bottom: 34px;
    }

    .blog-post__text {
        margin: 30px 0;
    }

    .blog-post__text p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .blog-post__quote {
        margin: 34px 0;
    }

    .blog-post__quote img {
        width: 60px;
        height: 60px;
    }

    .blog-post__subtitle {
        font-size: 26px;
        line-height: 38px;
        margin: 30px 0;
        margin-bottom: 28px;
    }

    /* Social Share Section */
    .blog-post__social {
        flex-direction: row;
        gap: 0;
    }

    .blog-post__social-icons {
        padding: 16px 25px;
        gap: 20px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .social-label {
        font-size: 16px;
        margin-bottom: 0;
    }

    .social-icons {
        gap: 20px;
        justify-content: flex-end;
    }

    .social-icon {
        width: 36px;
        height: 36px;
    }

    .social-icon i {
        font-size: 16px;
    }

    /* Similar Posts Sidebar */

    .similar-posts__title {
        font-size: 30px;
        line-height: 44px;
        margin-bottom: 34px;
        text-align: left;
    }

    .similar-post-item {
        padding: 26px 30px;
        margin-bottom: 36px;
        border-radius: 0;
    }

    .similar-post-item__date {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .similar-post-item__title {
        font-size: 22px;
        line-height: 1.4;
        margin-bottom: 20px;
    }

    .similar-post-item__link {
        font-size: 16px;
        gap: 12px;
    }

    .similar-post-item__link img {
        width: 20px;
        height: 20px;
    }
}

/* ===== LANDSCAPE ORIENTATION ADJUSTMENTS ===== */
@media (orientation: landscape) and (max-height: 600px) {
    .main-content {
        padding: 40px 0;
    }

    .content-layout {
        gap: 30px;
    }

    .blog-post__title {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 20px;
    }

    .blog-post__subtitle {
        font-size: 22px;
        line-height: 30px;
        margin: 20px 0;
        margin-bottom: 20px;
    }

    .blog-post__text {
        margin: 20px 0;
    }

    .blog-post__text p {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .similar-posts__title {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 25px;
    }

    .similar-post-item {
        padding: 20px 25px;
        margin-bottom: 25px;
    }
}

/* ===== HIGH DPI DISPLAYS ===== */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .blog-post__image img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }

    .similar-post-item {
        border: 1px solid rgba(0, 0, 0, 0.1);
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .blog-post__social,
    .similar-posts {
        display: none !important;
    }

    .content-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .blog-post__title,
    .blog-post__subtitle {
        color: var(--color-black) !important;
    }

    .blog-post__text p {
        color: var(--color-black) !important;
    }

    .main-content {
        padding: 20px 0;
    }
}

/* ===== VOLUNTEER SECTION RESPONSIVE ===== */

/* ===== EXTRA SMALL DEVICES (phones, 576px and down) ===== */
@media (max-width: 575.98px) {
    .volunteer-section {
        padding: 0px;
        background-size: cover;
    }
    .volunteer-section .container {
        padding: 0;
    }

    .volunteer-form-layout {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .volunteer-form-content {
        padding: 30px 20px;
    }

    .volunteer-form__header {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 40px;
        text-align: center;
    }

    .volunteer-form__title {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .volunteer-form__intro p {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .social-media-icons {
        justify-content: center;
        gap: 15px;
    }

    .social-icon-link {
        font-size: 20px;
    }

    .volunteer-image {
        order: -1;
        height: 250px;
        width: 100%;
        border-radius: 16px 16px 0 0;
    }

    .volunteer-image__img {
        border-radius: 16px 16px 0 0;
    }

    .volunteer-form__content {
        width: 100%;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }

    .form-group {
        margin-bottom: 0;
    }

    .form-label {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .form-input {
        padding: 12px 0;
        font-size: 14px;
    }

    .volunteer-options-section {
        padding-bottom: 40px;
    }

    .volunteer-options-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 20px;
    }

    .volunteer-options__title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .checkbox-group {
        gap: 12px;
    }

    .checkbox-item {
        font-size: 16px;
        gap: 12px;
    }

    .checkmark {
        width: 18px;
        height: 18px;
    }

    .other-skills-section {
        margin-top: 15px;
    }

    .other-skills-section .form-label {
        font-size: 16px;
        margin-bottom: 10px;
    }
}

/* ===== SMALL DEVICES (landscape phones, 576px and up) ===== */
@media (min-width: 576px) and (max-width: 767.98px) {
    .volunteer-section {
        padding: 50px 30px;
    }

    .volunteer-form-content {
        padding: 40px 30px;
    }

    .volunteer-form__header {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 50px;
        text-align: center;
    }

    .volunteer-form__title {
        font-size: 40px;
        margin-bottom: 25px;
    }

    .volunteer-form__intro p {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .social-media-icons {
        justify-content: center;
        gap: 18px;
    }

    .volunteer-image {
        order: -1;
        height: 300px;
        width: 100%;
        border-radius: 16px 16px 0 0;
    }

    .volunteer-form__content {
        width: 100%;
        gap: 50px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 35px;
    }

    .volunteer-options-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .volunteer-options__title {
        font-size: 22px;
    }
}

/* ===== MEDIUM DEVICES (tablets, 768px and up) ===== */
@media (min-width: 768px) and (max-width: 991.98px) {
    .volunteer-section {
        padding: 60px 40px;
    }
    .volunteer-form-content {
        padding: 50px 40px;
    }

    .volunteer-form__header {
        gap: 60px;
        margin-bottom: 55px;
    }

    .volunteer-form__title {
        font-size: 48px;
        margin-bottom: 28px;
    }

    .volunteer-form__intro p {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .volunteer-image {
        height: 350px;
        width: 400px;
    }

    .volunteer-form__content {
        width: 100%;
        gap: 55px;
    }

    .form-row {
        gap: 35px;
        margin-bottom: 38px;
    }

    .volunteer-options-grid {
        gap: 35px;
    }

    .volunteer-options__title {
        font-size: 23px;
    }
}

/* ===== LARGE DEVICES (desktops, 992px and up) ===== */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .volunteer-section {
        padding: 65px 50px;
    }
    .volunteer-section .container {
        padding: 0;
    }
    .volunteer-form-content {
        padding: 55px 50px;
    }

    .volunteer-form__header {
        gap: 80px;
        margin-bottom: 58px;
    }

    .volunteer-form__title {
        font-size: 54px;
        margin-bottom: 30px;
    }

    .volunteer-form__intro p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .volunteer-image {
        height: 380px;
        width: 450px;
    }

    .volunteer-form__content {
        width: 100%;
        gap: 58px;
    }

    .form-row {
        gap: 38px;
        margin-bottom: 40px;
    }

    .volunteer-options-grid {
        gap: 38px;
    }

    .volunteer-options__title {
        font-size: 24px;
    }
}
/* ===== LANDSCAPE ORIENTATION ADJUSTMENTS ===== */
@media (orientation: landscape) and (max-height: 600px) {
    .volunteer-section {
        padding: 40px 30px;
    }

    .volunteer-form-content {
        padding: 40px 30px;
    }

    .volunteer-form__header {
        gap: 40px;
        margin-bottom: 30px;
    }

    .volunteer-form__title {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .volunteer-form__intro p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .volunteer-image {
        height: 250px;
        width: 300px;
    }

    .volunteer-form__content {
        gap: 30px;
    }

    .form-row {
        gap: 25px;
        margin-bottom: 25px;
    }

    .volunteer-options-grid {
        gap: 25px;
    }

    .volunteer-options__title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .checkbox-group {
        gap: 10px;
    }
}

/* ===== HIGH DPI DISPLAYS ===== */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .volunteer-section {
        background-image: url("/assets/images/signup/bg.png");
    }

    .volunteer-image__img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* ===== FOOTER LANDSCAPE ORIENTATION ADJUSTMENTS ===== */
@media (orientation: landscape) and (max-height: 600px) {
    .footer {
        padding: 60px 0 0;
    }

    .footer .container {
        gap: 30px;
        padding-bottom: 50px;
    }

    .footer__logo {
        font-size: 48px;
        line-height: 52px;
        margin-bottom: 15px;
    }

    .footer__description {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 20px;
    }

    .footer__social {
        gap: 20px;
        margin-bottom: 10px;
    }

    .footer__social-link {
        font-size: 18px;
    }

    .footer__menu-title {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .footer__nav {
        gap: 15px;
    }

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

    .footer__contact-title {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .footer__phone {
        gap: 8px;
        padding-bottom: 20px;
        margin-bottom: 25px;
    }

    .footer__email {
        gap: 8px;
        padding-bottom: 20px;
    }

    .footer__phone-link {
        font-size: 28px;
        line-height: 34px;
    }

    .footer__email-link {
        font-size: 28px;
        line-height: 34px;
    }

    .footer__bottom .container {
        padding: 20px 0;
    }

    .footer__copyright {
        font-size: 14px;
    }
}

/* ===== FOOTER PRINT STYLES ===== */
@media print {
    .footer {
        padding: 40px 0 0;
        background: white !important;
        color: black !important;
    }

    .footer .container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-bottom: 40px;
        text-align: left;
    }

    .footer__logo {
        color: black !important;
        font-size: 48px;
        margin-bottom: 20px;
    }

    .footer__logo-accent {
        color: #333 !important;
    }

    .footer__description {
        color: black !important;
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 20px;
    }

    .footer__social {
        display: none !important;
    }

    .footer__menu-title {
        color: black !important;
        font-size: 20px;
        margin-bottom: 15px;
    }

    .footer__nav-link {
        color: black !important;
        font-size: 16px;
    }

    .footer__contact-title {
        color: black !important;
        font-size: 20px;
        margin-bottom: 15px;
    }

    .footer__phone-link {
        color: black !important;
        font-size: 24px;
        line-height: 30px;
    }

    .footer__email-link {
        color: black !important;
        font-size: 24px;
        line-height: 30px;
    }

    .footer__bottom {
        border-top: 1px solid #ccc;
    }

    .footer__bottom .container {
        padding: 20px 0;
    }

    .footer__copyright {
        color: #666 !important;
        font-size: 14px;
    }
}

/* ===== FOOTER ACCESSIBILITY IMPROVEMENTS ===== */
@media (prefers-reduced-motion: reduce) {
    .footer__social-link,
    .footer__nav-link,
    .footer__phone-link,
    .footer__email-link {
        transition: none;
    }
}

@media (prefers-contrast: high) {
    .footer {
        border: 2px solid var(--color-white);
    }

    .footer__social-link:hover,
    .footer__nav-link:hover,
    .footer__phone-link:hover,
    .footer__email-link:hover {
        background: var(--color-white);
        color: var(--color-primary);
        padding: 5px 10px;
        border-radius: 4px;
    }
}

/* ===== HERO SECTION ACCESSIBILITY IMPROVEMENTS ===== */
@media (prefers-reduced-motion: reduce) {
    .hero__btn,
    .hero__nav-btn {
        transition: none;
    }

    .hero__overlay {
        backdrop-filter: none;
    }
}

@media (prefers-contrast: high) {
    .hero__overlay {
        background: linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.7) 50%,
            rgba(0, 0, 0, 0.5) 100%
        );
    }

    .hero__btn {
        border-width: 3px;
    }

    .hero__nav-btn {
        border-width: 2px;
    }
}

@media (prefers-color-scheme: dark) {
    .hero__overlay {
        background: linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.3) 100%
        );
    }
}

/* Focus styles for keyboard navigation */
.hero__btn:focus,
.hero__nav-btn:focus {
    outline: 3px solid var(--color-accent);
    outline-offset: 2px;
}

/* High contrast focus styles */
@media (prefers-contrast: high) {
    .hero__btn:focus,
    .hero__nav-btn:focus {
        outline: 4px solid var(--color-white);
        outline-offset: 3px;
    }
}
