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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Header Styles */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #4F46E5;
}

.nav-brand i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

.brand-text {
    font-size: 1.8rem;
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0 1rem;
}

.nav-menu a {
    text-decoration: none;
    color: #64748B;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    color: #4F46E5;
    background-color: #EEF2FF;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-container {
    position: relative;
}

.search-input {
    padding: 0.5rem 2.5rem 0.5rem 1rem;
    border: 2px solid #E2E8F0;
    border-radius: 8px;
    background: #F8FAFC;
    font-size: 0.9rem;
    width: 200px;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #4F46E5;
    background: white;
}

.search-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #64748B;
}

.language-btn {
    background: none;
    border: 2px solid #E2E8F0;
    padding: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    color: #64748B;
    transition: all 0.3s ease;
}

.language-btn:hover {
    border-color: #4F46E5;
    color: #4F46E5;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0B236C 0%, #1E3A8A 100%); /* Navy blue to lighter blue gradient */
    color: white;
    padding: 8rem 0 4rem;
    margin-top: 80px;
}


.hero-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Feature Cards */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    color: #333;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    background: #EEF2FF;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.card-icon i {
    font-size: 1.5rem;
    color: var(--icon-color, #4F46E5); /* Default icon color with CSS variable fallback */
}

/* Specific icon colors for each card type - more maintainable approach */
.feature-card:nth-child(1) {
    --icon-color: #4F46E5; /* Calendar icon - primary blue */
}

.feature-card:nth-child(2) {
    --icon-color: #1E40AF; /* Temas Destacados icon - darker blue for distinction */
}

.feature-card:nth-child(3) {
    --icon-color: #4F46E5; /* Voting icon - primary blue */
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1E293B;
}


.election-info {
    background: #F1F5F9;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #4F46E5;
}

.election-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.election-countdown {
    color: #64748B;
    font-size: 0.9rem;
}

.topic-list {
    list-style: none;
}

.topic-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #E2E8F0;
    position: relative;
    padding-left: 1.5rem;
}

.topic-list li:before {
    content: "•";
    color: #4F46E5;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.topic-list li:last-child {
    border-bottom: none;
}

/* Main Content */
.main-content {
    padding: 4rem 0;
    background: white;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.content-section h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #1E293B;
    border-bottom: 3px solid #4F46E5;
    padding-bottom: 0.5rem;
}

.election-item, .promise-item {
    background: #F8FAFC;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    border-left: 4px solid #4F46E5;
}

.election-item h3 {
    color: #1E293B;
    margin-bottom: 0.5rem;
}

.participants {
    color: #64748B;
    margin-bottom: 1rem;
}

.details-link {
    color: #4F46E5;
    text-decoration: none;
    font-weight: 500;
}

.details-link:hover {
    text-decoration: underline;
}

.promise-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.promise-status {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.promise-status.completed {
    background: #D1FAE5;
    color: #059669;
}

.promise-status.in-progress {
    background: #FEF3C7;
    color: #D97706;
}

.promise-content h3 {
    color: #1E293B;
    margin-bottom: 0.25rem;
}

.promise-content p {
    color: #64748B;
    font-size: 0.9rem;
}

/* Waitlist Section */
.waitlist-section {
    background: #F1F5F9;
    padding: 4rem 0;
}

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

.waitlist-content h2 {
    font-size: 2rem;
    color: #1E293B;
    margin-bottom: 1rem;
}

.waitlist-content p {
    color: #64748B;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.waitlist-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto 1rem;
}

.email-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid #E2E8F0;
    border-radius: 8px;
    font-size: 1rem;
}

.email-input:focus {
    outline: none;
    border-color: #4F46E5;
}

.subscribe-btn {
    background: #4F46E5;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.subscribe-btn:hover {
    background: #4338CA;
}

.privacy-note {
    font-size: 0.9rem;
    color: #64748B;
}

.privacy-note a {
    color: #4F46E5;
    text-decoration: none;
}

/* Footer */
.footer {
    background: #1E293B;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #4F46E5;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #E2E8F0;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #4F46E5;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.version {
    color: #64748B;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .feature-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
    }

    .waitlist-form {
        flex-direction: column;
    }

    .search-input {
        width: 150px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 6rem 0 2rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .nav-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .search-input {
        width: 200px;
    }
}

/* Political Parties Section */
.parties-section {
    padding: 4rem 0;
    background: #F8FAFC;
}

.parties-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1E293B;
}

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

.party-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-left: 4px solid;
    transition: transform 0.3s ease;
}

.party-card:hover {
    transform: translateY(-3px);
}

.party-card.government {
    border-left-color: #DC2626;
}

.party-card.opposition {
    border-left-color: #2563EB;
}

.party-card.coalition {
    border-left-color: #7C3AED;
}

.party-card.regional {
    border-left-color: #059669;
}

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

.party-header h3 {
    font-size: 1.3rem;
    color: #1E293B;
    margin: 0;
}

.party-status {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.government .party-status {
    background: #FEE2E2;
    color: #DC2626;
}

.opposition .party-status {
    background: #DBEAFE;
    color: #2563EB;
}

.coalition .party-status {
    background: #EDE9FE;
    color: #7C3AED;
}

.regional .party-status {
    background: #D1FAE5;
    color: #059669;
}

.party-leader, .party-seats {
    font-size: 0.9rem;
    color: #64748B;
    margin: 0.5rem 0;
}

.party-leader {
    font-weight: 600;
}

/* Issues Section */
.issues-section {
    padding: 4rem 0;
    background: white;
}

.issues-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1E293B;
}

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

.issue-card {
    background: #F8FAFC;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.issue-card:hover {
    background: white;
    border-color: #4F46E5;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.1);
}

.issue-card i {
    font-size: 2.5rem;
    color: #4F46E5;
    margin-bottom: 1rem;
}

