* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

html {
  scroll-behavior: smooth;
}

.container {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
    background-color: #ffffff;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); */
}

header .container {
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-size: 1.4rem;
    font-weight:800;
    color: #162444;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.site-logo a:link,
.site-logo a:visited {
    text-decoration: none;
    color: #162444;
}

.site-logo span {
    color: #d1a54a;
}

nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: #162444;
    font-size: 0.95rem;
    font-weight: 500;
    padding-bottom: 0.4rem;
    transition: color 0.2s ease-in-out;
    position: relative;
}

.nav-link:hover {
    color: #d1a54a;
}

.nav-link.active {
    color: #162444;
    border-bottom: 2px solid #162444;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #162444;
    border-radius: 3px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        flex-direction: column;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        gap: 0;
    }

    .nav-links.active-menu {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-link {
        display: block;
        padding: 1rem 2rem;
    }

    .nav-link.active {
        border-bottom: none;
        color: #d1a54a;
        background-color: #f8f9fa;
    }
}

/* --- HLAVNÍ HERO SEKCE --- */
.main-hero {
    background-image: 
        linear-gradient(rgba(22, 36, 68, 0.85), rgba(22, 36, 68, 0.95)), 
        url("img/jevisovice.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    color: #ffffff;
}

.main-hero .container {
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-block;
    border: 1px solid rgba(209, 165, 74, 0.6);
    color: #d1a54a;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    background-color: rgba(22, 36, 68, 0.5);
}

.hero-heading {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 1.5rem 0;
    letter-spacing: -1.5px;
}

.hero-heading span {
    color: #d1a54a;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 0 3rem 0;
    line-height: 1.6;
}

.cta-button {
    background-color: #d1a54a;
    color: #162444;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #e5b95a;
    box-shadow: 0 8px 10px rgba(209, 165, 74, 0.4);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .main-hero {
        min-height: 70vh;
        padding: 4rem 1.5rem;
        background-attachment: scroll;
        background-position: center center;
    }
    
    .hero-heading {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }
    
    .hero-description {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }
}

/* hero */
.hero-banner {
    background-color: #162444;
    color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
}

.hero-banner .container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
    transition: color 0.2s ease-in-out, transform 0.2s ease;
}

.back-link:hover {
    color: #d1a54a;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin: 0 0 1rem 0;
    letter-spacing: -1px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    max-width: 700px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero-banner {
        padding: 3.5rem 1.5rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }
    
    .back-link {
        margin-bottom: 2rem;
    }
}

/* kandidati */
.candidates-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.candidates-section .container {
    max-width: 1000px;
    margin: 0 auto;
}

