/* =======================================================
    Fundraiser Page Styles
    Author: Ilhan Mohamed
    Created: Oct 2025
========================================================*/

body{
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #b6ddff;
}

/* --- HEADER STYLING --- */
header {
    width: 100%;
    background: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.header-banner {
    width: 100%;
    height: auto;
    display: block;
}

.header-content {
    position: absolute;
    top: 55%; 
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    z-index: 2;
    width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
}

.header-logo {
    width: 375px;
    height: auto;
    margin-bottom: 0.0001rem;
    filter: drop-shadow(2px 2px 6px rgba(0, 0, 0, 0.5));
}

.header-subtitle {
    font-family: "Times New Roman", Times, serif;
    font-size: 3rem;
    font-weight: 700;
    color: #515c6c; /* Slate grey */
    -webkit-text-stroke: 0.5px #2d3748; /* Dark grey border */
    text-shadow: none;
    letter-spacing: 1px;
    margin-top: -1rem;
    margin-bottom: 3rem;
    font-style: italic;
}


nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
}

nav a {
    background: rgba(255, 255, 255, 0.9);
    color: #0064b9;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
}

.header-center, .IslamicCentreLogo, .AFISlogo, header h1 {
    display: none;
}

/* Quote */

.quote-section {
    background: transparent;
    padding: 0.5rem 1rem 2rem 1rem; /* Small top, larger bottom */
    text-align: center;
}

.quote-section .header-quote {
    font-family: "Times New Roman", Times, serif;
    font-size: 1.7rem;
    font-weight: normal;
    color: #2d3748;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: none;
}

/* Subtle underline bar */
.quote-underline {
    width: 100px;
    height: 3px;
    background: #0064b9;
    margin: 2rem auto 0 auto;
    border-radius: 2px;
}

