:root {
    --bg: #f6f7fb;
    --card: #ffffff;
    --muted: #4b5563;
    --accent: #6b21a8;
    --success: #16a34a;
    --danger: #dc2626;
    --border: #e6e9ef;
    --radius: 12px;
    --card-max-width: 800px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

html, body {
    height: 100%;
    margin: 0;
    overflow-x: hidden;
}

body {
    background: var(--bg);
    display: flex;
    flex-direction: column;
    height: 100vh;
    padding: 0;
    color: #111827;
}

main {
    margin-bottom: 5px;
}

.gap {
    height: 5vh;
}

.content-wrapper {
    height: 90vh;
    display: flex;
    flex-direction: column;
    margin-top: 0;
}

.card {
    position: relative;
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin: 1.1rem auto 0;
    width: calc(100% - 2.2rem);
    max-width: var(--card-max-width, 800px);
    padding: 0.625rem 1.5rem;
    text-align: center;
    height: 90vh;
    box-sizing: border-box;
}

.scrollable-card {
    max-height: 85vh;
    overflow-y: auto;
}

h1 {
    font-size: 18px;
    margin: 1.25rem 0 0.5rem;
    color: #111827;
}

p.lead {
    margin: 0 0 1.25rem;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.5;
}

.card-content {
    padding: 0px;
}

.card-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    order: 2;
    margin-top: 0.5rem;
    width: calc(100% - 2.2rem);
    max-width: var(--card-max-width, 800px);
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.nav-btn {
    position: relative;
    padding: 14px 28px;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 100%);
    color: #00ffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 
                0 0 25px rgba(0, 255, 255, 0.3), 
                inset 0 0 15px rgba(0, 255, 255, 0.15),
                0 0 0 2px #00ffff,
                0 0 0 4px #ff00ff;
    text-shadow: 0 0 12px rgba(0, 255, 255, 0.8);
    font-family: 'Courier New', monospace;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
}

/* Previous Task Button - Magenta Theme */
.nav-btn-prev {
    background: linear-gradient(135deg, #1a0f2e 0%, #2d1a4e 100%);
    color: #ff00ff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 
                0 0 25px rgba(255, 0, 255, 0.3), 
                inset 0 0 15px rgba(255, 0, 255, 0.15),
                0 0 0 2px #ff00ff,
                0 0 0 4px #00ffff;
    text-shadow: 0 0 12px rgba(255, 0, 255, 0.8);
    clip-path: polygon(10px 0, 100% 0, 100% 100%, 10px 100%, 0 50%);
}

/* Next Task Button - Cyan Theme */
.nav-btn-next {
    background: linear-gradient(135deg, #0f1a2e 0%, #1a2d4e 100%);
    color: #00ffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 
                0 0 25px rgba(0, 255, 255, 0.3), 
                inset 0 0 15px rgba(0, 255, 255, 0.15),
                0 0 0 2px #00ffff,
                0 0 0 4px #ff00ff;
    text-shadow: 0 0 12px rgba(0, 255, 255, 0.8);
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
}

.nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
}

.nav-btn-prev::before {
    clip-path: polygon(10px 0, 100% 0, 100% 100%, 10px 100%, 0 50%);
}

.nav-btn-next::before {
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
}

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

.nav-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 
                0 0 40px rgba(0, 255, 255, 0.6), 
                inset 0 0 20px rgba(0, 255, 255, 0.25),
                0 0 0 2px #00ffff,
                0 0 0 4px #ff00ff,
                0 0 0 6px #00ffff;
    text-shadow: 0 0 18px rgba(0, 255, 255, 1);
    animation: navBtnGlow 2s ease-in-out infinite;
}

/* Previous Button Hover - Magenta Glow */
.nav-btn-prev:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 
                0 0 40px rgba(255, 0, 255, 0.6), 
                inset 0 0 20px rgba(255, 0, 255, 0.25),
                0 0 0 2px #ff00ff,
                0 0 0 4px #00ffff,
                0 0 0 6px #ff00ff;
    text-shadow: 0 0 18px rgba(255, 0, 255, 1);
    animation: navBtnPrevGlow 2s ease-in-out infinite;
}

/* Next Button Hover - Cyan Glow */
.nav-btn-next:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 
                0 0 40px rgba(0, 255, 255, 0.6), 
                inset 0 0 20px rgba(0, 255, 255, 0.25),
                0 0 0 2px #00ffff,
                0 0 0 4px #ff00ff,
                0 0 0 6px #00ffff;
    text-shadow: 0 0 18px rgba(0, 255, 255, 1);
    animation: navBtnNextGlow 2s ease-in-out infinite;
}