.candidates-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.candidate-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.candidate-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.candidate-photo {
    position: relative;
    background-color: #edf2f7;
    aspect-ratio: 1 / 1;
    /* max-height: 300px; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.candidate-number {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: #162444;
    color: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    z-index: 2;
    border: 2px solid white;
}

.photo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #a0aec0;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.candidate-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.candidate-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.candidate-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #162444;
    margin: 0 0 0.4rem 0;
}

.candidate-details {
    font-size: 0.9rem;
    color: #718096;
    margin-bottom: 1.2rem;
    font-weight: 500;
}

.candidate-bio {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

/* footer */
.site-footer {
    background-color: #0d162a;
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 2rem 0;
    font-size: 0.95rem;
}

.site-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr; 
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.footer-logo span {
    color: #d1a54a;
}

.footer-brand p {
    line-height: 1.6;
    max-width: 350px;
    margin: 0;
}

.footer-heading {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0 0 1.2rem 0;
}

.footer-nav ul, .footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-nav a, .footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-nav a:hover, .footer-contact a:hover {
    color: #d1a54a;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.copyright {
    font-size: 0.85rem;
}

.mandatory-info {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.2rem 1.5rem;
    border-radius: 6px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.mandatory-info span {
    color: rgba(255, 255, 255, 0.5) !important;
}

.mandatory-info strong {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-brand p {
        max-width: 100%;
    }
    
    .mandatory-info {
        line-height: 1.8;
    }
}

/* kandidatky */
.lists-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    display: block;
    color: #d1a54a;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    color: #162444;
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 1rem 0;
    letter-spacing: -1px;
}

.section-description {
    color: #6b7280;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.lists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.list-card {
    background-color: #ffffff;
    border: 1px solid #f3f4f6;
    border-radius: 16px;
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.list-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.icon-blue {
    background-color: rgba(22, 36, 68, 0.05);
    color: #162444;
}

.icon-gold {
    background-color: rgba(209, 165, 74, 0.1);
    color: #d1a54a;
}

.card-title {
    color: #162444;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 0.8rem 0;
}

.card-text {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 2.5rem 0;
    flex-grow: 1;
}

.card-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.card-button svg {
    transition: transform 0.3s ease;
}

.card-button:hover svg {
    transform: translateX(4px);
}

.btn-blue {
    background-color: #162444;
    color: #ffffff;
}

.btn-blue:hover {
    background-color: #2a3a60;
}

.btn-gold {
    background-color: #d1a54a;
    color: #162444;
}

.btn-gold:hover {
    background-color: #e5b95a;
}

@media (max-width: 768px) {
    .lists-section {
        padding: 4rem 0.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .list-card {
        padding: 2.5rem 1.5rem;
    }
}

/* program */
.program-section {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}


.statement-box {
    max-width: 800px;
    margin: 0 auto 4rem auto;
    background-color: #ffffff;
    padding: 3rem;
    border: 2px dashed #e5e7eb;
    border-radius: 12px;
    text-align: center;
    color: #6b7280;
    font-style: italic; 
    line-height: 1.7;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.01); 
}

.statement-box p {
    margin: 0;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.program-grid .program-card:last-child:nth-child(odd) {
    grid-column: 1 / -1; 
    max-width: 488px;
    justify-self: center;
    width: 100%;
}

.program-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: auto;
}

.program-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.program-icon {
    background-color: #162444;
    color: #ffffff;
    width: 48px;
    height: 48px;
    border-radius: 10px; 
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(22, 36, 68, 0.2);
}

.program-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    height: 100%;
}

.program-content h4 {
    color: #162444;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.program-content p {
    color: #6b7280;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .program-section {
        padding: 4rem 0.5rem;
    }
    
    .statement-box {
        padding: 2rem 1.5rem;
        margin-bottom: 3rem;
    }

    .program-card {
        padding: 1.5rem;
        gap: 1rem;
        flex-direction: column;
    }

    .program-grid, .lists-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .site-logo {
        font-size: 1.2rem;
    }
}

@media (max-width: 500px) {
     .candidates-section {
        padding: 3.5rem 0.5rem;
    }

    .candidates-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .candidate-info {
        padding: 1.5rem;
    }
}

.mandatory-info a,
.mandatory-info a:link,
.mandatory-info a:visited {
    color: inherit;
    text-decoration: none;
    pointer-events: none;
}


.supporters-section {
    max-width: 900px;
    margin: 4rem auto 0 auto;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.supporters-title {
    color: #162444;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    border-bottom: 2px solid #edf2f7;
    padding-bottom: 1.5rem;
}

.supporters-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.supporters-list li {
    display: flex;
    align-items: center;
    padding: 1.2rem 0;
    border-bottom: 1px solid #edf2f7;
}

.supporters-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.supporter-number {
    font-weight: 800;
    color: #d1a54a;
    width: 40px;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.supporter-name {
    font-weight: 700;
    color: #162444;
    font-size: 1.1rem;
    width: 250px;
    flex-shrink: 0;
}

.supporter-details {
    color: #718096;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .supporters-section {
        padding: 2rem 1.5rem;
        margin-top: 2.5rem;
    }
    
    .supporters-list li {
        flex-wrap: wrap;
        padding: 1rem 0;
    }
    
    .supporter-name {
        width: calc(100% - 40px);
    }
    
    .supporter-details {
        width: 100%;
        padding-left: 40px;
        margin-top: 0.4rem;
        font-size: 0.85rem;
    }
}

.statement-box p {
    line-height: 2;
    text-align: justify;
    font-weight: 600;
}

.expandable-card {
    cursor: pointer;
    user-select: none;
}

.program-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.4rem;
    gap: 1rem;
}

.program-header h4 {
    margin: 0;
}

