.landing-page {
    /* min-height: 80vh; */
    min-height: 100%;  /* занимает всю высоту родителя (main-content) */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    margin: -1rem;
    padding: 1rem;
}

.container {
    max-width: 560px;
    width: 100%;
    margin: 0 auto;
}

.card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.elevation-2 {
    box-shadow: 0 2px 4px -1px rgba(0,0,0,0.2), 
                0 4px 5px 0 rgba(0,0,0,0.14), 
                0 1px 10px 0 rgba(0,0,0,0.12);
}

.card-content {
    padding: 2rem;
    text-align: center;
}

.material-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.mat-h1 {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.03125em;
    margin: 0 0 1rem 0;
    color: rgba(0, 0, 0, 0.87);
}

.mat-body {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.03125em;
    margin: 0 0 1.5rem 0;
    color: rgba(0, 0, 0, 0.6);
}

.divider {
    height: 1px;
    background-color: rgba(0, 0, 0, 0.12);
    margin: 1.5rem 0;
}

.mat-caption {
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0.03333em;
    margin: 0;
    color: rgba(0, 0, 0, 0.38);
}

/* Material Design отступы */
.mt-3 {
    margin-top: 1rem;
}