.nav-btn:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4), 
                0 0 20px rgba(0, 255, 255, 0.4), 
                inset 0 0 15px rgba(0, 255, 255, 0.3),
                0 0 0 2px #00ffff,
                0 0 0 4px #ff00ff;
}

.nav-btn-prev:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4), 
                0 0 20px rgba(255, 0, 255, 0.4), 
                inset 0 0 15px rgba(255, 0, 255, 0.3),
                0 0 0 2px #ff00ff,
                0 0 0 4px #00ffff;
}

.nav-btn-next:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4), 
                0 0 20px rgba(0, 255, 255, 0.4), 
                inset 0 0 15px rgba(0, 255, 255, 0.3),
                0 0 0 2px #00ffff,
                0 0 0 4px #ff00ff;
}

@keyframes navBtnGlow {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 
                    0 0 40px rgba(0, 255, 255, 0.6), 
                    inset 0 0 20px rgba(0, 255, 255, 0.25),
                    0 0 0 2px #00ffff,
                    0 0 0 4px #ff00ff,
                    0 0 0 6px #00ffff;
    }
    50% {
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 
                    0 0 50px rgba(0, 255, 255, 0.8), 
                    inset 0 0 25px rgba(0, 255, 255, 0.35),
                    0 0 0 2px #ff00ff,
                    0 0 0 4px #00ffff,
                    0 0 0 6px #ff00ff;
    }
}

@keyframes navBtnPrevGlow {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 
                    0 0 40px rgba(255, 0, 255, 0.6), 
                    inset 0 0 20px rgba(255, 0, 255, 0.25),
                    0 0 0 2px #ff00ff,
                    0 0 0 4px #00ffff,
                    0 0 0 6px #ff00ff;
    }
    50% {
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 
                    0 0 50px rgba(255, 0, 255, 0.8), 
                    inset 0 0 25px rgba(255, 0, 255, 0.35),
                    0 0 0 2px #00ffff,
                    0 0 0 4px #ff00ff,
                    0 0 0 6px #00ffff;
    }
}

@keyframes navBtnNextGlow {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 
                    0 0 40px rgba(0, 255, 255, 0.6), 
                    inset 0 0 20px rgba(0, 255, 255, 0.25),
                    0 0 0 2px #00ffff,
                    0 0 0 4px #ff00ff,
                    0 0 0 6px #00ffff;
    }
    50% {
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 
                    0 0 50px rgba(0, 255, 255, 0.8), 
                    inset 0 0 25px rgba(0, 255, 255, 0.35),
                    0 0 0 2px #ff00ff,
                    0 0 0 4px #00ffff,
                    0 0 0 6px #ff00ff;
    }
}

