.customPage h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--mainColor);
}

.custom-alert {
    text-align: center;
    font-weight: bold;
    margin-bottom: 2rem;
    color: var(--mainColor);
}

.custom-image {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.custom-description {
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    color: var(--bodyColor);
}

.custom-description p {
    margin-bottom: 1.5rem;
}

.studio-note {
    display: block;
    text-align: center;
    font-size: 1.25rem;
    margin-top: 3rem;
    color: var(--mainColor);
}

.custom-button {
    text-align: center;
    margin: 2rem 0;
}

.custom-button .btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    background-color: var(--mainColor);
    color: var(--bodyColor);
    transition: background-color 0.3s ease;
    display: inline-block;
}

.custom-button .btn:hover {
    background-color: var(--downloadButtonHoverBackground);
    color: var(--downloadButtonHoverColor);
}

.custom-closed {
    text-align: center;
    font-weight: bold;
    color: var(--removeCartButtonBackground);
    margin: 2rem 0;
}