/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Enhanced Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
}

h2 {
    font-size: 2.5rem;
    color: #09115e;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.3;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
    font-size: 1rem;
}

.lead {
    font-size: 1.125rem;
    font-weight: 400;
    color: #666;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    position: relative;
}

.nav-link:hover {
    color: #09115e;
    background: rgba(9, 17, 94, 0.1);
}

.nav-link.active {
    color: #09115e;
    background: rgba(9, 17, 94, 0.1);
}

/* eVolitve special styling */
.evolitve-link {
    background: linear-gradient(135deg, #FF9900 0%, #ff8800 100%);
    color: white !important;
    font-weight: 600;
    border-radius: 6px;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.evolitve-link:hover {
    background: linear-gradient(135deg, #ff8800 0%, #e67700 100%) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 153, 0, 0.3);
}

.evolitve-link.active {
    background: linear-gradient(135deg, #e67700 0%, #cc6600 100%) !important;
    color: white !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #09115e 0%, #3498db 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,0 1000,300 1000,1000 0,700"/></svg>') no-repeat center center;
    background-size: cover;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-text {
    text-align: left;
}

.hero-subtitle-container {
    text-align: left;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    position: relative;
    padding-left: 1rem;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: translateY(-5px);
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Modern Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.025em;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2980b9 0%, #1f648b 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #09115e;
    transform: translateY(-2px);
    border-color: white;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(52,152,219,0.03)" points="0,200 1000,0 1000,800 0,1000"/></svg>') no-repeat center center;
    background-size: cover;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.about-text {
    font-size: 1.1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, white 0%, #fafbfc 100%);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
    border: 1px solid rgba(52, 152, 219, 0.1);
    position: relative;
    overflow: hidden;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2980b9);
}

.stat:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(52, 152, 219, 0.15);
}

.stat h3 {
    font-size: 2rem;
    color: #09115e;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #666;
    margin: 0;
}

.milestone {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: linear-gradient(135deg, white 0%, #fafbfc 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(52, 152, 219, 0.1);
    position: relative;
    overflow: hidden;
}

.milestone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #3498db, #2980b9);
}

.milestone img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.milestone-content h3 {
    color: #09115e;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* E Volitve Section */
.e-voting-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.e-voting-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(9,17,94,0.03)" points="0,0 1000,200 1000,1000 0,800"/></svg>') no-repeat center center;
    background-size: cover;
}

.e-voting-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.e-voting-text h3 {
    color: #09115e;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.e-voting-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
    border-left: 4px solid #3498db;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-item h4 {
    color: #09115e;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.benefit-item h5 {
    color: #09115e;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.benefit-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.e-voting-cta {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-card {
    background: linear-gradient(135deg, #09115e 0%, #3498db 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(9, 17, 94, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.cta-card h3 {
    color: white;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.e-voting-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #09115e;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.e-voting-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.e-voting-btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* Newsletter Section */
.newsletter-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #09115e 0%, #2c3e50 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,300 1000,0 1000,700 0,1000"/></svg>') no-repeat center center;
    background-size: cover;
}

.newsletter-section h2 {
    color: white;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.newsletter-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.newsletter-form-placeholder {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.temp-newsletter-form h3 {
    color: white;
    margin-bottom: 1rem;
}

.temp-newsletter-form p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.temp-newsletter-form .btn {
    background: white;
    color: #09115e;
}

.temp-newsletter-form .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Social Section */
.social-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #09115e 0%, #3498db 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.social-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.03)" points="0,0 1000,300 1000,1000 0,700"/></svg>') no-repeat center center;
    background-size: cover;
}

.social-section h2 {
    color: white;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.social-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 500;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.social-link svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.1);
}

/* eVolitve Page Styles */
.evolitve-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #FF9900 0%, #ff7700 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.evolitve-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.1)" points="0,0 1000,300 1000,1000 0,700"/></svg>') no-repeat center center;
    background-size: cover;
}

.evolitve-hero h1 {
    color: white;
    font-size: 4rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.evolitve-hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
}

.evolitve-features {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(52, 152, 219, 0.2);
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.features-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(52, 152, 219, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.features-list li:last-child {
    border-bottom: none;
}

.evolitve-benefits {
    margin-top: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.evolitve-cta {
    background: linear-gradient(135deg, #FF9900 0%, #e67700 100%);
}

.evolitve-roadmap {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.roadmap-timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: start;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 1.5rem;
    top: 3rem;
    bottom: -3rem;
    width: 2px;
    background: linear-gradient(180deg, #FF9900, #ff7700);
}

.timeline-marker {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #FF9900, #ff7700);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(255, 153, 0, 0.3);
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #FF9900;
}

.timeline-content h4 {
    color: #09115e;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    margin-bottom: 1rem;
    color: #666;
}

.timeline-date {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 153, 0, 0.1);
    color: #FF9900;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

.newsletter-iframe {
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: white;
    padding: 1.5rem 0;
    z-index: 10000;
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.cookie-text p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.cookie-btn.btn-primary {
    background: #3498db;
    color: white;
}

.cookie-btn.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-1px);
}

/* Leadership Pages */
.leadership-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #09115e 0%, #3498db 100%);
    color: white;
    text-align: center;
}

.leadership-hero h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.leadership-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
}

.leadership-section {
    padding: 80px 0;
    background: #f8f9fa;
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
}

/* Fixed Leadership Grid Layout */
.leadership-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

.leader-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 2rem;
    text-align: left;
}

.leader-card:hover {
    transform: translateY(-5px);
}

/* Vice Presidents Grid - Now properly aligned */
.vice-presidents-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.vice-presidents-grid .leader-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
}

.vice-presidents-grid .leader-card .leader-info {
    text-align: center;
}

.leader-image {
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.leader-image img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.vice-presidents-grid .leader-image img {
    width: 120px;
    height: 120px;
}

.leader-info h2,
.leader-info h3 {
    color: #09115e;
    margin-bottom: 0.5rem;
}

.position {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.contact-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
    letter-spacing: 0.025em;
}

.contact-button:hover {
    background: linear-gradient(135deg, #2980b9 0%, #1f648b 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

/* Committee Section */
.committee-section {
    padding: 80px 0;
    background: white;
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
}

.committee-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.committee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.committee-member {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid #3498db;
    transition: transform 0.3s ease;
}

.committee-member:hover {
    transform: translateY(-2px);
}

.committee-member h3 {
    color: #09115e;
    margin-bottom: 0.5rem;
}

.committee-member .position {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3498db;
}

.footer-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 6px;
}

.footer-social-link:hover {
    color: #3498db;
    background: rgba(52, 152, 219, 0.1);
}

.footer-social-link svg {
    width: 18px;
    height: 18px;
}

.copyright-footer {
    background: #09115e;
    color: white;
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: #3498db;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        backdrop-filter: blur(10px);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 40px 60px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0 30px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        gap: 2rem;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
    }

    .hero-content-left {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        order: 1;
    }

    .hero-image {
        padding-left: 0;
        margin: 1rem auto;
        max-width: 320px;
        width: 90%;
        order: 2;
    }

    .hero-text {
        text-align: center;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0 20px;
        order: 1;
    }

    .hero-subtitle-container {
        text-align: center;
        padding: 0 20px;
        order: 2;
    }

    .hero-buttons {
        justify-content: center;
        margin: 1.5rem auto;
        max-width: 400px;
        width: 100%;
        order: 3;
    }

    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        margin-bottom: 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .milestone {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 2rem;
    }

    .milestone img {
        max-width: 100%;
        height: auto;
        margin: 0 auto;
        display: block;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    /* E Volitve responsive */
    .e-voting-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .e-voting-benefits {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefit-item {
        padding: 1.5rem;
    }

    .cta-card {
        padding: 2rem 1.5rem;
    }

    /* Newsletter responsive */
    .newsletter-form-placeholder {
        padding: 2rem 1.5rem;
    }

    /* Cookie banner responsive */
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    /* eVolitve responsive */
    .evolitve-hero h1 {
        font-size: 2.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }

    .timeline-item::after {
        display: none;
    }

    .timeline-marker {
        margin: 0 auto 1rem auto;
    }

    /* Fixed mobile leadership layout */
    .leadership-grid {
        gap: 2rem;
        padding: 0 10px;
        width: calc(100% - 20px);
        max-width: 100%;
        box-sizing: border-box;
    }

    .vice-presidents-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
        padding: 0;
        box-sizing: border-box;
    }

    .leader-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
        margin: 0 auto;
        width: calc(100% - 20px);
        max-width: calc(100vw - 40px);
        box-sizing: border-box;
        overflow: hidden;
        min-width: 0;
    }

    .leader-image {
        margin: 0 auto;
        flex-shrink: 0;
    }

    .leader-info {
        text-align: center;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .committee-grid {
        grid-template-columns: 1fr;
        padding: 0;
        gap: 1rem;
        width: 100%;
    }

    .committee-member {
        margin: 0;
        width: 100%;
        box-sizing: border-box;
        padding: 1.5rem 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    /* Container fixes for mobile - prevent overflow */
    .container {
        padding: 0 10px;
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }

    .leadership-section .container {
        padding: 0 5px;
        width: 100%;
        box-sizing: border-box;
    }

    .committee-section .container {
        padding: 0 5px;
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
    }

    /* Enhanced mobile hero layout */
    .hero {
        padding: 100px 35px 60px;
    }

    .hero-container {
        padding: 0 25px;
        max-width: 100%;
    }

    .hero-text {
        padding: 0 15px;
    }

    .hero-subtitle-container {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-image {
        margin: 1rem auto;
        max-width: 280px;
        width: 85%;
    }

    .hero-buttons {
        margin: 1.5rem auto;
        max-width: 350px;
    }

    /* Better milestone layout on mobile */
    .milestone {
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .milestone img {
        width: 100%;
        max-width: 300px;
        height: auto;
        margin: 0 auto 1rem auto;
        display: block;
    }

    .milestone-content {
        text-align: center;
    }

    /* Leadership cards mobile optimization */
    .leader-image img {
        width: 120px;
        height: 120px;
    }

    .vice-presidents-grid .leader-image img {
        width: 120px;
        height: 120px;
    }

    .leader-card {
        padding: 1rem;
        margin: 0 auto 1rem auto;
        width: calc(100% - 20px);
        max-width: calc(100vw - 30px);
        box-sizing: border-box;
        overflow: hidden;
        min-width: 0;
    }

    .contact-button {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        display: block;
        text-align: center;
        margin: 0.5rem auto 0 auto;
        max-width: 200px;
    }

    /* Better container padding */
    .container {
        padding: 0 10px;
        width: 100%;
        box-sizing: border-box;
    }

    .leadership-section .container,
    .committee-section .container {
        padding: 0 10px;
        width: calc(100% - 20px);
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Committee members on mobile */
    .committee-member {
        padding: 1.5rem 1rem;
    }

    /* E Volitve mobile enhancements */
    .e-voting-text h3 {
        font-size: 1.5rem;
    }

    .benefit-icon {
        font-size: 2rem;
    }

    .e-voting-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Newsletter mobile */
    .newsletter-section {
        padding: 60px 0;
    }

    .newsletter-form-placeholder {
        padding: 2rem 1rem;
        margin: 0 10px;
    }

    /* Cookie banner mobile */
    .cookie-banner {
        padding: 1rem 0;
    }

    .cookie-content {
        padding: 0 15px;
    }

    .cookie-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .cookie-buttons {
        gap: 0.75rem;
    }
}

/* Smooth animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Focus states for accessibility */
.nav-link:focus,
.btn:focus,
.contact-button:focus,
.social-link:focus,
.footer-social-link:focus,
.e-voting-btn:focus,
.cookie-btn:focus {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}

/* Enhanced hover effects */
.btn:hover,
.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Smooth transitions for all interactive elements */
* {
    scroll-behavior: smooth;
}

.benefit-item,
.stat,
.milestone,
.leader-card,
.committee-member,
.cta-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Loading animation for images */
img {
    transition: opacity 0.3s ease;
}

/* Enhanced gradients */
.hero,
.social-section,
.newsletter-section {
    background-attachment: fixed;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .hero,
    .social-section,
    .newsletter-section {
        background-attachment: scroll;
    }
}

/* Print styles */
@media print {
    .navbar,
    .hero,
    .social-section,
    .footer {
        display: none;
    }

    .about-section,
    .leadership-section,
    .committee-section {
        background: white;
        box-shadow: none;
    }
}

/* Additional mobile styles for eVolitve */
@media (max-width: 480px) {
    .evolitve-hero {
        padding: 100px 15px 60px;
    }

    .evolitve-hero h1 {
        font-size: 2rem;
    }

    .evolitve-hero .hero-subtitle {
        font-size: 1rem;
    }

    .evolitve-features {
        padding: 1.5rem 1rem;
        margin-top: 2rem;
    }

    .features-list li {
        font-size: 0.9rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .timeline-content {
        padding: 1.5rem 1rem;
    }

    .newsletter-iframe {
        height: 400px;
    }

    .hero-buttons {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .hero-buttons .btn {
        min-width: 140px;
    }
}
