/* Main Street Alliance Healthcare Premium Microsite Styles - Billboard Style */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #000000, #2d1b1b, #000000);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles - Dynamic Floating Layout */
.main-header {
    position: relative;
    min-height: 700px;
    overflow: visible;
    background: linear-gradient(135deg, #000000, #2d1b1b, #000000);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px 80px;
}

.main-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.representatives-floating {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    pointer-events: none;
    overflow: visible;
}

.billboard-content {
    position: relative;
    z-index: 5;
    max-width: 900px;
    width: 100%;
    text-align: center;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.75);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.2);
}

.van-orden-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    transform: scale(1.1);
    z-index: 3;
    position: relative;
}

.rep-photo-item {
    position: absolute;
    width: 300px;
    height: 380px;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.7));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: all;
    cursor: pointer;
    animation: float 6s ease-in-out infinite;
}

.rep-photo-item:hover {
    transform: scale(1.15) rotate(0deg) !important;
    z-index: 6 !important;
    filter: drop-shadow(0 0 40px rgba(255, 215, 0, 1));
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(var(--rotation));
    }
    50% {
        transform: translateY(-20px) rotate(var(--rotation));
    }
}

.rep-1 {
    left: 3%;
    top: 12%;
    --rotation: -10deg;
    animation-delay: 0s;
    z-index: 4;
}

.rep-2 {
    right: 5%;
    top: 8%;
    --rotation: 10deg;
    animation-delay: 1.5s;
    z-index: 4;
}

.rep-3 {
    left: 5%;
    bottom: 12%;
    --rotation: -8deg;
    animation-delay: 3s;
    z-index: 4;
}

.rep-4 {
    right: 3%;
    bottom: 8%;
    --rotation: 12deg;
    animation-delay: 4.5s;
    z-index: 4;
}

.rep-photo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.rep-district {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000000;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: 8px;
    text-align: center;
    white-space: nowrap;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.9), 0 4px 10px rgba(0, 0, 0, 0.5);
    border: 3px solid #ffffff;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 140px;
}

