/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #C8102E;
    --primary-blue: #002868;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --dark-gray: #333333;
    --accent-gold: #FFD700;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-blue);
    text-transform: uppercase;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-blue));
}

/* Header and Navigation */
.main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
}

.navbar {
    padding: 1.2rem 0;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.nav-brand {
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
    padding: 0.5rem 0;
}

.logo-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-blue);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.logo-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-red);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 0.2rem;
}

.logo-district {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--dark-gray);
    letter-spacing: 0.5px;
    margin-top: 0.3rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.8rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 600;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.95rem;
    white-space: nowrap;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--primary-red);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a:hover {
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.nav-menu a:hover::after {
    width: 100%;
}

.btn-donate {
    background: var(--primary-red);
    color: var(--white) !important;
    padding: 0.7rem 1.8rem;
    border-radius: 4px;
    transition: background 0.3s;
    font-weight: 600;
    display: inline-block;
}

.btn-donate:hover {
    background: #A00E27;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: 700px;
    background: url('https://web.archive.org/web/20220927191912/https://stevenelliottforcongress.com/wp-content/uploads/2022/04/hero.png') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 40, 104, 0.3) 0%, rgba(200, 16, 46, 0.2) 100%);
    z-index: 1;
}

.hero .container {
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-main-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    min-height: 600px;
}

.hero-text-content {
    max-width: 500px;
    text-align: right;
    padding: 30px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    margin-left: auto;
}

.hero-headline {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    letter-spacing: 1px;
}

.hero-subheadline {
    font-size: 1.1rem;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    line-height: 1.5;
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
}


/* Buttons */
.btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red) 0%, #A00D24 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(200, 16, 46, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #A00D24 0%, var(--primary-red) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(200, 16, 46, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Campaign Introduction Section */
.campaign-intro {
    padding: 5rem 0;
    background: var(--white);
}

.intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-title {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    font-weight: 800;
}

.intro-mission {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 3rem;
}

.intro-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--white);
}

.highlight-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.highlight-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.highlight-image:hover img {
    transform: scale(1.05);
}

/* News Section */
.news {
    padding: 5rem 0;
    background: var(--light-gray);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.news-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.news-date {
    color: var(--primary-red);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.news-item h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    line-height: 1.4;
}

.news-item p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.read-more {
    color: var(--primary-red);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--primary-blue);
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-story {
    margin-bottom: 3rem;
}

.about-story h3 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.about-story p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}

.social-connect {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.social-connect h4 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.social-links-grid {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--white);
    color: var(--primary-blue);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* Events Section */
.events {
    padding: 5rem 0;
    background: var(--light-gray);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.event-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.event-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.05);
}

.event-details {
    padding: 2rem;
}

.event-date {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.event-details h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.event-location {
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 1rem;
}

.event-details p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Connect Section */
.connect-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    color: var(--white);
    text-align: center;
}

.connect-section .section-title {
    color: var(--white);
    margin-bottom: 1rem;
}