.issue-card h3 {
    font-size: 1.2rem;
    color: #1E293B;
    margin-bottom: 1rem;
}

.issue-card p {
    color: #64748B;
    line-height: 1.5;
}

/* Additional promise status styles */
.promise-status.new {
    background: #FEF3C7;
    color: #D97706;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .parties-grid, .issues-grid {
        grid-template-columns: 1fr;
    }
    
    .party-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Election details styling */
.election-details {
    color: #64748B;
    font-size: 0.9rem;
    margin: 0.5rem 0;
    font-style: italic;
}

/* Elections Page Styles */
.elections-section {
    padding: 6rem 0 4rem;
    background: #fff;
}

.elections-section.upcoming {
    background: #f8fafc;
}

.elections-section h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 3rem;
    text-align: center;
}

.elections-section h1 i {
    color: #4f46e5;
    margin-right: 1rem;
}

.election-result, .upcoming-election {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.election-result:hover, .upcoming-election:hover {
    transform: translateY(-3px);
}

.election-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.election-header h2 {
    color: #1e293b;
    margin: 0;
    font-size: 1.5rem;
}

.election-level {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.election-level.nacional {
    background: #dc2626;
    color: white;
}

.election-level.regional {
    background: #2563eb;
    color: white;
}

.election-level.europeo {
    background: #7c3aed;
    color: white;
}

.election-level.local {
    background: #059669;
    color: white;
}

.election-meta {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f1f5f9;
    border-radius: 8px;
}

.election-meta p {
    margin: 0.5rem 0;
    color: #334155;
}

.election-meta strong {
    color: #1e293b;
}

.election-results h3 {
    color: #4f46e5;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.result-item {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #4f46e5;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.party-name {
    font-weight: 700;
    color: #1e293b;
    font-size: 1.1rem;
}

.seats {
    font-weight: 600;
    color: #4f46e5;
}

.percentage {
    color: #64748b;
    font-size: 0.9rem;
}

.government-formation {
    background: #ecfdf5;
    padding: 1rem;
    border-left: 4px solid #059669;
    border-radius: 4px;
    margin-top: 1rem;
    color: #065f46;
}

.election-details {
    background: #fef7ff;
    padding: 1rem;
    border-left: 4px solid #7c3aed;
    border-radius: 4px;
    color: #581c87;
}

.nav-menu a.active {
    color: #4f46e5;
    background-color: #eef2ff;
    font-weight: 600;
}

.nav-brand a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .elections-section {
        padding: 4rem 0 2rem;
    }
    
    .elections-section h1 {
        font-size: 2rem;
    }
    
    .election-result, .upcoming-election {
        padding: 1.5rem;
    }
    
    .election-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
}
/* Partidos Page Styles */
.partidos-section {
    padding: 6rem 0 4rem;
    background: #f8fafc;
}

.partidos-section h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 3rem;
    text-align: center;
}

.partidos-section h1 i {
    color: #4f46e5;
    margin-right: 1rem;
}

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

.partido-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    border-left: 6px solid transparent;
}

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