/* Navigation Icons */
.nav-icon {
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.nav-btn-prev .nav-icon {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}

.nav-btn-next .nav-icon {
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.nav-btn-prev:hover .nav-icon {
    transform: translateX(-3px);
    text-shadow: 0 0 15px rgba(255, 0, 255, 1);
}

.nav-btn-next:hover .nav-icon {
    transform: translateX(3px);
    text-shadow: 0 0 15px rgba(0, 255, 255, 1);
}

.nav-btn-prev:hover {
    color: #ff00ff;
    text-shadow: 0 0 18px rgba(255, 0, 255, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 
                0 0 40px rgba(255, 0, 255, 0.6), 
                inset 0 0 20px rgba(255, 0, 255, 0.25),
                0 0 0 2px #ff00ff,
                0 0 0 4px #00ffff,
                0 0 0 6px #ff00ff;
    animation: navBtnPrevGlow 2s ease-in-out infinite;
}

.nav-btn-next:hover {
    color: #00ffff;
    text-shadow: 0 0 18px rgba(0, 255, 255, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 
                0 0 40px rgba(0, 255, 255, 0.6), 
                inset 0 0 20px rgba(0, 255, 255, 0.25),
                0 0 0 2px #00ffff,
                0 0 0 4px #ff00ff,
                0 0 0 6px #00ffff;
    animation: navBtnNextGlow 2s ease-in-out infinite;
}

@keyframes navBtnPrevGlow {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 
                    0 0 30px rgba(255, 0, 255, 0.6), 
                    inset 0 0 15px rgba(255, 0, 255, 0.2),
                    0 0 0 2px #ff00ff,
                    0 0 0 4px #00ffff,
                    0 0 0 6px #ff00ff;
    }
    50% {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 
                    0 0 40px rgba(255, 0, 255, 0.8), 
                    inset 0 0 20px rgba(255, 0, 255, 0.3),
                    0 0 0 2px #00ffff,
                    0 0 0 4px #ff00ff,
                    0 0 0 6px #00ffff;
    }
}

@keyframes navBtnNextGlow {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 
                    0 0 30px rgba(0, 255, 0, 0.6), 
                    inset 0 0 15px rgba(0, 255, 0, 0.2),
                    0 0 0 2px #00ff00,
                    0 0 0 4px #00ffff,
                    0 0 0 6px #00ff00;
    }
    50% {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 
                    0 0 40px rgba(0, 255, 0, 0.8), 
                    inset 0 0 20px rgba(0, 255, 0, 0.3),
                    0 0 0 2px #00ffff,
                    0 0 0 4px #00ff00,
                    0 0 0 6px #00ffff;
    }
}

.nav-icon {
    font-size: 1rem;
    font-weight: bold;
    filter: drop-shadow(0 0 5px currentColor);
    transition: transform 0.3s ease;
}

.nav-btn:hover .nav-icon {
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px currentColor);
}

.message {
    display: none;
    margin-top: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 1rem;
    border: none;
    white-space: normal;
    text-align: center;
    justify-content: center;
    width: auto;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.message.success {
    color: #22c55e;
    font-weight: 500;
    font-size: 1rem;
    border: none;
    background: none;
    display: block;
}

.message.success::before {
    content: "✅ ";
    font-size: 1.1em;
}

.message.failure {
    color: #ef4444;
    font-weight: 500;
    font-size: 1rem;
    border: none;
    background: none;
    flex-direction: row;
    display: block;
}

.message.failure::before {
    content: "❌ ";
    font-size: 1.1em;
}

.message.detailed-failure {
    color: #6b1220;
    font-weight: 500;
    font-size: 1rem;
    border: none;
    background: none;
    flex-direction: row;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .card {
        padding: 0.5rem 1rem;
        max-width: none;
        height: calc(80vh - 20px);
        width: 90%;
        margin: 0.1rem auto 20px;
        box-sizing: border-box;
    }

    h1 {
        font-size: 1.2rem;
        margin: 1rem 0 0.4rem;
    }

    p.lead {
        font-size: 1.05rem;
        margin: 0 0 1rem;
    }

    .nav-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        gap: 0.4rem;
    }

    .nav-icon {
        font-size: 0.9rem;
    }

    .message {
        font-size: 0.9rem;
        padding: 0.6rem 0.8rem;
        margin-top: 0.6rem;
    }

    .card-nav {
        width: 90%;
        height: auto;
        position: fixed;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
        background: var(--card);
        padding: 8px;
        border-radius: var(--radius);
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        box-sizing: border-box;
    }

    .nav-btn:hover {
        transform: none;
    }
}

#expectedValue {
    color: #22c55e;
}

.tasks-overview-container {
    text-align: center;
    margin-top: 20px;
}

