h2,
.prose h2 {
    font-weight: 700 !important;
}
html {
    overflow-y: scroll;
}
:root {
    --color-primary: #1F315C;
    --color-secondary: #1B7373;
    --color-primary-light: #E8EEF8;
    --color-secondary-light: #E6F4F4;
    --color-text: #1F2937;
    --color-muted: #6B7280;
    --color-bg: #F7FAFC;
    --color-white: #FFFFFF;
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--color-text);
    background-color: var(--color-bg);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    padding: 0.875rem 1.75rem;
    border-radius: 0.75rem;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s ease;
}

.btn-primary:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

.section-title {
    font-size: 2.25rem;
    line-height: 1.2;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    padding: 2rem;
}

.prose p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.prose ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 95%;
    max-height: 95vh;
    border-radius: 12px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 50px;
    cursor: pointer;
    line-height: 1;
}

@media (max-width: 768px) {
    .lightbox {
		display: none !important;
		visibility: hidden !important;
		opacity: 0 !important;
	}
}