.connect-subtitle {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.connect-section .newsletter-content {
    margin-bottom: 3rem;
}

.connect-section .newsletter-form .form-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

.connect-section .newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.connect-section .newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.social-connect {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    min-width: 180px;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

.social-twitter:hover {
    border-color: #1DA1F2;
    color: #1DA1F2;
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
}

.social-facebook:hover {
    border-color: #1877F2;
    color: #1877F2;
    background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
}

.social-instagram:hover {
    border-color: #E4405F;
    color: #E4405F;
    background: linear-gradient(135deg, #ffffff 0%, #fef0f4 100%);
}

.social-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.social-text {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .social-connect {
        flex-direction: column;
        align-items: center;
    }
    
    .social-btn {
        min-width: 250px;
    }
}

/* Signature Styles */
.signature {
    text-align: center;
    margin: 2rem 0 2.5rem;
    padding: 1.5rem;
    background: rgba(0, 40, 104, 0.02);
    border-left: 3px solid var(--primary-red);
    border-radius: 8px;
}

.signature-text {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    font-style: italic;
}

.signature-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.signature-title {
    font-size: 1rem;
    color: var(--primary-red);
    font-weight: 600;
    letter-spacing: 1px;
}

/* Campaign Collage Styles */
.campaign-collage {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, #ffffff 100%);
    overflow: hidden;
}

.collage-container {
    position: relative;
    height: 550px;
    margin: 2rem 0;
}

.photo-item {
    position: absolute;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.3s ease;
}

.photo-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    z-index: 10;
}

.photo-item:hover img {
    transform: scale(1.1);
}

/* Individual photo positioning and sizes */
.photo-1 {
    top: 50px;
    left: 10%;
    width: 280px;
    height: 200px;
    transform: rotate(-5deg);
    z-index: 1;
}

.photo-2 {
    top: 20px;
    right: 15%;
    width: 220px;
    height: 180px;
    transform: rotate(8deg);
    z-index: 2;
}

.photo-3 {
    top: 180px;
    left: 25%;
    width: 240px;
    height: 200px;
    transform: rotate(3deg);
    z-index: 3;
}

.photo-4 {
    top: 120px;
    right: 5%;
    width: 200px;
    height: 170px;
    transform: rotate(-8deg);
    z-index: 2;
}

.photo-5 {
    top: 280px;
    left: 5%;
    width: 190px;
    height: 160px;
    transform: rotate(12deg);
    z-index: 1;
}

.photo-6 {
    top: 260px;
    right: 20%;
    width: 250px;
    height: 190px;
    transform: rotate(-3deg);
    z-index: 2;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .collage-container {
        height: 400px;
    }
    
    .photo-item {
        transform: rotate(0deg) !important;
    }
    
    .photo-1 {
        top: 20px;
        left: 5%;
        width: 140px;
        height: 100px;
    }
    
    .photo-2 {
        top: 10px;
        right: 5%;
        width: 120px;
        height: 90px;
    }
    
    .photo-3 {
        top: 130px;
        left: 20%;
        width: 130px;
        height: 100px;
    }
    
    .photo-4 {
        top: 90px;
        right: 10%;
        width: 110px;
        height: 85px;
    }
    
    .photo-5 {
        top: 250px;
        left: 5%;
        width: 100px;
        height: 80px;
    }
    
    .photo-6 {
        top: 240px;
        right: 15%;
        width: 130px;
        height: 100px;
    }
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-item h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-item p {
    color: var(--dark-gray);
    line-height: 1.6;
}

.contact-form {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
}

.contact-form h3 {
    color: var(--primary-blue);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 1rem;
    background: var(--white);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.social-connect {
    margin: 1.5rem 0;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 4px;
    text-align: center;
}

.social-connect a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    margin: 0 0.5rem;
    transition: color 0.3s;
}

.social-connect a:hover {
    color: var(--primary-red);
    text-decoration: underline;
}

.bio-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.highlight-item {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-red);
}

.highlight-item h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.quote {
    background: linear-gradient(135deg, var(--primary-blue), #001845);
    color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    font-size: 1.2rem;
    font-style: italic;
    position: relative;
}

.quote::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -10px;
    left: 10px;
    opacity: 0.3;
}

.quote cite {
    display: block;
    text-align: right;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: var(--accent-gold);
}

/* Biography Section */
.biography {
    padding: 5rem 0;
    background: var(--light-gray);
}

.biography-content {
    max-width: 900px;
    margin: 0 auto;
}

.bio-section {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bio-section:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.bio-section h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--primary-red);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.bio-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
}

/* Campaign Message Section */
.campaign-message {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #001845 100%);
    color: var(--white);
}

.campaign-message h2 {
    font-size: 3rem;
    text-align: center;
    color: var(--white);
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.message-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.message-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.message-item h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.message-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.core-message {
    text-align: center;
    margin-top: 3rem;
}

.core-message blockquote {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--accent-gold);
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
}

.core-message blockquote::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -10px;
    left: 10px;
    opacity: 0.3;
    color: var(--white);
}

/* Issues Section */
.issues {
    padding: 5rem 0;
    background: var(--light-gray);
}

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

.issue-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    text-align: center;
}

.issue-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.issue-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.issue-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.issue-card p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.issue-details {
    list-style: none;
    padding: 0;
}

.issue-details li {
    color: var(--dark-gray);
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 1.5rem;
}

.issue-details li:last-child {
    border-bottom: none;
}

.issue-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.5rem;
    color: var(--primary-red);
    font-weight: bold;
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: var(--white);
}

.cta-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--dark-gray);
    margin-bottom: 3rem;
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.cta-card {
    background: linear-gradient(135deg, var(--primary-blue), #001845);
    color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.cta-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.cta-card p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-card .btn-primary {
    background: var(--white);
    color: var(--primary-blue);
}

.cta-card .btn-primary:hover {
    background: var(--light-gray);
}

/* Donation Section */
.donate {
    padding: 1.5rem 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-red) 100%);
    position: relative;
    overflow: hidden;
    color: var(--white);
    text-align: center;
}

.donate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="0.5" fill="%23C8102E" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.donate .container {
    position: relative;
    z-index: 1;
}

.donation-urgency {
    margin-bottom: 0.5rem;
}

.urgency-badge {
    background: var(--primary-red);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    animation: pulse-urgent 2s infinite;
    display: inline-block;
}