.rep-name-badge {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.rep-district-code {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.rep-photo-item:hover .rep-district {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 0 30px rgba(255, 215, 0, 1), 0 6px 15px rgba(0, 0, 0, 0.6);
}

.billboard-headline {
    margin-bottom: 25px;
}

.main-headline {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 3.5rem;
    color: #ffffff;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
    letter-spacing: 1px;
    line-height: 1.2;
    margin: 0;
}

.highlight-name {
    color: #ffd700;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8), 0 0 20px rgba(255, 215, 0, 0.6);
    font-size: 1.1em;
    position: relative;
}

/* Removed underline styling for highlight-name */

.billboard-message {
    color: #ffffff;
}

.main-message {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.accusation {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffd700;
}

.accusation strong {
    color: #ff0000;
    text-decoration: underline;
}

.source {
    font-size: 1rem;
    color: #cccccc;
    font-style: italic;
    margin-top: 10px;
}

.billboard-cta {
    margin-top: 20px;
}

.cta-text-simple {
    display: inline-block;
}

.cta-text {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.4rem;
    margin-right: 10px;
}

.cta-url {
    color: #ff0000;
    font-weight: 700;
    font-size: 1.4rem;
    text-decoration: none;
}

/* Countdown Section */
.countdown-section {
    background: linear-gradient(135deg, #000000, #2d1b1b);
    padding: 80px 0;
    text-align: center;
    border-top: 3px solid #ffd700;
    border-bottom: 3px solid #ffd700;
}

.countdown-section h2 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    letter-spacing: 2px;
}

.countdown-clock {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.countdown-item {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border: 3px solid #ffffff;
    border-radius: 10px;
    padding: 25px 20px;
    min-width: 140px;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
    animation: glow 3s infinite alternate;
    position: relative;
}

@keyframes glow {
    0% { box-shadow: 0 0 25px rgba(255, 215, 0, 0.6); }
    100% { box-shadow: 0 0 35px rgba(255, 215, 0, 0.8); }
}

.countdown-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    color: #000000;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.3);
    font-family: 'Arial', sans-serif;
}

.countdown-label {
    display: block;
    font-size: 1.1rem;
    color: #000000;
    margin-top: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-text {
    font-size: 1.8rem;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
}

/* Calculator Section */
.calculator-section {
    background: linear-gradient(135deg, #2d1b1b, #000000);
    padding: 80px 0;
    text-align: center;
}

.calculator-section h2 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 3.5rem;
    color: #ffd700;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    letter-spacing: 2px;
}

.calculator {
    background: linear-gradient(45deg, #1a1a1a, #2d1b1b);
    border: 3px solid #ffd700;
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.input-group {
    margin-bottom: 25px;
    text-align: left;
}

.input-group label {
    display: block;
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: bold;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    border: 2px solid #ffd700;
    border-radius: 10px;
    background: #000000;
    color: #ffffff;
}

#calculate-btn {
    background: linear-gradient(45deg, #ff0000, #ffd700);
    color: #000000;
    border: none;
    padding: 25px 50px;
    font-size: 1.6rem;
    font-weight: 700;
    border-radius: 15px;
    cursor: pointer;
    margin: 30px 0;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

#calculate-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.6);
}

.result {
    background: linear-gradient(45deg, #ff0000, #ffd700);
    border: 3px solid #ffffff;
    border-radius: 15px;
    padding: 30px;
    margin-top: 30px;
    display: none;
}

.result h3 {
    font-size: 1.8rem;
    color: #000000;
    margin-bottom: 15px;
    font-weight: 700;
}

.result p {
    font-size: 1.2rem;
    color: #000000;
    margin: 10px 0;
    font-weight: 600;
}

.annual-cost {
    font-size: 1.4rem !important;
    font-weight: 700;
    color: #000000 !important;
}

.disclaimer {
    font-size: 0.9rem !important;
    color: #ffffff !important;
    font-style: italic;
    margin-top: 15px;
    text-align: center;
}

/* Representatives Section */
.representatives-section {
    background: linear-gradient(135deg, #2d1b1b, #000000);
    padding: 80px 0;
}

.representatives-section h2 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 3.5rem;
    color: #ffd700;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    letter-spacing: 2px;
}

.representatives-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.representative-card {
    background: linear-gradient(45deg, #1a1a1a, #2d1b1b);
    border: 2px solid #ffd700;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.representative-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
}

.rep-photo-wrapper {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 10px;
    overflow: hidden;
    border: 3px solid #ffd700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.representative-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.representative-card h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.rep-name {
    font-size: 1.4rem;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 10px;
}

.rep-state {
    font-size: 1.1rem;
    color: #cccccc;
    font-style: italic;
}

/* Research Section */
.research-section {
    background: linear-gradient(135deg, #000000, #2d1b1b);
    padding: 80px 0;
}

.research-section h2 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 3.5rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    letter-spacing: 2px;
}

.research-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.research-card {
    background: linear-gradient(45deg, #1a1a1a, #2d1b1b);
    border: 2px solid #ffd700;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.research-card h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 15px;
}

.research-card p {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.6;
}

.source {
    font-size: 0.9rem;
    color: #cccccc;
    font-style: italic;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #2d1b1b, #000000);
    padding: 80px 0;
}

.testimonials-section h2 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 3.5rem;
    color: #ffd700;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    letter-spacing: 2px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background: linear-gradient(45deg, #1a1a1a, #2d1b1b);
    border: 2px solid #ffd700;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.placeholder-photo {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #000000;
    flex-shrink: 0;
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffd700;
    flex-shrink: 0;
}

.testimonial-content p {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 10px;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.9rem;
    color: #ffd700;
    font-weight: bold;
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, #000000, #2d1b1b);
    padding: 100px 0;
    text-align: center;
    border-top: 3px solid #ffd700;
    border-bottom: 3px solid #ffd700;
}

.cta-section h2 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 4rem;
    color: #ffffff;
    margin-bottom: 30px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
    letter-spacing: 2px;
}

.cta-text {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.donate-btn,
.action-btn {
    display: inline-block;
    padding: 25px 50px;
    font-size: 1.6rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 15px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.donate-btn {
    background: linear-gradient(45deg, #ff0000, #ffd700);
    color: #000000;
    border: 3px solid #ffffff;
}

.action-btn {
    background: linear-gradient(45deg, #ffd700, #ffffff);
    color: #000000;
    border: 3px solid #ff0000;
}

.donate-btn:hover,
.action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.urgency-text {
    font-size: 1.2rem;
    color: #ffd700;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
.scary-footer {
    background: #000000;
    padding: 30px 0;
    text-align: center;
    border-top: 3px solid #ffd700;
}

.scary-footer p {
    color: #ffffff;
    font-size: 0.9rem;
}

/* Responsive Design - Complete Rebuild */


/* Large Desktop (1701px+) - Floating Layout */
@media (min-width: 1701px) {
    .main-header {
        min-height: 800px;
        padding: 60px 40px 100px;
    }
    
    .rep-photo-item {
        width: 320px;
        height: 400px;
    }
    
    .rep-1 {
        left: 2%;
        top: 10%;
    }
    
    .rep-2 {
        right: 3%;
        top: 6%;
    }
    
    .rep-3 {
        left: 4%;
        bottom: 10%;
    }
    
    .rep-4 {
        right: 2%;
        bottom: 6%;
    }
    
    .main-headline {
        font-size: 4rem;
    }
}

/* Desktop and Medium Desktop (768px - 1700px) - Row Layout */
@media (max-width: 1700px) and (min-width: 768px) {
    .main-header {
        min-height: auto;
        padding: 30px 15px 40px;
        flex-direction: column;
    }
    
    .representatives-floating {
        position: relative;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 15px;
        width: 100%;
        margin-bottom: 25px;
        order: 1;
    }
    
    .rep-photo-item {
        position: relative;
        width: 180px;
        height: 225px;
        animation: none !important;
        transform: none !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        flex-shrink: 0;
    }
    
    .billboard-content {
        padding: 30px 15px;
        order: 2;
        margin-top: 70px;
    }
    
    .main-headline {
        font-size: 2.8rem;
        line-height: 1.1;
    }
    
    .main-message {
        font-size: 1.5rem;
    }
    
    .rep-district {
        bottom: -50px;
        min-width: 150px;
        padding: 7px 10px;
    }
    
    .rep-name-badge {
        font-size: 0.85rem;
    }
    
    .rep-district-code {
        font-size: 1rem;
    }
    
    .representatives-section h2 {
        font-size: 3rem;
    }
    
    .representatives-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .countdown-section h2,
    .calculator-section h2,
    .research-section h2,
    .testimonials-section h2 {
        font-size: 3rem;
    }
    
    .cta-section h2 {
        font-size: 3.5rem;
    }
}

/* Mobile Large (576px - 767px) */
@media (max-width: 767px) and (min-width: 576px) {
    .main-header {
        min-height: auto;
        padding: 20px 10px 30px;
        flex-direction: column;
    }
    
    .representatives-floating {
        position: relative;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 10px;
        width: 100%;
        margin-bottom: 20px;
        order: 1;
    }
    
    .rep-photo-item {
        position: relative;
        width: 120px;
        height: 150px;
        animation: none !important;
        transform: none !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        flex-shrink: 0;
    }
    
    .billboard-content {
        padding: 25px 15px;
        order: 2;
        margin-top: 60px;
    }
    
    .main-headline {
        font-size: 2.2rem;
        line-height: 1.1;
    }
    
    .main-message {
        font-size: 1.3rem;
    }
    
    .rep-district {
        bottom: -45px;
        min-width: 110px;
        padding: 6px 8px;
    }
    
    .rep-name-badge {
        font-size: 0.7rem;
    }
    
    .rep-district-code {
        font-size: 0.85rem;
    }
    
    .representatives-section h2 {
        font-size: 2.5rem;
    }
    
    .representatives-list {
        grid-template-columns: 1fr;
    }
    
    .countdown-section h2,
    .calculator-section h2,
    .research-section h2,
    .testimonials-section h2 {
        font-size: 2.5rem;
    }
    
    .cta-section h2 {
        font-size: 3rem;
    }
    
    .countdown-clock {
        gap: 12px;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 12px 8px;
    }
    
    .countdown-number {
        font-size: 1.8rem;
    }
    
    .countdown-label {
        font-size: 0.9rem;
    }
    
    .calculator {
        padding: 25px;
    }
    
    #calculate-btn {
        padding: 18px 35px;
        font-size: 1.3rem;
    }
    
    .testimonial {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .donate-btn,
    .action-btn {
        width: 100%;
        max-width: 280px;
        padding: 18px 35px;
        font-size: 1.3rem;
    }
}

/* Mobile Small (up to 575px) */
@media (max-width: 575px) {
    .container {
        padding: 0 15px;
    }
    
    .main-header {
        min-height: auto;
        padding: 15px 5px 60px;
        flex-direction: column;
        overflow: visible;
    }
    
    .representatives-floating {
        position: relative;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 8px;
        width: 100%;
        margin-bottom: 60px;
        padding-bottom: 10px;
        order: 1;
        flex-wrap: wrap;
        max-width: 100%;
        overflow-x: auto;
        overflow-y: visible;
        padding: 0 5px;
    }
    
    .rep-photo-item {
        position: relative;
        width: 90px;
        height: auto;
        min-height: 115px;
        animation: none !important;
        transform: none !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        flex-shrink: 0;
        margin-bottom: 50px;
    }
    
    .billboard-content {
        padding: 20px 12px;
        order: 2;
        margin-top: 0;
    }
    
    .main-headline {
        font-size: 1.8rem;
        line-height: 1.1;
    }
    
    .main-message {
        font-size: 1.1rem;
    }
    
    .rep-district {
        bottom: -45px;
        min-width: 90px;
        max-width: 90px;
        padding: 6px 4px;
        white-space: normal;
        word-wrap: break-word;
    }
    
    .rep-name-badge {
        font-size: 0.65rem;
        line-height: 1.2;
        display: block;
    }
    
    .rep-district-code {
        font-size: 0.8rem;
        display: block;
        margin-top: 2px;
    }
    
    .rep-photo-wrapper {
        width: 120px;
        height: 120px;
    }
    
    .representatives-section h2 {
        font-size: 2rem;
    }
    
    .representatives-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .representative-card {
        padding: 20px;
    }
    
    .representative-card h3 {
        font-size: 1.6rem;
    }
    
    .rep-name {
        font-size: 1.2rem;
    }
    
    .source {
        font-size: 0.8rem;
    }
    
    .countdown-section h2,
    .calculator-section h2,
    .research-section h2,
    .testimonials-section h2 {
        font-size: 2rem;
    }
    
    .cta-section h2 {
        font-size: 2.5rem;
    }
    
    .countdown-clock {
        gap: 8px;
        flex-wrap: wrap;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 10px 6px;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
    
    .countdown-label {
        font-size: 0.8rem;
    }
    
    .countdown-text {
        font-size: 1.4rem;
    }
    
    .calculator {
        padding: 20px;
    }
    
    .input-group label {
        font-size: 1rem;
    }
    
    .input-group input,
    .input-group select {
        padding: 12px;
        font-size: 1rem;
    }
    
    #calculate-btn {
        padding: 15px 30px;
        font-size: 1.2rem;
    }
    
    .result {
        padding: 20px;
    }
    
    .result h3 {
        font-size: 1.5rem;
    }
    
    .result p {
        font-size: 1rem;
    }
    
    .research-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .research-card,
    .testimonial {
        padding: 20px;
    }
    
    .testimonial {
        flex-direction: column;
        text-align: center;
    }
    
    .placeholder-photo {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .donate-btn,
    .action-btn {
        width: 100%;
        max-width: 250px;
        padding: 15px 30px;
        font-size: 1.2rem;
    }
    
    .cta-text {
        font-size: 1.2rem;
    }
    
    .urgency-text {
        font-size: 1rem;
    }
}