/* Donation Progress Section */
.donation-progress {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 3rem 1rem;
    margin: 5rem auto;
    max-width: 1200px;
    border-radius: 100px 100px 0 0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

.progress-text {
    text-align: center;
    margin-bottom: 2.5rem;
}

.progress-text h2 {
    color: #344e69;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.progress-text p {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.goal-amount {
    font-size: 1.3rem !important;
    color: #2d3748 !important;
}

.goal-amount strong {
    color: #0064b9;
}

.progress-container {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.progress-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.raised {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3748;
}

.percentage {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0064b9;
}

.progress-bar {
    width: 100%;
    height: 20px;
    background-color: #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    margin: 1rem 0;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #0064b9 0%, #00a8ff 100%);
    border-radius: 10px;
    transition: width 0.8s ease-in-out;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 4px;
    background: rgba(255, 255, 255, 0.8);
    animation: pulse 2s infinite;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    color: #718096;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.donation-cta {
    text-align: center;
    margin-top: 2rem;
}

.donation-cta p {
    color: #4a5568;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #0064b9 0%, #004d8c 100%);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 100, 185, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 100, 185, 0.4);
    background: linear-gradient(135deg, #004d8c 0%, #0064b9 100%);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Project Vision Section */
.project-vision {
    background: #f8fbfe;
    padding: 4rem 1rem;
    position: relative;
}

.project-vision h2 {
    text-align: center;
    color: #2d3748;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.project-vision h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #e63946;
    margin: 1rem auto;
    border-radius: 2px;
}

.vision-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.video-container {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    max-width: 900px;
    margin: 0 auto;
}

.video-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.video-container video {
    width: 100%;
    max-width: 900px;
    border-radius: 8px;
    display: block;
}

.video-container p {
    text-align: center;
    color: #4a5568;
    font-style: italic;
    margin-top: 1rem;
}

.plans-gallery {
    background: #ffffff;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    margin: 2rem 0;
}

.plans-gallery h3 {
    color: #2d3748;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.plans-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.plans-grid img:hover {
    transform: scale(1.03);
    border-color: #0064b9;
    box-shadow: 0 8px 20px rgba(0, 100, 185, 0.3);
}

.plan-item {
    text-align: center;
}

.plan-caption {
    margin-top: 0.5rem;
    color: #4a5568;
    font-weight: 500;
    font-size: 0.9rem;
}

.plan-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.plan-modal img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 8px;
}

.plan-modal .modal-caption {
    color: white;
    margin-top: 1rem;
    font-size: 1.1rem;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem;
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    color: #2d3748;
}

.stat {
    text-align: center;
    padding: 1.5rem;
}

.stat .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0064b9;
    margin-bottom: 0.5rem;
}

.stat .label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #4a5568;
}

.vision-cta {
    text-align: center;
    margin-top: 1rem;
    padding: 2rem;
    background: transparent;
}

.vision-cta h3 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.vision-cta p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.vision-donate-btn {
    display: inline-block;
    background: linear-gradient(135deg, #e63946 0%, #d62839 100%);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.vision-donate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
    background: linear-gradient(135deg, #d62839 0%, #e63946 100%);
}

/* Building Progress Gallery */
.progress-gallery {
    background: #ffffff;
    padding: 4rem 1rem;
    text-align: center;
}

.progress-gallery h2 {
    color: #2d3748;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.gallery-subtitle {
    color: #4a5568;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto 2rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-slide {
    width: 100%;
    text-align: center;
}

.gallery-slide img {
    width: 100%;
    max-width: 800px;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.image-caption {
    display: none;
}

.gallery-arrow {
    background: #0064b9;
    color: white;
    border: none;
    font-size: 2.5rem;
    font-weight: 300;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 10;
    display: block;
    text-align: center;
    line-height: 60px;
}

.prev-arrow {
    left: 20px;
}

.next-arrow {
    right: 20px;
}

.gallery-arrow:hover {
    background: #004d8c;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.gallery-dots {
    text-align: center;
    margin-top: 2rem;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #cbd5e0;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.gallery-media {
    width: 100%;
    max-width: 800px;
    height: 500px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: #000;
}

.gallery-media video {
    background: #000;
}

.dot.active {
    background-color: #0064b9;
}

.dot:hover {
    background-color: #4a5568;
}

/* Monthly Donations Section */
.monthly-donations {
    background: #f8fbfe;
    padding: 2rem 1rem;
    text-align: center;
}

.monthly-donations h2 {
    text-align: center;
    color: #2d3748;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: #4a5568;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.donation-tiers-top,
.donation-tiers-bottom {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: nowrap;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.donation-tier {
    background: white;
    border-radius: 12px;
    padding: 1.5rem 1.25rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 220px;
    min-height: 320px;
    flex-shrink: 0;
}


.donation-tier:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #0064b9;
}

.tier-header h3 {
    font-size: 2rem;
    color: #0064b9;
    margin: 0;
    font-weight: 700;
}

.period {
    color: #718096;
    font-size: 0.8rem;
    display: block;
    margin-top: 0.25rem;
}

.tier-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2d3748;
    margin: 1rem 0;
    padding: 0.5rem 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.tier-benefits {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    flex-grow: 1;
}

.tier-benefits li {
    color: #4a5568;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    position: relative;
    padding-left: 1rem;
}

.tier-donate-btn {
    display: block;
    background: #0064b9;
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
    font-size: 1rem;
}

.tier-donate-btn:hover {
    background: #004d8c;
    transform: translateY(-2px);
}

/* Leaders Support Section */
.leaders-support {
    background: #f8fbfe;
    padding: 4rem 1rem;
    text-align: center;
}

.leaders-support h2 {
    color: #2d3748;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

/* Leaders Grid - Side by side on desktop */
.leaders-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap; /* Allows wrapping if needed */
}

.leader-profile {
    text-align: center;
    flex: 0 1 auto; /* Don't grow, but can shrink */
}

.leader-profile img {
    width: 180px; /* Slightly smaller to fit two side by side */
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #0064b9;
    margin-bottom: 1rem;
}

.leader-role {
    color: #383e48;
    font-size: 1.3rem;
    font-weight: 600;
}

/* Final Donate Section */
.final-donate-section {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    max-width: 500px;
    margin: 0 auto;
}

.final-donate-btn {
    display: inline-block;
    background: linear-gradient(135deg, #0064b9 0%, #004d8c 100%);
    color: white;
    padding: 1.2rem 3rem;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 100, 185, 0.3);
}

.final-donate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 100, 185, 0.4);
    background: linear-gradient(135deg, #004d8c 0%, #0064b9 100%);
}

/* Recommendation Button */
.recommendation-btn {
    background: #0064b9;
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    text-decoration: none;
    display: inline-block;
}

.recommendation-btn:hover {
    background: #004d8c;
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .recommendation-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

/* Recommendation Modal */
.recommendation-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.recommendation-modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow: auto;
    position: relative;
    padding: 2rem;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
    z-index: 10;
}

.close-modal:hover {
    color: #000;
}

.modal-content h3 {
    color: #2d3748;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
}

.pdf-viewer {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.modal-actions {
    text-align: center;
}

.download-btn {
    display: inline-block;
    background: #0064b9;
    color: white;
    padding: 0.7rem 1.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: #004d8c;
}

/* ===== MOBILE STYLES ===== */
@media (max-width: 768px) {
    /* Header */
    .header-content {
        top: 90%; 
    }
    
    .header-logo {
        width: 180px;
        margin-bottom: 0rem !important;
    }

    .header-subtitle {
        font-size: 1.5rem;
        margin-top: -1rem;
        margin-bottom: 1rem;
        -webkit-text-stroke: 0.5px #2d3748;
        text-shadow: none;
    }
    
    header {
        margin-bottom: 5rem;
    }
    
    nav ul {
        top: 0.5rem;
        right: 0.5rem;
    }
    
    nav a {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
    
    /* Quote Section */
    .quote-section {
        padding: 2rem 1.5rem 1rem 1.5rem;
        margin-bottom: 3 !important;
    }
    
    .quote-section .header-quote {
        font-size: 1.3rem;
        line-height: 1.5;
        max-width: 90%;
    }
    
    .quote-underline {
        width: 90px;
        margin: 1.5rem auto 0 auto;
    }
    
    /* Donation Progress */
    .donation-progress {
        padding: 2rem 1rem;
        margin: 1rem auto;
        border-radius: 60px 60px 0 0;
    }
    
    .progress-text h2 {
        font-size: 1.8rem;
    }
    
    .progress-text p {
        font-size: 1rem;
    }
    
    .progress-container {
        padding: 1.5rem;
    }
    
    .raised, .percentage {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1.1rem;
    }
    
    /* Project Vision */
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .plans-grid img {
        height: 200px;
    }
    
    .plans-gallery {
        padding: 1.5rem;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .project-vision {
        padding: 3rem 1rem;
    }
    
    .stat .number {
        font-size: 2rem;
    }
    
    .video-container,
    .plans-gallery {
        padding: 1.5rem;
    }
    
    /* Gallery */
    .progress-gallery h2 {
        font-size: 2rem;
    }
    
    .gallery-slide img,
    .gallery-media {
        height: 400px;
    }
    
    .gallery-arrow {
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
        line-height: 45px;
    }
    
    .prev-arrow {
        left: 5px;
    }
    
    .next-arrow {
        right: 5px;
    }
    
    .progress-gallery {
        padding: 3rem 1rem;
    }
    
    /* Monthly Donations */
    .donation-tiers-container {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Reorder the tiers - highest to lowest */
    .tier-500 { order: 1; }  /* $500 first */
    .tier-250 { order: 2; }  /* $250 second */
    .tier-100 { order: 3; }  /* $100 third */
    .tier-50  { order: 4; }  /* $50 fourth */
    .tier-25  { order: 5; }  /* $25 last */
    
    .donation-tier {
        width: 100%;
        max-width: 300px;
        min-height: 280px;
    }

    .donation-tiers-top,
    .donation-tiers-bottom {
        flex-direction: column;
        margin-bottom: 0;
        gap: 1rem;
    }
    
    /* Leaders Support */
    .leaders-support {
        padding: 3rem 1rem;
    }
    
    .leaders-support h2 {
        font-size: 1.8rem;
    }
    
    .leaders-grid {
        flex-direction: column;
        gap: 2rem;
    }
    
    .leader-profile img {
        width: 160px;
        height: 160px;
    }
    
    .leader-role {
        font-size: 1.1rem;
    }
    
    .final-donate-section {
        padding: 2rem;
    }
    
    .final-donate-btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    /* Modal */
    .modal-content {
        width: 95%;
        padding: 1.5rem;
    }
    
    .pdf-viewer embed {
        height: 400px;
    }
    
    .recommendation-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    /* Quote Section */
    .quote-section {
        padding: 1.8rem 1rem 1.2rem 1rem;
    }
    
    .quote-section .header-quote {
        font-size: 1.1rem;
        line-height: 1.4;
        max-width: 95%;
    }
    
    .quote-underline {
        width: 80px;
        height: 2px;
        margin: 1.2rem auto 0 auto;
    }
    
    .donation-progress {
        border-radius: 40px 40px 0 0;
    }
    
    .progress-stats {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .progress-text h2 {
        font-size: 1.5rem;
    }
    
    .gallery-slide img,
    .gallery-media {
        height: 300px;
    }
    
    .gallery-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
        line-height: 40px;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
}

/* Small Phones */
@media (max-width: 360px) {
    .quote-section {
        padding: 1.5rem 0.8rem 1rem 0.8rem;
    }
    
    .quote-section .header-quote {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quote-underline {
        width: 70px;
        margin: 1rem auto 0 auto;
    }
}

/* ===== MOBILE LANDSCAPE FIXES ===== */
@media (max-width: 900px) and (orientation: landscape) {
    /* Header adjustments for landscape */
    .header-content {
        top: 70% !important;
    }
    
    .header-logo {
        width: 195px !important;
        margin-bottom: 0.1rem !important;
    }

    .header-subtitle {
        font-size: 1.7rem !important;
        margin-top: -0.3rem !important;
        margin-bottom: 2.5rem !important;
    }
    
    header {
        margin-bottom: 5rem !important;
    }
    
    /* Quote Section Landscape */
    .quote-section {
        padding: 1.5rem 1rem 1rem 1rem;
    }
    
    .quote-section .header-quote {
        font-size: 1.1rem;
        line-height: 1.3;
        max-width: 95%;
    }
    
    .quote-underline {
        margin: 1rem auto 0 auto;
    }
}

@media (min-width: 1200px) {
    .plans-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}