@keyframes pulse-urgent {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.donate .section-title {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.donate-subtitle {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 0;
    opacity: 0.9;
}

.donation-progress {
    max-width: 500px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 1.2rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.progress-label {
    font-weight: 600;
    color: var(--white);
    opacity: 0.9;
}

.progress-amount {
    font-weight: 700;
    color: var(--accent-gold);
}

.progress-bar {
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-gold), #ffffff);
    border-radius: 6px;
    transition: width 0.5s ease;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.5);
}

.donation-amounts {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.amount-btn {
    padding: 0.8rem 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    min-width: 70px;
    backdrop-filter: blur(10px);
}

.amount-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.amount-btn:hover::before {
    left: 100%;
}

.amount-btn:hover,
.amount-btn.active {
    background: var(--accent-gold);
    color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    border-color: var(--accent-gold);
}

.amount-popular {
    border-color: var(--accent-gold);
    background: var(--accent-gold);
    color: var(--primary-blue);
    font-weight: 700;
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-red);
    color: var(--white);
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-weight: 600;
}

.amount-max {
    border-color: var(--primary-red);
    position: relative;
}

.max-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: var(--white);
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-weight: 600;
}

.recommended-flash {
    animation: flash-recommend 0.5s ease-in-out 3;
}

@keyframes flash-recommend {
    0%, 100% { box-shadow: 0 0 0 rgba(255, 215, 0, 0); }
    50% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.8); }
}

.donation-form {
    text-align: center;
    margin: 2rem 0;
}

.btn-donate-large {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 2rem auto;
    padding: 1.5rem 4rem;
    background: linear-gradient(45deg, var(--primary-red), #E91E63);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.4rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(200, 16, 46, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-donate-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s;
}

.btn-donate-large:hover::before {
    left: 100%;
}

.btn-donate-large:hover {
    background: linear-gradient(45deg, #A00E27, #C2185B);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(200, 16, 46, 0.4);
}

.simple-donate-cta {
    text-align: center;
    margin: 2rem 0;
}

.donate-icon {
    font-size: 1.2rem;
}

.highlight-pulse {
    animation: highlight-pulse 1s ease-in-out;
}

@keyframes highlight-pulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(200, 16, 46, 0.3); }
    50% { box-shadow: 0 4px 30px rgba(200, 16, 46, 0.8), 0 0 0 4px rgba(255, 215, 0, 0.3); }
}

