@import url('https://fonts.googleapis.com/css2?family=Didact+Gothic&display=swap');

:root {
    --background-panel: var(--linearBackground);
    --foreground-panel: var(--bodyColor);
}

main {
    font-family: 'Didact Gothic', sans-serif;
    font-weight: normal;
}

/* Page Layout */
.page {
    padding-top: 40px;
    padding-bottom: 60px;
    color: var(--bodyColor);
}

/* Title Header */
.title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: var(--mainColor);
    margin-bottom: 20px;
}

/* Intro & Main Heading */
.intro-highlight {
    font-size: 1.5rem;
    color: var(--mainColor);
    font-weight: 600;
    text-align: center;
}

.main-heading {
    font-size: 2rem;
    color: var(--bodyColor);
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

/* Description Panel */
.custom-description {
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    color: var(--cartColor);
    font-size: 1.125rem;
    line-height: 1.7;
    max-width: 850px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.05);
}
.custom-description p {
    margin-bottom: 18px;
}

/* Custom List */
.custom-list {
    margin-top: 20px;
    padding-left: 20px;
}
.custom-list li {
    margin-bottom: 12px;
    list-style: disc;
}

/* CTA Button Wrapper */
.custom-button {
    color: var(--bodyColor);
    text-align: center;
    margin-top: 30px;
}

/* CTA Button */
.custom-button button.btn-primary {
    background-color: var(--mainColor);
    color: var(--cartButtonColor);
    font-size: 1.125rem;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.custom-button button.btn-primary:hover {
    background-color: var(--cartButtonHoverBackground);
    color: var(--cartButtonColor);
    transform: scale(1.05);
}