.tasks-overview-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.tasks-overview-btn:hover {
    background-color: #0056b3;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 100%);
    border: 2px solid #00ffff;
    border-radius: 50%;
    color: #00ffff;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    display: none;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 
                0 0 25px rgba(0, 255, 255, 0.3), 
                inset 0 0 15px rgba(0, 255, 255, 0.15);
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.back-to-top:hover {
    background: linear-gradient(135deg, #1a1a3e 0%, #0f0f23 100%);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 
                0 0 40px rgba(0, 255, 255, 0.6), 
                inset 0 0 20px rgba(0, 255, 255, 0.25);
    border-color: #ff00ff;
    color: #ff00ff;
    text-shadow: 0 0 15px rgba(255, 0, 255, 1);
    animation: backToTopGlow 2s ease-in-out infinite;
}

.back-to-top-icon {
    display: block;
    line-height: 1;
    transform: translateY(2px);
}

@keyframes backToTopGlow {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 
                    0 0 40px rgba(0, 255, 255, 0.6), 
                    inset 0 0 20px rgba(0, 255, 255, 0.25);
        border-color: #00ffff;
    }
    50% {
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 
                    0 0 50px rgba(0, 255, 255, 0.8), 
                    inset 0 0 25px rgba(0, 255, 255, 0.35);
        border-color: #ff00ff;
    }
}

@media (max-height: 768px) {
    .card {
        min-height: 25rem;
    }
}

@media (max-width: 480px) {
    .card {
        padding: 0.3rem 0.6rem;
        max-width: none;
        min-height: calc(40rem - 20px);
        width: 90%;
        margin: 1.5rem auto 20px;
        box-sizing: border-box;
    }

    h1 {
        font-size: 1rem;
        margin: 0.6rem 0 0.25rem;
    }

    p.lead {
        font-size: 1rem;
        margin: 0 0 0.6rem;
    }

    .nav-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
        gap: 0.25rem;
    }

    .nav-icon {
        font-size: 0.75rem;
    }

    .message {
        font-size: 0.85rem;
        padding: 0.5rem 0.7rem;
        margin-top: 0.4rem;
    }

    .card-nav {
        width: 90%;
        height: auto;
        position: fixed;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
        background: var(--card);
        padding: 8px;
        border-radius: var(--radius);
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }

    .nav-btn:hover {
        transform: none;
    }

    .nav-btn-prev {
}

@media (max-width: 375px) {
    .card {
        padding: 0.25rem 0.5rem;
        max-width: none;
        min-height: calc(40rem - 20px);
        width: 90%;
        margin: 1.5rem auto 20px;
        box-sizing: border-box;
    }

    h1 {
        font-size: 0.9rem;
        margin: 0.5rem 0 0.2rem;
    }

    p.lead {
        font-size: 0.95rem;
        margin: 0 0 0.5rem;
    }

    .nav-btn {
        padding: 6px 14px;
        font-size: 0.8rem;
        gap: 0.2rem;
    }

    .nav-icon {
        font-size: 0.7rem;
    }

    .message {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
        margin-top: 0.35rem;
    }

    .card-nav {
        width: 90%;
        height: auto;
        position: fixed;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
        background: var(--card);
        padding: 8px;
        border-radius: var(--radius);
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }

    .nav-btn:hover {
        transform: none;
    }
}

#expectedValue {
    color: #22c55e;
}

.tasks-overview-container {
    text-align: center;
    margin-top: 20px;
}

.tasks-overview-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.tasks-overview-btn:hover {
    background-color: #0056b3;
}

/* Index Page Specific Styles */
:root {
    --bg: #f6f7fb;
    --card: #ffffff;
    --muted: #6b7280;
    --accent: #6b21a8;
    --success: #16a34a;
    --danger: #dc2626;
    --border: #e6e9ef;
    --radius: 12px;
    --card-max-width: 900px;
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --success-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

html, body {
    height: 100%;
    margin: 0;
}

body {
    background: var(--bg);
    display: flex;
    flex-direction: column;
    height: 100vh;
    padding: 0;
    color: #111827;
}

#header-placeholder {
}

.site-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 0;
    margin: 0;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: block !important;
    visibility: visible !important;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home-link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 6px;
    transition: opacity 0.3s ease;
}

.home-link:hover {
    opacity: 0.8;
}

.home-icon {
    width: 20px;
    height: 20px;
}

.home-text {
    font-size: 14px;
    font-weight: 500;
}

.hamburger {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-wrapper {
    flex: 1;
    max-width: var(--card-max-width);
    margin: 0 auto;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}

.card {
    position: relative;
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    margin-bottom: 20px;
}

.scrollable-card {
    max-height: 85vh;
    overflow-y: auto;
}

.card-content {
    padding: 32px;
}

.card-content h1 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-align: center;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-content h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-align: center;
}

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.card-content p {
    color: var(--muted);
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-content a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.card-content a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero-section {
    margin: 3rem 0;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #667eea;
    text-align: center;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-left-color: #764ba2;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--muted);
    font-weight: 500;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #667eea;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-left-color: #764ba2;
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--muted);
    font-weight: 500;
    line-height: 1.6;
}

.benefit-item {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.benefit-item::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* CTA Section */
.cta-section {
    padding: 2rem 1rem;
}

.cta-primary, .cta-secondary {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0.5rem;
}

.cta-primary {
    background: var(--primary-gradient);
    color: white;
}

.cta-secondary {
    background: var(--secondary-gradient);
    color: white;
}

.cta-primary:hover, .cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}