.donation-benefits {
    margin: 1.5rem 0 0;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.donation-benefits h3 {
    text-align: center;
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.impact-item {
    text-align: center;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 8px;
    border-left: 4px solid var(--primary-red);
}

.impact-item strong {
    color: var(--primary-red);
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.donation-security {
    text-align: center;
    margin: 2rem 0;
    color: #666;
    font-weight: 600;
}

.disclaimer {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-top: 2rem;
    background: rgba(255, 255, 255, 0.8);
    padding: 1rem;
    border-radius: 8px;
}

/* Contact Information Section */
.contact-info {
    padding: 5rem 0;
    background: var(--white);
}

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

.contact-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid var(--primary-red);
}

.contact-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-card p {
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.social-links-large {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.social-links-large a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    background: var(--white);
    box-shadow: var(--shadow);
    min-width: 150px;
}

.social-links-large a:hover {
    color: var(--white);
    background: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Photo Collage */
.photo-collage {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 150px;
    gap: 15px;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 40, 104, 0.05) 0%, rgba(200, 16, 46, 0.05) 100%);
    border-radius: 12px;
}

.collage-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.collage-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.collage-item.medium {
    grid-column: span 2;
    grid-row: span 1;
}

.collage-item.small {
    grid-column: span 1;
    grid-row: span 1;
}

.collage-item:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.collage-item:nth-child(2) {
    grid-column: 3 / 5;
    grid-row: 1 / 2;
}

.collage-item:nth-child(3) {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

.collage-item:nth-child(4) {
    grid-column: 4 / 5;
    grid-row: 2 / 4;
}

.collage-item:nth-child(5) {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
}

.collage-item:nth-child(6) {
    grid-column: 2 / 4;
    grid-row: 3 / 5;
}

.collage-item:nth-child(7) {
    grid-column: 1 / 2;
    grid-row: 4 / 5;
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.collage-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.collage-item:hover img {
    transform: scale(1.1);
}

.collage-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 40, 104, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.collage-item:hover::after {
    opacity: 1;
}

@media (max-width: 768px) {
    .photo-collage {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 120px;
        gap: 10px;
        padding: 1rem;
    }
    
    .collage-item:nth-child(1) {
        grid-column: 1 / 2;
        grid-row: 1 / 3;
    }
    
    .collage-item:nth-child(2) {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }
    
    .collage-item:nth-child(3) {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }
    
    .collage-item:nth-child(4) {
        grid-column: 1 / 3;
        grid-row: 3 / 4;
    }
    
    .collage-item:nth-child(5) {
        grid-column: 1 / 2;
        grid-row: 4 / 5;
    }
    
    .collage-item:nth-child(6) {
        grid-column: 2 / 3;
        grid-row: 4 / 6;
    }
    
    .collage-item:nth-child(7) {
        grid-column: 1 / 2;
        grid-row: 5 / 6;
    }
}

@media (max-width: 480px) {
    .photo-collage {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }
    
    .collage-item,
    .collage-item.large,
    .collage-item.medium,
    .collage-item.small {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .collage-item:nth-child(n) {
        grid-column: 1;
        grid-row: auto;
    }
}

/* Sticky Donation Button */
.sticky-donate {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none;
}

.sticky-donate-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-red);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(200, 16, 46, 0.4);
    transition: all 0.3s;
    animation: float 3s ease-in-out infinite;
}

.sticky-donate-btn:hover {
    background: #A00E27;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(200, 16, 46, 0.6);
}

.sticky-donate-icon {
    font-size: 1.2rem;
}

.sticky-donate-text {
    font-size: 1rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 768px) {
    .sticky-donate {
        bottom: 80px;
        right: 15px;
    }
    
    .sticky-donate-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .sticky-donate-text {
        display: none;
    }
    
    .sticky-donate-icon {
        font-size: 1.5rem;
    }
}

/* Footer */
.main-footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s;
    line-height: 2;
}

.footer-section a:hover {
    color: var(--accent-gold);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 2rem;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    position: relative;
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    font-weight: bold;
    color: var(--dark-gray);
    cursor: pointer;
}

.close:hover {
    color: var(--primary-red);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        min-height: 500px;
    }
    
    .hero-main-content {
        justify-content: center;
        padding-right: 2rem;
        padding-left: 2rem;
    }
    
    .hero-text-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-headline {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        min-height: 400px;
    }
    
    .hero-main-content {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .issues-grid,
    .cta-grid {
        grid-template-columns: 1fr;
    }
    
    .donation-amounts {
        flex-direction: column;
    }
    
    .amount-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 350px;
    }
    
    .hero-main-content {
        padding-right: 1rem;
        padding-left: 1rem;
    }
    
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-subheadline {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn {
        width: 100%;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.about-content,
.issue-card,
.cta-card {
    animation: fadeIn 0.8s ease-out;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit {
    background: var(--primary-red);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.form-submit:hover {
    background: #A00E27;
    transform: translateY(-2px);
}

/* Issues Page Styles */
.issues-hero {
    background: linear-gradient(135deg, #C8102E 0%, #002868 100%);
    color: white;
    padding: 120px 0 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.issues-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.3;
}

.issues-hero .container {
    position: relative;
    z-index: 2;
}

.issues-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.issues-hero .hero-subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
    opacity: 0.95;
}

.michigan-issues {
    padding: 60px 0;
    background: var(--white);
}

.michigan-issues-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-red) 100%);
    color: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.michigan-issues-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="michigan-stars" x="0" y="0" width="15" height="15" patternUnits="userSpaceOnUse"><circle cx="7.5" cy="7.5" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23michigan-stars)"/></svg>');
    opacity: 0.3;
    animation: rotate 30s linear infinite;
}

.michigan-issues-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.michigan-issues-card p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.michigan-issues-card .btn {
    background: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--white);
    position: relative;
    z-index: 2;
}

.michigan-issues-card .btn:hover {
    background: var(--accent-gold);
    color: var(--primary-blue);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.issues-content {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.issues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
    margin-bottom: 60px;
}

.issue-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 6px solid #C8102E;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.issue-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #C8102E;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.issue-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(200, 16, 46, 0.05) 0%, rgba(0, 40, 104, 0.05) 100%);
    border-radius: 0 0 0 100px;
    transition: all 0.3s ease;
}

.issue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-left-color: var(--accent-gold);
}

.issue-card:hover::before {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(200, 16, 46, 0.08) 0%, rgba(0, 40, 104, 0.08) 100%);
}

.issue-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(200, 16, 46, 0.1);
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    z-index: 1;
    transition: all 0.3s ease;
}

.issue-card:hover .issue-number {
    color: rgba(200, 16, 46, 0.15);
    transform: scale(1.1);
}

.issue-header {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.issue-tagline {
    font-size: 0.95rem;
    color: var(--primary-red);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    margin-top: 0.5rem;
}

.issue-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0;
    line-height: 1.3;
}

.issue-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

.issue-details {
    position: relative;
    z-index: 2;
}

.issue-details h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.issue-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.issue-points li {
    padding: 0.75rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.issue-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1rem;
    width: 8px;
    height: 8px;
    background: var(--primary-red);
    border-radius: 50%;
    transform: translateY(-50%);
}

.issue-points li:hover {
    color: var(--primary-blue);
    padding-left: 2rem;
}

.issue-points li:hover::before {
    background: var(--accent-gold);
    transform: translateY(-50%) scale(1.2);
}

.issues-cta {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, #002868 0%, #C8102E 100%);
    border-radius: 20px;
    color: white;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.issues-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stripes" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse"><rect width="10" height="10" fill="none"/><path d="M0,10 L10,0" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23stripes)"/></svg>');
    opacity: 0.3;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.issues-cta .container {
    position: relative;
    z-index: 2;
}

