.service-section {
    padding: 0.5rem;
    /*background-color: whitesmoke;*/
}

.service-section-title {
    color: var(--primary-color);
}

.section-catalog {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 0.75rem;
    row-gap: 0.75rem;
    margin-top: 1rem;
}

/*.catalog-article {*/
/*    !* REMOVED: Heavy border. Rely on shadow for separation. *!*/
/*    border: none;*/

/*    !* INCREASED: Softer, friendlier look. *!*/
/*    border-radius: 1rem;*/

/*    !* INCREASED: Gives content more breathing room. *!*/
/*    padding: 1rem;*/

/*    background-color: white;*/

/*    !* MODERN SHADOW: Centered, softer, and layered for subtle depth. *!*/
/*    box-shadow:*/
/*        !* Subtle, large shadow for overall lift *!*/
/*            0 10px 15px -3px rgba(0, 0, 0, 0.1),*/
/*                !* Sharper, smaller shadow for edge definition *!*/
/*            0 4px 6px -2px rgba(0, 0, 0, 0.05);*/

/*    display: flex;*/
/*    flex-direction: column;*/

/*    !* INCREASED: Consistent internal spacing. *!*/
/*    gap: 1rem;*/
/*}*/

.catalog-article {
    /* 1. GLASS BACKGROUND: Light, highly transparent white/gray */
    background-color: rgba(255, 255, 255, 0.15);

    /* 2. BLUR EFFECT: Creates the frosted glass look, letting whitesmoke show through */
    backdrop-filter: blur(12px);

    /* 3. BORDER: Thin, visible border using your strong blue/white */
    border: 1px solid rgba(255, 255, 255, 0.3); /* Subtly raised light edge */
    border-bottom: 3px solid var(--primary-color); /* Primary color accent */

    /* 4. SHADOW: Soft, less aggressive shadow */
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);

    /* 5. TEXT COLOR: Must be dark for legibility over the light background */
    color: black;

    border-radius: 1.5rem;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}



.article-title {

}

.article-content {

}

dialog {
    border: none;
    position: fixed;
    top: 0;
    left: 0;
    margin: auto;
    border-radius: 0.25rem;
}

dialog::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
}

.dialog-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: whitesmoke;
    padding: 0.75rem;
    gap: 1rem;
}

.form-row {
    display: flex;
    justify-content: space-between;
    padding-inline: 1rem;
    width: 100%;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.column {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}