.expand-icon {
    color: #d1a54a;
    display: flex;
    align-items: center;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.expandable-card.is-open .expand-icon {
    transform: rotate(180deg);
}

.program-detail-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.expandable-card.is-open .program-detail-wrapper {
    grid-template-rows: 1fr; 
}

.program-detail {
    overflow: hidden;
}

.detail-text {
    margin-top: 0.8rem !important;
    padding-top: 0.8rem;
    border-top: 1px dashed #e2e8f0;
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.6;
}

.program-perex {
    font-weight: 600;
}

.action-cue {
    display: inline-block;
    /* padding-top: 0.8rem; */
    margin-top: 0.8rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: #d1a54a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}

.expandable-card:hover .action-cue {
    color: #e5b95a;
    text-decoration: underline;
}

.cue-less {
    display: none;
}

.expandable-card.is-open .cue-more {
    display: none;
}

.expandable-card.is-open .cue-less {
    display: inline-block;
}

.strategy-section {
    padding: 2rem 0 2rem 0;
}

.strategy-box {
    max-width: 1000px;
    margin: 0 auto;
    /* background: #ffffff; */
    padding: 2rem;
    border-radius: 20px;
    /* box-shadow: 0 20px 50px -10px rgba(15, 23, 42, 0.08); */
    /* border: 1px solid rgba(15, 23, 42, 0.03); */
}

.strategy-box p {
    color: #475569;
    line-height: 1.85;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.equality-banner {
    background-color: #f8fafc;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    margin: 3rem 0;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.equality-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    color: #d1a54a;
}

.list-badge {
    background: #0f172a;
    color: #ffffff;
    padding: 0.7rem 1.6rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(209, 165, 74, 0.4);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

.equality-banner p {
    margin: 0;
    color: #1e293b;
    font-size: 1.1rem;
    line-height: 1.6;
}

.equality-banner p strong {
    color: #0f172a;
    font-weight: 700;
}

.strategy-outro {
    text-align: center;
    font-size: 1.15rem !important;
    color: #0f172a !important;
    margin-top: 3rem;
    margin-bottom: 0 !important;
    padding-top: 2rem;
    border-top: 1px solid #f1f5f9;
}

@media (max-width: 600px) {
    .strategy-box {
        padding: 2.5rem 1.5rem;
        border-radius: 16px;
    }
    
    .equality-banner {
        padding: 2rem 1rem;
    }

    .equality-icons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .equality-icons svg {
        transform: rotate(90deg);
    }
}

.election-banner {
    background-color: #d1a54a;
    color: #0f172a;
    padding: 15px 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(209, 165, 74, 0.2); 
    position: relative;
    z-index: 10;
}

.election-banner p {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-size: 1rem;
    font-weight: 600;
}

.election-banner p strong {
    color: #0f172a;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.election-banner svg {
    color: #0f172a;
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .election-banner p {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 1.1rem;
    }
    
    .election-banner svg {
        display: none;
    }
}

.how-to-vote-simple {
    padding-bottom: 6rem;
    background-color: #ffffff;
}

.vote-intro {
    max-width: 850px;
    margin: 0 auto 4.5rem auto;
    text-align: center;
}

.vote-intro p {
    color: #475569;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.vote-methods-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3.5rem;
    max-width: 1050px;
    margin: 0 auto 4.5rem auto;
}

.method-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.method-num {
    font-size: 3rem;
    font-weight: 800;
    color: #d1a54a;
    line-height: 1;
    margin-bottom: 1.2rem;
}

.method-text h4 {
    color: #0f172a;
    font-size: 1.25rem;
    margin-top: 0;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.method-text p {
    color: #475569;
    line-height: 1.75;
    font-size: 1rem;
    margin: 0;
}

.vote-alert {
    max-width: 850px;
    margin: 0 auto 4.5rem auto;
    padding: 1.5rem 2rem;
    background-color: #fff1f2;
    border: 1px solid #ffe4e6;
    border-radius: 8px;
    text-align: center;
}

.vote-alert p {
    margin: 0;
    color: #881337; 
    font-size: 1.05rem;
    line-height: 1.6;
}

.vote-alert strong {
    color: #e11d48;
    font-weight: 800;
}

.vote-urn {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.vote-urn h4 {
    color: #0f172a;
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.5;
}

.vote-urn p {
    color: #64748b;
    line-height: 1.8;
    font-size: 0.95rem;
    margin: 0;
}

@media (max-width: 768px) {
    .vote-methods-list {
        gap: 3rem;
    }
    
    .vote-intro, .vote-alert, .vote-urn {
        text-align: left;
    }
}