.issues-cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.issues-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 200px;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
    background: #FFD700;
    color: #002868;
    border-color: #FFD700;
}

.cta-buttons .btn-primary:hover {
    background: transparent;
    color: #FFD700;
    border-color: #FFD700;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: #002868;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .issues-hero h1 {
        font-size: 2.5rem;
    }
    
    .issues-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .issues-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .issue-card {
        padding: 2rem;
    }
    
    .issue-title {
        font-size: 1.4rem;
    }
    
    .issue-description {
        font-size: 1rem;
    }
    
    .issues-cta h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .issues-hero {
        padding: 100px 0 60px 0;
    }
    
    .issues-hero h1 {
        font-size: 2rem;
    }
    
    .issues-content {
        padding: 60px 0;
    }
    
    .issue-card {
        padding: 1.5rem;
    }
    
    .issue-icon {
        font-size: 2.5rem;
    }
    
    .issue-points li {
        padding: 0.6rem 0;
        padding-left: 1.2rem;
    }
}

/* Header Image Banner */
.header-banner {
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
    line-height: 0;
}

.banner-image img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 200px;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {
    .banner-image img {
        max-height: 120px;
    }
}

@media (max-width: 480px) {
    .banner-image img {
        max-height: 80px;
    }
}

/* About Link Section */
.about-link-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
}

.about-link-image {
    margin: 2rem 0;
    text-align: center;
}

