/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&family=Roboto+Mono:wght@500&display=swap');

/* --- CSS Variables --- */
:root {
    --color-background: #111827; /* Cool Gray 900 */
    --color-surface: #1F2937; /* Cool Gray 800 */
    --color-text-primary: #F9FAFB; /* Gray 50 */
    --color-text-secondary: #9CA3AF; /* Gray 400 */
    --color-accent: #34D399; /* Emerald 400 */
    --color-accent-hover: #10B981; /* Emerald 500 */
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Roboto Mono', monospace;
}

/* --- Global Styles & Resets --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-background);
    color: var(--color-text-primary);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3 {
    font-family: var(--font-secondary);
    color: var(--color-text-primary);
    line-height: 1.3;
}

a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-accent);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* --- Header --- */
.header {
    background-color: rgba(17, 24, 39, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-surface);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-text-primary);
}
.header__logo:hover {
    color: var(--color-text-primary);
}

.header__nav-list {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header__nav-link {
    font-size: 1rem;
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

.header__nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease-out;
}

.header__nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header__nav-link--cta {
    background-color: var(--color-accent);
    color: var(--color-background);
    padding: 8px 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.header__nav-link--cta:hover {
    background-color: var(--color-accent-hover);
    color: var(--color-background);
}
.header__nav-link--cta::after {
    display: none;
}

.header__burger-menu {
    display: none; /* Hidden on desktop */
    background: none;
    border: none;
    color: var(--color-text-primary);
    cursor: pointer;
}

/* --- Footer --- */
.footer {
    background-color: var(--color-surface);
    padding: 60px 0;
    border-top: 1px solid rgba(156, 163, 175, 0.1);
}

.footer__container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer__logo {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    color: var(--color-text-primary);
    display: inline-block;
    margin-bottom: 15px;
}

.footer__copyright {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.footer__title {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--color-text-primary);
    font-family: var(--font-primary);
    font-weight: 500;
}

.footer__list li {
    margin-bottom: 10px;
}

.footer__link {
    font-size: 0.95rem;
}

.footer__list--contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer__icon {
    width: 18px;
    height: 18px;
    color: var(--color-accent);
    margin-top: 2px;
    flex-shrink: 0;
}

.footer__address {
    font-style: normal;
    color: var(--color-text-secondary);
}


/* --- Responsive (Mobile-first) --- */
@media (max-width: 992px) {
    .footer__container {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .header__nav {
        display: none; /* Hide nav on mobile */
    }
    .header__burger-menu {
        display: block; /* Show burger on mobile */
    }
}

@media (max-width: 576px) {
    .footer__container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer__list--contact li {
        justify-content: center;
    }
}

/* --- Button --- */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.button--primary {
    background-color: var(--color-accent);
    color: var(--color-background);
}

.button--primary:hover {
    background-color: var(--color-accent-hover);
    color: var(--color-background);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(52, 211, 153, 0.2);
}

.button i {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.button:hover i {
    transform: translateX(3px);
}

/* --- Hero Section --- */
.hero {
    padding: 100px 0;
    overflow: hidden;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.hero__title {
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero__title .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero__description {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero__image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__image {
    border-radius: 10px;
    position: relative;
    z-index: 2;
}

.hero__image-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--color-surface);
    border-radius: 10px;
    transform: rotate(-5deg);
    transition: transform 0.4s ease-out;
}

.hero__image-wrapper:hover .hero__image-bg {
    transform: rotate(3deg) scale(1.05);
}

/* --- Responsive (Hero Section) --- */
@media (max-width: 992px) {
    .hero {
        padding: 80px 0;
    }
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero__content {
        order: 2;
    }
    .hero__image-wrapper {
        order: 1;
        margin-bottom: 60px;
    }
    .hero__description {
        margin-left: auto;
        margin-right: auto;
    }
    .hero__title {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 60px 0;
    }
    .hero__title {
        font-size: 2rem;
    }
    .hero__description {
        font-size: 1rem;
    }
}

/* --- Section Header --- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header__subtitle {
    font-family: var(--font-secondary);
    color: var(--color-accent);
    margin-bottom: 10px;
    display: block;
    font-size: 1rem;
}

.section-header__title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header__description {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* --- Courses Section --- */
.courses {
    padding: 100px 0;
    background-color: var(--color-surface);
}

.courses__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.course-card {
    background-color: var(--color-background);
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.course-card__icon-wrapper {
    width: 50px;
    height: 50px;
    background-color: var(--color-surface);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.course-card__icon-wrapper i {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
}

.course-card:hover .course-card__icon-wrapper {
    background-color: var(--color-accent);
}

.course-card:hover .course-card__icon-wrapper i {
    color: var(--color-background);
}

.course-card__title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-family: var(--font-primary);
    font-weight: 700;
}

.course-card__description {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.6;
    height: 90px; /* Fixed height for alignment */
}

.course-card__tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.course-card__tech span {
    background-color: var(--color-surface);
    color: var(--color-text-secondary);
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 15px;
    font-family: var(--font-secondary);
}

/* --- Responsive (Courses Section) --- */
@media (max-width: 1200px) {
    .courses__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .courses {
        padding: 80px 0;
    }
    .section-header__title {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .courses__grid {
        grid-template-columns: 1fr;
    }
    .course-card__description {
        height: auto; /* Auto height on mobile stack */
    }
}

/* --- Process Section --- */
.process {
    padding: 100px 0;
    background-color: var(--color-background); /* Back to the main background */
}

.process__steps-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    position: relative;
}

/* Dashed line connecting steps on desktop */
.process__steps-wrapper::before {
    content: '';
    position: absolute;
    top: 45px; /* Vertically center with the icons */
    left: 5%;
    right: 5%;
    height: 2px;
    background-image: repeating-linear-gradient(to right, var(--color-accent) 0, var(--color-accent) 4px, transparent 4px, transparent 10px);
    z-index: 0;
}

.process-step {
    background-color: var(--color-surface);
    border-radius: 10px;
    padding: 30px;
    flex: 1;
    z-index: 1;
    border: 1px solid var(--color-surface);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
}

.process-step__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.process-step__number {
    font-family: var(--font-secondary);
    font-size: 3rem;
    font-weight: 500;
    color: rgba(249, 250, 251, 0.1); /* Almost transparent white */
    line-height: 1;
}

.process-step__icon-wrapper {
    width: 60px;
    height: 60px;
    border: 2px solid var(--color-accent);
    background-color: var(--color-background);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.process-step__icon-wrapper i {
    width: 28px;
    height: 28px;
    color: var(--color-accent);
}

.process-step__title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.process-step__description {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* --- Responsive (Process Section) --- */
@media (max-width: 992px) {
    .process__steps-wrapper {
        flex-direction: column;
        gap: 25px;
    }
    .process__steps-wrapper::before {
        /* Change line to be vertical */
        top: 5%;
        bottom: 5%;
        left: 54px; /* Align with icons */
        right: auto;
        width: 2px;
        height: auto;
        background-image: repeating-linear-gradient(to bottom, var(--color-accent) 0, var(--color-accent) 4px, transparent 4px, transparent 10px);
    }
    .process-step {
        display: flex;
        align-items: center;
        gap: 25px;
        padding: 25px;
    }
    .process-step__header {
        margin-bottom: 0;
        flex-direction: column-reverse; /* Put icon above number */
        gap: 15px;
    }
    .process-step__number {
        font-size: 1.5rem;
        color: rgba(249, 250, 251, 0.2);
    }
}

@media (max-width: 576px) {
     .process-step {
        flex-direction: column;
        text-align: center;
        align-items: center;
     }
     .process__steps-wrapper::before {
        display: none; /* Hide line on very small screens */
     }
     .process-step__header {
        flex-direction: row;
        align-items: center;
        gap: 20px;
        margin-bottom: 20px;
     }
}

/* --- Mentors Section --- */
.mentors {
    padding: 100px 0;
    background-color: var(--color-surface);
}

.mentors__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.mentor-card {
    background-color: var(--color-background);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    position: relative;
    border: 1px solid var(--color-surface);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mentor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.mentor-card__image-wrapper {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.mentor-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.mentor-card:hover .mentor-card__image {
    transform: scale(1.05);
    filter: brightness(0.9);
}

.mentor-card__content {
    padding: 25px;
}

.mentor-card__name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.mentor-card__specialization {
    font-family: var(--font-secondary);
    color: var(--color-accent);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.mentor-card__bio {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.mentor-card__socials {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.4s ease, bottom 0.4s ease;
}

.mentor-card:hover .mentor-card__socials {
    opacity: 1;
    bottom: 25px;
}

.mentor-card__social-link {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(17, 24, 39, 0.8); /* --color-background with alpha */
    backdrop-filter: blur(5px);
    border-radius: 50%;
    color: var(--color-text-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.mentor-card__social-link:hover {
    background-color: var(--color-accent);
    color: var(--color-background);
}

.mentor-card__social-link i {
    width: 20px;
    height: 20px;
}

/* --- Responsive (Mentors Section) --- */
@media (max-width: 1200px) {
    .mentors__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .mentors__grid {
        grid-template-columns: 1fr;
    }
    .mentor-card__image-wrapper {
        height: 320px;
    }
}

/* --- Reviews Section --- */
.reviews {
    padding: 100px 0;
    background-color: var(--color-background);
}

.testimonial-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-slider__track-container {
    overflow: hidden;
    border-radius: 10px;
}

.testimonial-slider__track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    flex: 0 0 100%;
    min-width: 100%;
    background-color: var(--color-surface);
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: center;
}

.testimonial-card__image-wrapper {
    width: 100%;
    height: 100%;
    min-height: 350px;
}

.testimonial-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card__content {
    padding: 40px;
    padding-left: 0;
    position: relative;
}

.testimonial-card__content::before {
    content: '“';
    font-family: serif;
    font-size: 10rem;
    color: rgba(249, 250, 251, 0.05);
    position: absolute;
    top: -20px;
    left: -30px;
    line-height: 1;
    z-index: 0;
}

.testimonial-card__quote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--color-text-primary);
    line-height: 1.6;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.testimonial-card__name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.testimonial-card__role {
    color: var(--color-accent);
    font-family: var(--font-secondary);
}

.testimonial-slider__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-surface);
    border: 1px solid transparent;
    color: var(--color-text-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}
.testimonial-slider__btn:hover {
    background-color: var(--color-accent);
    color: var(--color-background);
    border-color: var(--color-accent);
}

.testimonial-slider__btn--prev {
    left: -25px;
}
.testimonial-slider__btn--next {
    right: -25px;
}

/* --- Responsive (Reviews Section) --- */
@media (max-width: 992px) {
    .testimonial-card {
        grid-template-columns: 1fr;
    }
    .testimonial-card__image-wrapper {
        height: 300px;
    }
    .testimonial-card__content {
        padding: 40px;
    }
    .testimonial-card__content::before {
        left: 10px;
    }
    .testimonial-slider__btn--prev {
        left: 10px;
    }
    .testimonial-slider__btn--next {
        right: 10px;
    }
}

@media (max-width: 576px) {
    .reviews {
        padding: 80px 0;
    }
    .testimonial-card__quote {
        font-size: 1.1rem;
    }
    .testimonial-slider__btn {
        width: 40px;
        height: 40px;
        bottom: -20px;
        top: auto;
        transform: translateY(0);
    }
    .testimonial-slider__btn--prev {
        left: calc(50% - 45px);
    }
    .testimonial-slider__btn--next {
        right: calc(50% - 45px);
    }
    .testimonial-slider {
        padding-bottom: 60px; /* Space for buttons */
    }
}
/* --- Contact Section --- */
.contact {
    padding: 100px 0;
    background-color: var(--color-surface);
}

.contact__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact__info .section-header {
    text-align: left;
    margin: 0 0 30px 0;
}
.contact__info .section-header__description {
    max-width: none;
}
.contact__details {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact__detail-item {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: var(--color-text-secondary);
}
.contact__detail-item i {
    color: var(--color-accent);
    width: 24px;
    height: 24px;
}

/* Form Styles */
.contact__form-wrapper {
    background-color: var(--color-background);
    padding: 40px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-secondary);
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--color-surface);
    border: 1px solid var(--color-surface);
    border-radius: 5px;
    color: var(--color-text-primary);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-input:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.2);
}

.form-group--checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}
.form-group--checkbox label {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}
.form-group--checkbox a {
    color: var(--color-accent);
    text-decoration: underline;
}

.form-error-message {
    color: #F87171; /* Red 400 */
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}
.form-group.invalid .form-input,
.form-group.invalid input[type="checkbox"] {
    border-color: #F87171;
}
.form-group.invalid .form-error-message {
    display: block;
}

.contact-form__button {
    width: 100%;
}

.form-success-message {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-background);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    z-index: 5;
}
.form-success-message.visible {
    opacity: 1;
    visibility: visible;
}
.form-success-message i {
    width: 60px;
    height: 60px;
    color: var(--color-accent);
    margin-bottom: 20px;
}
.form-success-message h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}


/* --- Responsive (Contact Section) --- */
@media (max-width: 992px) {
    .contact__container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .contact__info .section-header {
        text-align: center;
    }
    .contact__details {
        justify-content: center;
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .contact {
        padding: 80px 0;
    }
    .contact__form-wrapper {
        padding: 25px;
    }
}


/* --- Cookie Popup --- */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    background-color: var(--color-surface);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--color-background);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transform: translateY(200%);
    transition: transform 0.5s ease-in-out;
    z-index: 200;
}

.cookie-popup.visible {
    transform: translateY(0);
}

.cookie-popup__text {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.cookie-popup__text a {
    color: var(--color-accent);
    text-decoration: underline;
}

.cookie-popup__button {
    padding: 8px 16px;
    flex-shrink: 0;
}

/* --- Responsive (Cookie) --- */
@media (max-width: 576px) {
    .cookie-popup {
        flex-direction: column;
        text-align: center;
    }
}
/* --- Policy & Text Pages Styles --- */
.pages {
    padding: 80px 0;
}

.pages h1, .pages h2 {
    font-family: var(--font-secondary);
}

.pages h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--color-surface);
    padding-bottom: 20px;
}

.pages h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
}

.pages p, .pages li {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.pages ul {
    list-style: disc;
    padding-left: 25px;
}

.pages li {
    margin-bottom: 15px;
}

.pages a {
    color: var(--color-accent);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 4px;
}
.pages a:hover {
    color: var(--color-accent-hover);
}

.pages strong {
    color: var(--color-text-primary);
    font-weight: 500;
}