.partido-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.partido-header h2 {
    color: #1e293b;
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.party-status {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.party-status.gobierno {
    background: #dc2626;
    color: white;
}

.party-status.oposicion {
    background: #2563eb;
    color: white;
}

.party-status.coalicion {
    background: #7c3aed;
    color: white;
}

.party-status.regional {
    background: #059669;
    color: white;
}

.partido-card.gobierno {
    border-left-color: #dc2626;
}

.partido-card.oposicion {
    border-left-color: #2563eb;
}

.partido-card.coalicion {
    border-left-color: #7c3aed;
}

.partido-card.regional {
    border-left-color: #059669;
}

.partido-card.vox {
    border-left-color: #059669;
}

.partido-info {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
}

.partido-info p {
    color: #334155;
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

.partido-info strong {
    color: #1e293b;
}

.partido-description {
    margin-bottom: 1.5rem;
}

.partido-description p {
    color: #475569;
    line-height: 1.6;
    font-size: 1rem;
}

.partido-policies h4 {
    color: #4f46e5;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.partido-policies ul {
    list-style: none;
    padding: 0;
}

.partido-policies li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #64748b;
    font-size: 0.9rem;
}

.partido-policies li:before {
    content: "•";
    color: #4f46e5;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Congress Composition */
.congress-composition {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-top: 3rem;
}

.congress-composition h2 {
    color: #1e293b;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.congress-composition h2 i {
    color: #4f46e5;
    margin-right: 1rem;
}

.composition-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.composition-item {
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.composition-item.gobierno {
    background: #fef2f2;
    border: 2px solid #dc2626;
}

.composition-item.oposicion {
    background: #eff6ff;
    border: 2px solid #2563eb;
}

.composition-item h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.composition-item p {
    color: #64748b;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .partidos-section {
        padding: 4rem 0 2rem;
    }
    
    .partidos-section h1 {
        font-size: 2rem;
    }
    
    .partidos-grid {
        grid-template-columns: 1fr;
    }
    
    .partido-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .composition-summary {
        grid-template-columns: 1fr;
    }
}

/* Enhanced Congress Composition */
.congress-composition {
    background: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin: 3rem 0;
}

.congress-composition h2 {
    color: #1e293b;
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2.2rem;
}

.congress-composition h2 i {
    color: #4f46e5;
    margin-right: 1rem;
}

.composition-overview {
    margin-bottom: 3rem;
}

.composition-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 2rem;
}

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

.stat-item.gobierno {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border: 2px solid #dc2626;
}

.stat-item.oposicion {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border: 2px solid #2563eb;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
}

.composition-detailed {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.composition-block {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border-left: 6px solid;
}

.composition-block.gobierno {
    border-left-color: #dc2626;
}

.composition-block.oposicion {
    border-left-color: #2563eb;
}

.composition-block h3 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
}

.composition-block h3 i {
    color: #4f46e5;
    margin-right: 0.8rem;
}

.coalition-section {
    margin-bottom: 2rem;
}

.coalition-section h4 {
    color: #475569;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.party-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.party-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 1rem 1.2rem;
    border-radius: 8px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.05);
    border-left: 4px solid #4f46e5;
    transition: transform 0.2s ease;
}

.party-item:hover {
    transform: translateX(3px);
}

.party-name {
    font-weight: 600;
    color: #1e293b;
    font-size: 1rem;
}

.party-seats {
    color: #4f46e5;
    font-weight: 700;
    font-size: 0.95rem;
}

/* Specific party colors */
.party-item.psoe { border-left-color: #dc2626; }
.party-item.sumar { border-left-color: #7c3aed; }
.party-item.erc { border-left-color: #059669; }
.party-item.junts { border-left-color: #0891b2; }
.party-item.pnv { border-left-color: #16a34a; }
.party-item.pp { border-left-color: #2563eb; }
.party-item.vox { border-left-color: #16a34a; }
.party-item.other { border-left-color: #64748b; }

.composition-notes {
    background: #fafbfc;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.composition-notes h4 {
    color: #1e293b;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.composition-notes h4 i {
    color: #4f46e5;
    margin-right: 0.8rem;
}

.composition-notes ul {
    list-style: none;
    padding: 0;
}

.composition-notes li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #475569;
    line-height: 1.5;
}

.composition-notes li:before {
    content: "•";
    color: #4f46e5;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.composition-notes strong {
    color: #1e293b;
}

/* Responsive Design */
@media (max-width: 768px) {
    .composition-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .composition-detailed {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .congress-composition {
        padding: 2rem 1rem;
    }
    
    .congress-composition h2 {
        font-size: 1.8rem;
    }
}

/* Politicos Page Styles */
.politicos-section {
    padding: 6rem 0 4rem;
    background: #f8fafc;
}

.politicos-section h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 3rem;
    text-align: center;
}

.politicos-section h1 i {
    color: #4f46e5;
    margin-right: 1rem;
}

.section-header {
    text-align: center;
    margin: 4rem 0 2rem;
}

.section-header h2 {
    color: #1e293b;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: #64748b;
    font-size: 1.1rem;
}

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

.politico-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 2rem;
    transition: all 0.3s ease;
    border-left: 6px solid transparent;
}

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

.politico-card.psoe { border-left-color: #dc2626; }
.politico-card.sumar { border-left-color: #7c3aed; }
.politico-card.pp { border-left-color: #2563eb; }
.politico-card.vox { border-left-color: #059669; }
.politico-card.erc { border-left-color: #0891b2; }
.politico-card.junts { border-left-color: #0891b2; }
.politico-card.pnv { border-left-color: #16a34a; }

.politico-photo-container {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.politico-photo-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.party-badge {
    position: absolute;
    bottom: -5px;
    right: calc(50% - 60px);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.party-badge.gobierno { background: #dc2626; color: white; }
.party-badge.coalicion { background: #7c3aed; color: white; }
.party-badge.oposicion { background: #2563eb; color: white; }
.party-badge.regional { background: #059669; color: white; }

.politico-info h3 {
    color: #1e293b;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.position {
    color: #4f46e5;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.party {
    color: #64748b;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-style: italic;
}

.bio {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: left;
}

.politician-stats {
    display: flex;
    justify-content: space-around;
    padding-top: 1rem;
    border-top: 2px solid #e2e8f0;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #4f46e5;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Political Influence Section */
.political-influence {
    background: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-top: 3rem;
}

.political-influence h2 {
    color: #1e293b;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.political-influence h2 i {
    color: #4f46e5;
    margin-right: 0.8rem;
}

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

.influence-item {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.influence-item h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.influence-item p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.influence-parties {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.party-tag {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
}

.party-tag.psoe { background: #dc2626; }
.party-tag.sumar { background: #7c3aed; }
.party-tag.pp { background: #2563eb; }
.party-tag.vox { background: #059669; }
.party-tag.erc { background: #0891b2; }
.party-tag.junts { background: #0891b2; }
.party-tag.pnv { background: #16a34a; }

/* Responsive Design */
@media (max-width: 768px) {
    .politicos-section {
        padding: 4rem 0 2rem;
    }
    
    .politicos-section h1 {
        font-size: 2rem;
    }
    
    .politicos-grid {
        grid-template-columns: 1fr;
    }
    
    .politician-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .influence-grid {
        grid-template-columns: 1fr;
    }
}

/* Temas Page Styles */
.temas-section, .upcoming-topics-section {
    padding: 6rem 0 4rem;
    background: #f8fafc;
}

.temas-section h1, .upcoming-topics-section h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 3rem;
    text-align: center;
}

.temas-section h1 i, .upcoming-topics-section h1 i {
    color: #4f46e5;
    margin-right: 1rem;
}

.topics-grid, .upcoming-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Topic Cards */
.topic-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 2rem;
    transition: transform 0.3s ease;
    border-left: 6px solid transparent;
}

.topic-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.topic-card.approved {
    border-left-color: #059669;
}

.topic-card.rejected {
    border-left-color: #dc2626;
}

.topic-card.controversial {
    border-left-color: #d97706;
}

.topic-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.topic-header h2 {
    color: #1e293b;
    font-size: 1.8rem;
    margin: 0;
}

.topic-status {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.topic-status.approved {
    background: #d1fae5;
    color: #065f46;
}

.topic-status.rejected {
    background: #fee2e2;
    color: #991b1b;
}

.controversy-badge {
    padding: 0.3rem 0.8rem;
    background: #fed7aa;
    color: #9a3412;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.topic-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f1f5f9;
    border-radius: 8px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #64748b;
}

.meta-item i {
    color: #4f46e5;
    width: 16px;
}

.topic-summary {
    margin-bottom: 2rem;
}

.topic-summary p {
    color: #475569;
    line-height: 1.6;
    font-size: 1rem;
}

/* Voting Results */
.voting-results h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.vote-breakdown {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
}

.vote-section h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.vote-section.a-favor h4 {
    color: #059669;
}

.vote-section.en-contra h4 {
    color: #dc2626;
}

.vote-section.abstenciones h4 {
    color: #64748b;
}

.party-votes {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.party-vote {
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
    text-align: center;
}

.party-vote.psoe { background: #dc2626; }
.party-vote.sumar { background: #7c3aed; }
.party-vote.pp { background: #2563eb; }
.party-vote.vox { background: #059669; }
.party-vote.erc { background: #0891b2; }
.party-vote.junts { background: #0891b2; }
.party-vote.pnv { background: #16a34a; }
.party-vote.bildu { background: #16a34a; }
.party-vote.upn { background: #64748b; }
.party-vote.other { background: #64748b; }

/* Upcoming Topics */
.upcoming-topics-section {
    background: white;
}

.upcoming-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
    transition: transform 0.3s ease;
}

.upcoming-card:hover {
    transform: translateY(-3px);
}

.priority-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.priority-badge.high {
    background: #fee2e2;
    color: #991b1b;
}

.priority-badge.medium {
    background: #fed7aa;
    color: #9a3412;
}

.priority-badge.low {
    background: #e2e8f0;
    color: #475569;
}

.upcoming-card h2 {
    color: #1e293b;
    margin-bottom: 1rem;
    margin-right: 6rem;
}

.upcoming-meta {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.upcoming-meta p {
    margin: 0.3rem 0;
    color: #64748b;
}

.description {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.expected-support h4 {
    color: #1e293b;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.support-indicators {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.support {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.support.favorable {
    background: #d1fae5;
    color: #065f46;
}

.support.against {
    background: #fee2e2;
    color: #991b1b;
}

.support.uncertain {
    background: #fef3c7;
    color: #92400e;
}

/* Topics by Category */
.topics-categories {
    padding: 4rem 0;
    background: #f1f5f9;
}

.topics-categories h2 {
    color: #1e293b;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.topics-categories h2 i {
    color: #4f46e5;
    margin-right: 1rem;
}

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

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.category-card h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.category-card h3 i {
    color: #4f46e5;
}

.category-card ul {
    list-style: none;
    padding: 0;
}

.category-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    color: #64748b;
}

.category-card li:last-child {
    border-bottom: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .vote-breakdown {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .topic-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .upcoming-card h2 {
        margin-right: 0;
    }
    
    .priority-badge {
        position: static;
        display: inline-block;
        margin-bottom: 1rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #0B236C 0%, #1E3A8A 100%);
    color: white;
    padding: 8rem 0 6rem;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: #1e293b;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.section-header h2 i {
    color: #4f46e5;
}

.section-subtitle {
    color: #64748b;
    font-size: 1.2rem;
}

/* Mission Section */
.about-mission {
    padding: 6rem 0;
    background: white;
}

.mission-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.lead-text {
    font-size: 1.3rem;
    color: #1e293b;
    font-weight: 500;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.mission-text p {
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.mission-goals {
    list-style: none;
    padding: 0;
}

.mission-goals li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    color: #475569;
    font-size: 1.1rem;
}

.mission-goals i {
    color: #059669;
    font-size: 1.2rem;
}

.democracy-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
}

.circle-content {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    width: 250px;
    height: 250px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 2rem;
}

.circle-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.circle-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.circle-content p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Principles Section */
.about-principles {
    padding: 6rem 0;
    background: #f8fafc;
}

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

.principle-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.principle-card:hover {
    transform: translateY(-5px);
}

.principle-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.principle-icon i {
    font-size: 2rem;
    color: white;
}

.principle-card h3 {
    color: #1e293b;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.principle-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Methodology Section */
.about-methodology {
    padding: 6rem 0;
    background: white;
}

.methodology-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-number {
    background: #4f46e5;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #64748b;
}

.sources-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.source-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.source-item i {
    color: #4f46e5;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.source-item h4 {
    color: #1e293b;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.source-item p {
    color: #64748b;
    font-size: 0.9rem;
}

/* Team Section */
.about-team {
    padding: 6rem 0;
    background: #f1f5f9;
}

.team-description {
    text-align: center;
    margin-bottom: 3rem;
}

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

.area-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
}

.area-icon {
    width: 60px;
    height: 60px;
    background: #eef2ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.area-icon i {
    font-size: 1.5rem;
    color: #4f46e5;
}

.area-card h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.area-card p {
    color: #64748b;
    line-height: 1.6;
}

.team-commitment {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border-left: 4px solid #4f46e5;
}

.team-commitment h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.team-commitment p {
    color: #475569;
    line-height: 1.6;
}

/* Technology Section */
.about-technology {
    padding: 6rem 0;
    background: white;
}

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

.tech-feature {
    text-align: center;
    padding: 2rem;
}

.tech-feature i {
    font-size: 3rem;
    color: #4f46e5;
    margin-bottom: 1rem;
}

.tech-feature h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.tech-feature p {
    color: #64748b;
    line-height: 1.6;
}

/* Contact CTA */
.about-contact-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    text-align: center;
}

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

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

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

.btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: white;
    color: #4f46e5;
}

.btn-primary:hover {
    background: #f1f5f9;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #4f46e5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .mission-content, 
    .methodology-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sources-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* About MVP Styles */
.about-hero {
    background: linear-gradient(135deg, #0B236C 0%, #1E3A8A 100%);
    color: white;
    padding: 8rem 0 6rem;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.beta-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.3);
}

/* Vision Section */
.about-vision {
    padding: 6rem 0;
    background: white;
}

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

.lead-text {
    font-size: 1.3rem;
    color: #1e293b;
    font-weight: 500;
    margin-bottom: 3rem;
    line-height: 1.6;
    text-align: center;
}

.vision-goals h3 {
    color: #1e293b;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

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

.goal-item {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border-left: 4px solid #4f46e5;
}

.goal-item i {
    font-size: 2.5rem;
    color: #4f46e5;
    margin-bottom: 1rem;
}

.goal-item h4 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.goal-item p {
    color: #64748b;
    line-height: 1.6;
}

/* Status Section */
.about-status {
    padding: 6rem 0;
    background: #f1f5f9;
}

.current-phase {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 3rem;
    border-left: 6px solid #4f46e5;
}

.current-phase h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.current-phase p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
}

.progress-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.progress-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.progress-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.progress-icon.completed {
    background: #d1fae5;
    color: #059669;
}

.progress-icon.in-progress {
    background: #fef3c7;
    color: #d97706;
}

.progress-icon.planned {
    background: #e2e8f0;
    color: #64748b;
}

.progress-content h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.progress-content p {
    color: #64748b;
}

/* Newsletter CTA */
.newsletter-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.cta-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
}

.benefit-item i {
    color: #a5b4fc;
}

.newsletter-form {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.newsletter-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.signup-form .form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.email-input {
    flex: 1;
    padding: 1rem;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 1rem;
}

.email-input::placeholder {
    color: rgba(255,255,255,0.7);
}

.email-input:focus {
    outline: none;
    border-color: white;
    background: rgba(255,255,255,0.2);
}

.subscribe-btn {
    background: white;
    color: #4f46e5;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.subscribe-btn:hover {
    background: #f1f5f9;
    transform: translateY(-1px);
}

.privacy-note {
    font-size: 0.9rem;
    opacity: 0.8;
    text-align: center;
    line-height: 1.5;
}

.privacy-note a {
    color: #a5b4fc;
    text-decoration: underline;
}

/* Principles Section */
.about-principles {
    padding: 6rem 0;
    background: white;
}

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

.principle-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.principle-card:hover {
    transform: translateY(-3px);
}

.principle-icon {
    width: 60px;
    height: 60px;
    background: #4f46e5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.principle-icon i {
    font-size: 1.5rem;
    color: white;
}

.principle-card h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.principle-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Roadmap Section */
.about-roadmap {
    padding: 6rem 0;
    background: #f8fafc;
}

.roadmap-timeline {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e2e8f0;
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 3rem;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e2e8f0;
    border: 4px solid white;
    z-index: 1;
}

.timeline-marker.current {
    background: #4f46e5;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.timeline-content h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.timeline-status {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.timeline-status.current {
    background: #dbeafe;
    color: #1e40af;
}

.timeline-status.planned {
    background: #f3f4f6;
    color: #6b7280;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: #1e293b;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.section-header h2 i {
    color: #4f46e5;
}

.section-subtitle {
    color: #64748b;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .signup-form .form-group {
        flex-direction: column;
    }
    
    .goals-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Methodology Page Styles */
.methodology-hero {
    background: linear-gradient(135deg, #0B236C 0%, #1E3A8A 100%);
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
}

.methodology-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.methodology-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.methodology-stats .stat-item {
    text-align: center;
}

.methodology-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
}

.methodology-stats .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Process Overview */
.process-overview {
    padding: 6rem 0;
    background: white;
}

.process-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.process-step {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    min-width: 200px;
    position: relative;
    flex: 1;
    max-width: 250px;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #4f46e5;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.step-icon {
    background: #eef2ff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto;
}

.step-icon i {
    font-size: 1.5rem;
    color: #4f46e5;
}

.process-step h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.process-step p {
    color: #64748b;
    line-height: 1.6;
}

.process-arrow {
    color: #4f46e5;
    font-size: 1.5rem;
}

/* Data Collection */
.data-collection {
    padding: 6rem 0;
    background: #f1f5f9;
}

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

.collection-method {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.method-icon {
    background: #4f46e5;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.method-icon i {
    color: white;
    font-size: 1.3rem;
}

.collection-method h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.collection-method ul {
    list-style: none;
    padding: 0;
}

.collection-method li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #64748b;
    line-height: 1.6;
}

.collection-method li:before {
    content: "•";
    color: #4f46e5;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.data-sources-section {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.data-sources-section h3 {
    color: #1e293b;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.data-sources-section h3 i {
    color: #4f46e5;
}

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

.source-category h4 {
    color: #4f46e5;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #eef2ff;
}

.source-category ul {
    list-style: none;
    padding: 0;
}

.source-category li {
    padding: 0.3rem 0;
    color: #64748b;
}

/* Verification Process */
.verification-process {
    padding: 6rem 0;
    background: white;
}

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

.verification-step {
    background: #f8fafc;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.step-header {
    background: #4f46e5;
    color: white;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.step-header i {
    font-size: 1.5rem;
}

.step-header h3 {
    margin: 0;
    font-size: 1.3rem;
}

.step-content {
    padding: 2rem;
}

.step-content p {
    color: #1e293b;
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.step-content ul {
    list-style: none;
    padding: 0;
}

.step-content li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #64748b;
    line-height: 1.6;
}

.step-content li:before {
    content: "✓";
    color: #059669;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Promise Tracking */
.promise-tracking {
    padding: 6rem 0;
    background: #f8fafc;
}

.methodology-intro {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 3rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.methodology-intro p {
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.promise-criteria {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.criteria-item {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-left: 6px solid;
}

.criteria-item.completed {
    border-left-color: #059669;
}

.criteria-item.in-progress {
    border-left-color: #d97706;
}

.criteria-item.stalled {
    border-left-color: #64748b;
}

.criteria-item.broken {
    border-left-color: #dc2626;
}

.criteria-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: flex-start;
}

.criteria-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.criteria-item.completed .criteria-icon {
    background: #d1fae5;
    color: #059669;
}

.criteria-item.in-progress .criteria-icon {
    background: #fef3c7;
    color: #d97706;
}

.criteria-item.stalled .criteria-icon {
    background: #f1f5f9;
    color: #64748b;
}

.criteria-item.broken .criteria-icon {
    background: #fee2e2;
    color: #dc2626;
}

.criteria-content h3 {
    color: #1e293b;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.criteria-definition {
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.criteria-requirements, .criteria-examples {
    margin-bottom: 1.5rem;
}

.criteria-requirements h4, .criteria-examples h4 {
    color: #1e293b;
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.criteria-requirements ul, .criteria-examples ul {
    list-style: none;
    padding: 0;
}

.criteria-requirements li, .criteria-examples li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #64748b;
    line-height: 1.5;
    font-size: 0.95rem;
}

.criteria-requirements li:before, .criteria-examples li:before {
    content: "•";
    color: #4f46e5;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Voting Analysis */
.voting-analysis {
    padding: 6rem 0;
    background: white;
}

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

.framework-item {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease;
}

.framework-item:hover {
    transform: translateY(-3px);
}

.framework-icon {
    background: #4f46e5;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.framework-icon i {
    color: white;
    font-size: 1.5rem;
}

.framework-item h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.framework-item p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.framework-item ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.framework-item li {
    padding: 0.3rem 0;
    padding-left: 1rem;
    position: relative;
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

.framework-item li:before {
    content: "▸";
    color: #4f46e5;
    position: absolute;
    left: 0;
}

/* Data Updates */
.data-updates {
    padding: 6rem 0;
    background: #f1f5f9;
}

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

.frequency-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border-top: 4px solid;
}

.frequency-item.urgent {
    border-top-color: #dc2626;
}

.frequency-item.high {
    border-top-color: #d97706;
}

.frequency-item.medium {
    border-top-color: #4f46e5;
}

.frequency-item.low {
    border-top-color: #059669;
}

.frequency-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.frequency-item.urgent .frequency-icon {
    background: #fee2e2;
    color: #dc2626;
}

.frequency-item.high .frequency-icon {
    background: #fed7aa;
    color: #d97706;
}

.frequency-item.medium .frequency-icon {
    background: #eef2ff;
    color: #4f46e5;
}

.frequency-item.low .frequency-icon {
    background: #d1fae5;
    color: #059669;
}

.frequency-item h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.frequency-item p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.time-frame {
    background: #f1f5f9;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    color: #4f46e5;
    font-weight: 600;
}

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

.measure-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.measure-item i {
    color: #4f46e5;
    font-size: 1.3rem;
    margin-top: 0.2rem;
}

.measure-item h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.measure-item p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Transparency Section */
.transparency-section {
    padding: 6rem 0;
    background: white;
}

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

.transparency-item {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
    border-left: 6px solid #4f46e5;
}

.transparency-item h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.transparency-item h3 i {
    color: #4f46e5;
}

.transparency-item ul {
    list-style: none;
    padding: 0;
}

.transparency-item li {
    padding: 0.5rem 0;
    color: #64748b;
    line-height: 1.6;
}

.transparency-item strong {
    color: #1e293b;
}

/* Corrections CTA */
.corrections-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    text-align: center;
}

.corrections-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.corrections-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

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

.btn {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: white;
    color: #4f46e5;
}

.btn-primary:hover {
    background: #f1f5f9;
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #4f46e5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .methodology-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .process-flow {
        flex-direction: column;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
    
    .criteria-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .criteria-icon {
        margin: 0 auto;
    }
    
    .frequency-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Privacy Policy Styles */
.privacy-hero {
    background: linear-gradient(135deg, #0B236C 0%, #1E3A8A 100%);
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
}

.privacy-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.privacy-hero h1 i {
    color: #a5b4fc;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.update-info {
    background: rgba(255,255,255,0.1);
    padding: 1rem 2rem;
    border-radius: 12px;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.update-info p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
}

/* Privacy Content */
.privacy-content {
    padding: 6rem 0;
    background: #f8fafc;
}

.privacy-intro {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 3rem;
    text-align: center;
}

.privacy-intro h2 {
    color: #1e293b;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.privacy-intro p {
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.compliance-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.badge {
    background: #eef2ff;
    color: #4f46e5;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.privacy-section {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.privacy-section h2 {
    color: #1e293b;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #4f46e5;
}

.privacy-section h2 i {
    color: #4f46e5;
}

.privacy-section h3 {
    color: #1e293b;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.privacy-section p {
    color: #475569;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.privacy-section ul {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.privacy-section li {
    margin-bottom: 0.5rem;
}

.privacy-section strong {
    color: #1e293b;
}

/* Controller Info */
.controller-info {
    background: #f1f5f9;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #4f46e5;
    margin-bottom: 1.5rem;
}

/* Data Types */
.data-types {
    display: grid;
    gap: 2rem;
}

.data-type {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #4f46e5;
}

.data-type h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

/* Usage Purposes */
.usage-purposes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.purpose-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.purpose-icon {
    background: #eef2ff;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.purpose-icon i {
    color: #4f46e5;
    font-size: 1.5rem;
}

.purpose-content h3 {
    color: #1e293b;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.purpose-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

/* Sharing Policy */
.sharing-policy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.no-sharing {
    background: #fef2f2;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #dc2626;
}

.no-sharing h3 {
    color: #dc2626;
    margin-bottom: 1rem;
}

.limited-sharing {
    background: #f0fdf4;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #059669;
}

.limited-sharing h3 {
    color: #059669;
    margin-bottom: 1rem;
}

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

.right-item {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.right-item:hover {
    transform: translateY(-2px);
}

.right-item i {
    background: #4f46e5;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.2rem;
}

.right-item h3 {
    color: #1e293b;
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.right-item p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.rights-exercise {
    background: #eef2ff;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.rights-exercise h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.rights-exercise ol {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.rights-exercise a {
    color: #4f46e5;
    text-decoration: none;
}

.rights-exercise a:hover {
    text-decoration: underline;
}

/* Security Measures */
.security-measures {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.security-category {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #059669;
}

.security-category h3 {
    color: #059669;
    margin-bottom: 1rem;
}

.breach-policy {
    background: #fef3c7;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #d97706;
}

.breach-policy h3 {
    color: #d97706;
    margin-bottom: 1rem;
}

/* Retention Periods */
.retention-periods {
    display: grid;
    gap: 1.5rem;
}

.retention-item {
    background: #f1f5f9;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #4f46e5;
}

.retention-item h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Cookies Info */
.cookies-info {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.cookie-category {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #4f46e5;
}

.cookie-management {
    background: #eef2ff;
    padding: 2rem;
    border-radius: 12px;
}

.cookie-management h3 {
    color: #4f46e5;
    margin-bottom: 1rem;
}

/* Changes Policy */
.changes-policy {
    margin-bottom: 2rem;
}

.notification-process {
    background: #f1f5f9;
    padding: 2rem;
    border-radius: 12px;
}

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

.step {
    text-align: center;
    position: relative;
}

.step-number {
    background: #4f46e5;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Contact Options */
.contact-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-method {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #4f46e5;
}

.contact-method h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

/* Legal Framework */
.legal-framework {
    border: 2px solid #4f46e5;
}

.legal-references {
    background: #eef2ff;
    padding: 2rem;
    border-radius: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-hero h1 {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .compliance-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .sharing-policy,
    .security-measures,
    .contact-options {
        grid-template-columns: 1fr;
    }
    
    .rights-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .privacy-section {
        padding: 2rem;
    }
}

/* Terms of Use Styles */
.terms-hero {
    background: linear-gradient(135deg, #0B236C 0%, #1E3A8A 100%);
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
}

.terms-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.terms-hero h1 i {
    color: #a5b4fc;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.terms-info {
    background: rgba(255,255,255,0.1);
    padding: 1rem 2rem;
    border-radius: 12px;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.terms-info p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
}

/* Terms Content */
.terms-content {
    padding: 6rem 0;
    background: #f8fafc;
}

.terms-intro {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 3rem;
}

.terms-intro h2 {
    color: #1e293b;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.terms-intro p {
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: center;
}

.acceptance-notice {
    background: #eef2ff;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #4f46e5;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.acceptance-notice i {
    color: #4f46e5;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.acceptance-notice h3 {
    color: #1e293b;
    margin-bottom: 0.8rem;
}

.acceptance-notice p {
    color: #475569;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

.terms-section {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.terms-section h2 {
    color: #1e293b;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #4f46e5;
}

.terms-section h2 i {
    color: #4f46e5;
}

.terms-section h3 {
    color: #1e293b;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.terms-section h4 {
    color: #1e293b;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.terms-section p {
    color: #475569;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.terms-section ul, .terms-section ol {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.terms-section li {
    margin-bottom: 0.5rem;
}

.terms-section strong {
    color: #1e293b;
}

/* Service Description */
.service-description h3 {
    color: #4f46e5;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

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

.principle {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.principle i {
    background: #4f46e5;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.2rem;
}

.principle h5 {
    color: #1e293b;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.principle p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* User Rights and Obligations */
.user-rights-obligations {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.user-rights {
    background: #f0fdf4;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #059669;
}

.user-rights h3 {
    color: #059669;
    margin-bottom: 1rem;
}

.user-obligations {
    background: #fef3c7;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #d97706;
}

.user-obligations h3 {
    color: #d97706;
    margin-bottom: 1rem;
}

/* Prohibited Uses */
.prohibition-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.prohibition-category {
    background: #fef2f2;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #dc2626;
}

.prohibition-category h3 {
    color: #dc2626;
    margin-bottom: 1rem;
}

.violation-consequences {
    background: #fff7ed;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #d97706;
}

.violation-consequences h3 {
    color: #d97706;
    margin-bottom: 1rem;
}

/* Intellectual Property */
.ip-section {
    display: grid;
    gap: 2rem;
}

.license-info {
    background: #f0fdf4;
    padding: 2rem;
    border-radius: 12px;
    margin: 1.5rem 0;
}

.license-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #059669;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.license-badge i {
    font-size: 1.2rem;
}

.allowed-uses {
    list-style: none;
    padding: 0;
}

.allowed-uses li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.allowed-uses i {
    color: #059669;
    margin-top: 0.2rem;
}

.license-conditions {
    list-style: none;
    padding: 0;
}

.license-conditions li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.license-conditions i {
    color: #4f46e5;
    margin-top: 0.2rem;
}

.attribution-examples {
    background: #f1f5f9;
    padding: 2rem;
    border-radius: 12px;
}

.example {
    margin-bottom: 1.5rem;
}

.example h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.example code {
    background: #1e293b;
    color: #a5b4fc;
    padding: 0.8rem 1rem;
    border-radius: 6px;
    display: block;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

/* Accuracy and Disclaimers */
.accuracy-policy {
    display: grid;
    gap: 2rem;
}

.disclaimer-box {
    background: #fef3c7;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #d97706;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin: 2rem 0;
}

.disclaimer-box i {
    color: #d97706;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.disclaimer-box h4 {
    color: #d97706;
    margin-bottom: 0.8rem;
}

.disclaimer-box p {
    color: #92400e;
    line-height: 1.6;
    margin: 0;
}

/* Liability Section */
.liability-points {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.liability-point {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
}

.liability-point i {
    background: #4f46e5;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.liability-point h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.liability-point p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Modifications Policy */
.notification-types {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.notification-type {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #4f46e5;
}

.notification-method {
    background: #4f46e5;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 0.5rem;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #4f46e5;
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 2rem;
}

.timeline-date {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 40px;
    background: #4f46e5;
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.timeline-content {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
}

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

.timeline-content p {
    color: #64748b;
    margin: 0;
}

/* User Options */
.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.option {
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.option.accept {
    background: #f0fdf4;
    border: 2px solid #059669;
}

.option.accept i {
    color: #059669;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.option.reject {
    background: #fef2f2;
    border: 2px solid #dc2626;
}

.option.reject i {
    color: #dc2626;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.option h4 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.option p {
    color: #64748b;
    margin: 0;
}

/* Contact Information */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-method {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #4f46e5;
}

.contact-method h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.contact-method a {
    color: #4f46e5;
    text-decoration: none;
}

.contact-method a:hover {
    text-decoration: underline;
}

.response-commitment {
    background: #eef2ff;
    padding: 2rem;
    border-radius: 12px;
}

.response-commitment h3 {
    color: #4f46e5;
    margin-bottom: 1rem;
}

/* Final Provisions */
.terms-conclusion {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.terms-conclusion h2 {
    color: #1e293b;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 3px solid #4f46e5;
}

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

.provision {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #4f46e5;
}

.provision h3 {
    color: #4f46e5;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.provision p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.acknowledgment {
    background: #eef2ff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #4f46e5;
}

.acknowledgment p {
    color: #1e293b;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.acknowledgment em {
    color: #4f46e5;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .terms-hero h1 {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .user-rights-obligations,
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .prohibition-categories,
    .contact-methods,
    .final-provisions {
        grid-template-columns: 1fr;
    }
    
    .terms-section {
        padding: 2rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-date {
        width: 40px;
        height: 30px;
        font-size: 0.7rem;
    }
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #0B236C 0%, #1E3A8A 100%);
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.contact-hero h1 i {
    color: #a5b4fc;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Content */
.contact-content {
    padding: 6rem 0;
    background: #f8fafc;
}

/* Newsletter Section */
.newsletter-section {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 3rem;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.newsletter-text h2 {
    color: #1e293b;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.newsletter-text h2 i {
    color: #4f46e5;
}

.newsletter-text p {
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.newsletter-benefits {
    list-style: none;
    padding: 0;
}

.newsletter-benefits li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    color: #475569;
    font-size: 1rem;
}

.newsletter-benefits i {
    color: #4f46e5;
    width: 20px;
}

.newsletter-signup {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #4f46e5;
}

.newsletter-signup h3 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    text-align: center;
}

.signup-form .form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.email-input {
    flex: 1;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.email-input:focus {
    outline: none;
    border-color: #4f46e5;
}

.subscribe-btn {
    background: #4f46e5;
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.subscribe-btn:hover {
    background: #4338ca;
    transform: translateY(-1px);
}

.privacy-note {
    font-size: 0.9rem;
    color: #64748b;
    text-align: center;
    line-height: 1.5;
}

.privacy-note a {
    color: #4f46e5;
    text-decoration: none;
}

.privacy-note a:hover {
    text-decoration: underline;
}

/* Direct Contact Section */
.direct-contact-section {
    margin-bottom: 3rem;
}

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

.contact-method {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-3px);
}

.method-icon {
    background: #eef2ff;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.method-icon i {
    color: #4f46e5;
    font-size: 2rem;
}

.contact-method h3 {
    color: #1e293b;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.contact-method p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-details ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 1rem;
}

.contact-details li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #64748b;
    font-size: 0.95rem;
}

.contact-details li:before {
    content: "•";
    color: #4f46e5;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.commitment {
    background: #f0fdf4;
    color: #059669;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 1rem;
}

/* Email Reveal */
.email-reveal {
    margin-top: 1.5rem;
}

.reveal-email-btn {
    background: #4f46e5;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 1rem auto;
}

.reveal-email-btn:hover {
    background: #4338ca;
    transform: translateY(-1px);
}

.email-display {
    background: #

/* Mailchimp Form Styles */
#mc_embed_signup {
    max-width: 400px;
    margin: 20px auto 0;
}

.mailchimp-form .form-group {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.mailchimp-form .email-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    color: var(--text);
    font-size: 16px;
    font-family: inherit;
}

.mailchimp-form .email-input::placeholder {
    color: var(--muted);
}

.mailchimp-form .email-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(124,92,255,0.2);
}

.mailchimp-form .submit-btn {
    padding: 12px 24px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    font-family: inherit;
    transition: background 0.2s;
    white-space: nowrap;
}

.mailchimp-form .submit-btn:hover {
    background: color-mix(in oklab, var(--accent) 80%, white);
}

.mailchimp-form .clear {
    display: contents;
}

/* Hide Mailchimp default styles */
#mc_embed_signup div.mce_inline_error {
    background-color: rgba(255,82,82,0.1);
    border: 1px solid rgba(255,82,82,0.3);
    color: #ff5252;
    padding: 8px 12px;
    border-radius: 8px;
    margin-top: 8px;
    font-size: 14px;
}

#mc_embed_signup div.response {
    margin: 8px 0;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
}

#mc_embed_signup .response.error {
    background-color: rgba(255,82,82,0.1);
    border: 1px solid rgba(255,82,82,0.3);
    color: #ff5252;
}

#mc_embed_signup .response.success {
    background-color: rgba(74,209,198,0.1);
    border: 1px solid rgba(74,209,198,0.3);
    color: var(--accent-2);
}

@media (max-width: 520px) {
    .mailchimp-form .form-group {
        flex-direction: column;
    }
    
    .mailchimp-form .submit-btn {
        width: 100%;
    }
}    