.about-link-image img {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.about-link-image img:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.about-cta {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.about-cta h2 {
    color: #002868;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.about-cta p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.about-cta .btn {
    background: #C8102E;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.about-cta .btn:hover {
    background: #a00d26;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 16, 46, 0.3);
}

@media (max-width: 768px) {
    .about-cta h2 {
        font-size: 1.8rem;
    }
    
    .about-cta p {
        font-size: 1rem;
    }
    
    .about-link-section {
        padding: 40px 0;
    }
    
    .about-link-image img {
        max-width: 100%;
    }
}

/* Top Statement Section */
.top-statement {
    background: #f8f9fa;
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
}

.statement-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    text-align: right;
}

.statement-content h2 {
    color: #C8102E;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.statement-content p {
    color: #002868;
    font-size: 1rem;
    margin: 0;
    max-width: 500px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .statement-content {
        text-align: center;
        justify-content: center;
    }
    
    .statement-content h2 {
        font-size: 1.3rem;
    }
    
    .statement-content p {
        font-size: 0.9rem;
    }
}

/* Story Pages Styles */
.story-hero {
    background: linear-gradient(135deg, #002868 0%, #C8102E 100%);
    color: white;
    padding: 120px 0 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.military-hero {
    background: linear-gradient(135deg, #002868 0%, #1a3a8a 50%, #C8102E 100%);
}

.business-hero {
    background: linear-gradient(135deg, #C8102E 0%, #e6142e 50%, #002868 100%);
}

.patriot-hero {
    background: linear-gradient(135deg, #002868 0%, #C8102E 50%, #FFD700 100%);
}

.story-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.story-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 60px;
}

.story-main {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.story-section {
    margin-bottom: 3rem;
}

.story-section:last-child {
    margin-bottom: 0;
}

.story-section h2 {
    font-size: 2rem;
    color: #002868;
    margin-bottom: 1rem;
    border-bottom: 3px solid #FFD700;
    padding-bottom: 0.5rem;
}

.story-lead {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.story-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #555;
}

/* Story Sidebar */
.story-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.story-nav {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.story-nav h3 {
    font-size: 1.3rem;
    color: #002868;
    margin-bottom: 1rem;
}

.story-nav ul {
    list-style: none;
    padding: 0;
}

.story-nav li {
    margin-bottom: 0.5rem;
}

.story-nav a {
    display: block;
    padding: 0.75rem 1rem;
    color: #666;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.story-nav a:hover,
.story-nav a.active {
    background: linear-gradient(135deg, #C8102E 0%, #002868 100%);
    color: white;
}

.story-cta,
.military-stats,
.business-stats,
.campaign-info {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.story-cta h4,
.military-stats h4,
.business-stats h4,
.campaign-info h4 {
    color: #002868;
    margin-bottom: 1rem;
}

/* Jobs List */
.jobs-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.job-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border-left: 4px solid #C8102E;
}

.job-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.job-item h4 {
    color: #002868;
    margin-bottom: 0.5rem;
}

.job-item p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Military Details */
.military-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.detail-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border-top: 4px solid #C8102E;
}

.detail-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.detail-card h4 {
    color: #002868;
    margin-bottom: 1rem;
}

/* Values List */
.values-list {
    margin: 2rem 0;
}

.value-point {
    background: #f8f9fa;
    padding: 1rem;
    margin-bottom: 1rem;
    border-left: 4px solid #FFD700;
    border-radius: 0 8px 8px 0;
}

/* Business Timeline */
.business-timeline {
    margin: 2rem 0;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-year {
    background: #C8102E;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: bold;
    white-space: nowrap;
    align-self: flex-start;
}

.timeline-content h4 {
    color: #002868;
    margin-bottom: 0.5rem;
}

/* Business Highlights */
.business-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.highlight-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border-bottom: 4px solid #FFD700;
}

.highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.highlight-card h4 {
    color: #002868;
    margin-bottom: 0.5rem;
}

/* Challenges Grid */
.challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.challenge-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #C8102E;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.challenge-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.challenge-card h4 {
    color: #002868;
    margin-bottom: 0.5rem;
}

.challenge-card p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Decision Factors */
.decision-factors {
    margin: 2rem 0;
}

.factor-item {
    background: #f8f9fa;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 12px;
    border-left: 4px solid #FFD700;
}

.factor-item h4 {
    color: #002868;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.factor-item p {
    margin: 0;
    font-size: 0.95rem;
    color: #666;
}

/* Principles List */
.principles-list {
    margin: 2rem 0;
}

.principle-item {
    background: white;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border-left: 4px solid #C8102E;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Lessons Grid */
.lessons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.lesson-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border-top: 4px solid #FFD700;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Stats */
.stat-item {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-item strong {
    color: #C8102E;
    font-size: 1.1rem;
    font-weight: 700;
}

.stat-item span {
    color: #666;
    font-size: 0.9rem;
}

/* Story Navigation */
.story-navigation {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.nav-item {
    flex: 1;
}

.nav-item a {
    display: block;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    color: #002868;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-item a:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.nav-item.prev a {
    text-align: left;
}

.nav-item.next a {
    text-align: right;
}

.nav-item span {
    display: block;
    font-size: 0.9rem;
    color: #666;
}

.nav-item strong {
    display: block;
    font-size: 1.1rem;
    margin-top: 0.25rem;
}

.nav-item.disabled {
    opacity: 0.5;
}

.nav-item.disabled span {
    color: #999;
}

/* About Overview Styles */
.about-overview {
    padding: 80px 0;
    background: white;
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.about-summary h2 {
    font-size: 2.5rem;
    color: #002868;
    margin-bottom: 1.5rem;
}

.about-summary .lead {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.story-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.section-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-top: 4px solid #C8102E;
    transition: all 0.3s ease;
}

.section-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.section-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-card h3 {
    color: #002868;
    margin-bottom: 1rem;
}

.section-card p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.btn-outline {
    background: transparent;
    color: #C8102E;
    border: 2px solid #C8102E;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #C8102E;
    color: white;
}

.values-preview {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem;
    border-radius: 16px;
    margin-bottom: 3rem;
}

.values-preview h2 {
    text-align: center;
    color: #002868;
    margin-bottom: 2rem;
}

.values-preview .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.value-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.value-item span {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.value-item h4 {
    color: #002868;
    font-size: 1rem;
    margin: 0;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #002868 0%, #C8102E 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    border-radius: 16px;
    margin-top: 3rem;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Community Impact */
.community-impact {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.community-impact h4 {
    color: #002868;
    margin-bottom: 1rem;
}

.community-impact ul {
    list-style: none;
    padding: 0;
}

.community-impact li {
    padding: 0.5rem 0;
    border-left: 3px solid #FFD700;
    padding-left: 1rem;
    margin-bottom: 0.5rem;
    background: white;
    border-radius: 0 8px 8px 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .story-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-main {
        padding: 2rem;
    }
    
    .about-intro {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .story-sections {
        grid-template-columns: 1fr;
    }
    
    .jobs-list,
    .military-details,
    .business-highlights,
    .challenges-grid,
    .lessons-grid {
        grid-template-columns: 1fr;
    }
    
    .story-navigation {
        flex-direction: column;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .action-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .story-hero h1 {
        font-size: 2.5rem;
    }
    
    .story-section h2 {
        font-size: 1.5rem;
    }
    
    .story-main {
        padding: 1.5rem;
    }
    
    .story-nav,
    .story-cta {
        padding: 1.5rem;
    }
    
    .final-cta {
        padding: 3rem 0;
    }
    
    .final-cta h2 {
        font-size: 2rem;
    }
}

/* Professional About Page Styles */
.about-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-red) 100%);
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.3;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    text-align: left;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.95;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    border: 4px solid var(--accent-gold);
}

.hero-description-below {
    text-align: center;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-description-below p {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.95;
}

.biography-content {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
}

.bio-section {
    margin-bottom: 4rem;
    background: var(--white);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-left: 6px solid var(--primary-red);
    transition: all 0.3s ease;
    position: relative;
}

.bio-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(200, 16, 46, 0.1) 0%, rgba(0, 40, 104, 0.1) 100%);
    border-radius: 0 0 0 80px;
}

.bio-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.bio-section h2 {
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    font-weight: 700;
    border-bottom: 3px solid var(--accent-gold);
    padding-bottom: 1rem;
    display: inline-block;
}

.bio-content .lead {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border-left: 4px solid var(--accent-gold);
    border-radius: 0 12px 12px 0;
}

.bio-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.values-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-red) 100%);
    color: var(--white);
    padding: 4rem 3rem;
    border-radius: 16px;
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
}

.values-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stripes" x="0" y="0" width="8" height="8" patternUnits="userSpaceOnUse"><rect width="8" height="8" fill="none"/><path d="M0,8 L8,0" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23stripes)"/></svg>');
    animation: rotate 30s linear infinite;
}

.values-section .container {
    position: relative;
    z-index: 2;
}

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.value-card h3 {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-weight: 700;
}

.value-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.about-cta {
    text-align: center;
    background: var(--white);
    padding: 4rem 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-top: 6px solid var(--primary-red);
}

.about-cta h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-cta p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    min-width: 200px;
}

.cta-buttons .btn-primary {
    background: var(--primary-red);
    color: var(--white);
    border: 2px solid var(--primary-red);
}

.cta-buttons .btn-primary:hover {
    background: transparent;
    color: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(200, 16, 46, 0.3);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.cta-buttons .btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 40, 104, 0.3);
}

/* Biography Image Styles */
.bio-image-left,
.bio-image-right,
.bio-image-center {
    margin: 2rem 0;
}

.bio-image-left {
    float: left;
    margin-right: 2rem;
    margin-bottom: 1rem;
    max-width: 300px;
}

.bio-image-right {
    float: right;
    margin-left: 2rem;
    margin-bottom: 1rem;
    max-width: 300px;
}

.bio-image-center {
    text-align: center;
    max-width: 400px;
    margin: 2rem auto;
}

.bio-image-left img,
.bio-image-right img,
.bio-image-center img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.bio-image-left img:hover,
.bio-image-right img:hover,
.bio-image-center img:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

/* Value Card Images */
.value-image {
    margin-top: 1rem;
}

.value-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.value-card:hover .value-image img {
    transform: scale(1.05);
}

/* CTA Campaign Image */
.cta-campaign-image {
    margin: 2rem 0;
    text-align: center;
}

.cta-campaign-image img {
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.cta-campaign-image img:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .bio-image-left,
    .bio-image-right {
        float: none;
        max-width: 100%;
        margin: 1.5rem 0;
        text-align: center;
    }
    
    .bio-image-left,
    .bio-image-right,
    .bio-image-center {
        max-width: 100%;
    }
    
    .value-image img {
        height: 150px;
    }
    
    .cta-campaign-image img {
        max-width: 100%;
    }
}

/* About Introduction Section */
.about-intro-section {
    padding: 60px 0;
    background: var(--white);
}

.about-intro-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.about-image-section {
    text-align: center;
}

.about-image-section img {
    max-width: 100%;
    width: 300px;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    border: 4px solid var(--accent-gold);
}

.about-text-section .lead-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--dark-gray);
    font-weight: 600;
}

@media (max-width: 768px) {
    .about-intro-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .about-image-section img {
        width: 250px;
        height: 300px;
    }
    
    .about-text-section .lead-text {
        font-size: 1.1rem;
    }
}
/* ============================================
   COMPREHENSIVE MOBILE OPTIMIZATIONS
   ============================================ */

/* Mobile Navigation Improvements */
@media (max-width: 768px) {
    .main-header {
        padding: 0.5rem 0;
    }
    
    .logo-text {
        padding: 0.3rem 0;
    }
    
    .logo-name {
        font-size: 1.2rem;
    }
    
    .logo-tagline {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }
    
    .logo-district {
        font-size: 0.6rem;
        margin-top: 0.2rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 1rem;
        transition: left 0.3s ease;
        z-index: 999;
        overflow-y: auto;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        margin: 0.5rem 0;
    }
    
    .nav-menu a {
        display: block;
        width: 100%;
        padding: 1rem;
        font-size: 1.1rem;
    }
    
    .hamburger {
        display: flex;
        z-index: 1000;
    }
}

/* Tablet and Medium Screen Hero Section */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-main-content {
        justify-content: center;
        text-align: center;
    }
    
    .hero-text-content {
        text-align: center;
        margin: 0 auto;
        max-width: 600px;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-subheadline {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
}

/* Mobile Hero Section */
@media (max-width: 768px) {
    .hero {
        margin-top: 70px !important;
        min-height: 100vh !important;
        padding: 2rem 0 !important;
        display: flex !important;
        align-items: center !important;
    }
    
    .hero .container {
        padding: 0 1rem !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        position: relative !important;
        z-index: 2 !important;
        width: 100% !important;
    }
    
    .hero-main-content {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        min-height: auto !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .hero-text-content {
        text-align: center !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 2rem 1.5rem !important;
        background: rgba(255, 255, 255, 0.98) !important;
        border-radius: 16px !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .hero-headline {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1rem !important;
        color: var(--primary-blue) !important;
        font-weight: 800 !important;
    }
    
    .hero-subheadline {
        font-size: 0.9rem !important;
        margin-bottom: 1rem !important;
        color: var(--primary-red) !important;
        font-weight: 600 !important;
    }
    
    .hero-description {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
        margin-bottom: 2rem !important;
        color: var(--dark-gray) !important;
    }
    
    .hero-actions {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        width: 100% !important;
        margin: 0 !important;
    }
    
    .hero-actions .btn {
        width: 100% !important;
        padding: 1.2rem 1rem !important;
        font-size: 1rem !important;
        border-radius: 8px !important;
        font-weight: 600 !important;
        text-decoration: none !important;
        display: block !important;
        text-align: center !important;
        box-sizing: border-box !important;
    }
}

/* Mobile Issues Section */
@media (max-width: 768px) {
    .issues-section {
        padding: 3rem 1rem;
    }
    
    .issues-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
    }
    
    .issue-card {
        padding: 1.5rem;
        margin: 0;
    }
    
    .issue-number {
        font-size: 2rem;
        width: 50px;
        height: 50px;
    }
    
    .issue-title {
        font-size: 1.3rem;
    }
    
    .issue-tagline {
        font-size: 0.9rem;
    }
    
    .issue-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .issue-points {
        font-size: 0.9rem;
    }
}

/* Mobile Buttons and Forms */
@media (max-width: 768px) {
    .btn {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }
    
    .btn-large {
        padding: 1rem 1.8rem;
        font-size: 1.05rem;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 1rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .volunteer-form,
    .contact-form {
        padding: 1.5rem;
    }
}

/* Mobile Text and Content */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
}

/* Mobile Values Section */
@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-card {
        padding: 1.5rem;
    }
    
    .value-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .value-card p {
        font-size: 0.95rem;
    }
}

/* Mobile Biography Sections */
@media (max-width: 768px) {
    .bio-section {
        padding: 2rem 0;
    }
    
    .bio-section h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .bio-content {
        padding: 0;
    }
    
    .bio-content p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.2rem;
    }
    
    .bio-image-left,
    .bio-image-right,
    .bio-image-center {
        float: none;
        margin: 1.5rem auto;
        max-width: 100%;
        display: block;
    }
    
    .bio-image-left img,
    .bio-image-right img,
    .bio-image-center img {
        width: 100%;
        height: auto;
        max-width: 350px;
        margin: 0 auto;
        display: block;
    }
}

/* Mobile Donation Section */
@media (max-width: 768px) {
    .donation-section {
        padding: 3rem 1rem;
    }
    
    .donation-amounts {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .amount-btn {
        padding: 1rem;
        font-size: 1.1rem;
    }
    
    .donation-form {
        padding: 1.5rem;
    }
}

/* Mobile Michigan Issues Card */
@media (max-width: 768px) {
    .michigan-issues-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .michigan-issues-card h3 {
        font-size: 1.4rem;
    }
    
    .michigan-issues-card p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

/* Mobile Section Spacing */
@media (max-width: 768px) {
    section:not(.hero) {
        padding: 3rem 0 !important;
        margin-top: 0 !important;
        clear: both !important;
    }
    
    .campaign-intro,
    .donation-section,
    .issues-section,
    .about-section,
    .volunteer-section {
        margin-top: 0 !important;
        padding: 3rem 1rem !important;
        position: relative !important;
        z-index: 1 !important;
    }
    
    /* Ensure first section after hero has proper spacing */
    .hero + section,
    .hero + .campaign-intro {
        margin-top: 2rem !important;
        padding-top: 4rem !important;
    }
}

/* Small Mobile Devices (480px and below) */
@media (max-width: 480px) {
    .hero {
        min-height: 500px;
    }
    
    .hero-text-content {
        padding: 1.5rem 1rem;
    }
    
    .hero-headline {
        font-size: 1.75rem !important;
    }
    
    .hero-subheadline {
        font-size: 0.9rem !important;
    }
    
    .hero-description {
        font-size: 0.9rem !important;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .issue-card {
        padding: 1.25rem;
    }
    
    .issue-title {
        font-size: 1.1rem;
    }
    
    .donation-amounts {
        grid-template-columns: 1fr;
    }
    
    .photo-item {
        transform: none !important;
    }
    
    .collage-container {
        height: 400px;
    }
}

/* Ensure Touch-Friendly Interactions */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .nav-menu a,
    .amount-btn,
    .social-btn {
        min-height: 44px; /* iOS recommendation for touch targets */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hamburger {
        padding: 10px;
        margin: -10px;
    }
}
