:root {
    --bg-page: #ffffff; 
    --glass-color: rgba(255, 255, 255, 0.85);
    --border-accent: #59BDB1; 
    --accent-deep: #29807d;   
    --text-primary: #283d3b; 
    
    --radius-3xl: 1.5rem;
    --blur-md: 20px;
    --font-family: 'Onest', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-page);
    color: var(--text-primary);
    font-family: var(--font-family);
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.glass-container {
    width: 100%;
    max-width: 680px;
    background-color: var(--glass-color);
    backdrop-filter: blur(var(--blur-md));
    -webkit-backdrop-filter: blur(var(--blur-md));
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-3xl);
    padding: 4rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    
    display: flex;
    flex-direction: column;
    align-items: center; 
}

.logo {
    width: 80%;
    height: auto; 
    margin-bottom: 3.5rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.services {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-main {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.4;
}

.support-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

ul {
    list-style: none;
    width: 100%;
}

li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7em; 
    width: 0.8rem;
    height: 1.5px;
    background-color: var(--accent-deep);
}


footer {
    width: 100%;
    margin-top: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.divider {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent, var(--accent-deep), transparent); 
    margin-bottom: 3rem; 
    opacity: 0.2;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1.2rem; 
}

.status, 
.company-name, 
.contacts a {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--text-primary);
    text-transform: none;
    letter-spacing: normal;
    opacity: 1;
}



.contacts a {
    text-decoration: none;
    border-bottom: 2px solid var(--accent-deep);
    transition: all 0.3s ease;
}

.contacts a:hover {
    color: var(--accent-deep);
}

@media (max-width: 640px) {
    body {
        padding: 0.5rem;
        align-items: center;
    }

    .glass-container {
        padding: 2rem 1.25rem; 
        max-height: 95vh; 
        justify-content: center;
    }

    .logo {
        width: 70%;
        margin-bottom: 1.5rem;
    }

    .services {
        gap: 1rem; 
    }

    .service-main {
        font-size: 1.1rem; 
    }

    li {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }

    footer {
        margin-top: 1.5rem; 
    }

    .divider {
        margin-bottom: 1.5rem; 
    }

    .footer-content {
        gap: 0.6rem;
    }

    .status, 
    .company-name, 
    .contacts a {
        font-size: 1.1rem;
    }
}


@media (max-height: 700px) and (max-width: 640px) {
    .logo { margin-bottom: 1rem; width: 60%; }
    footer { margin-top: 1rem; }
    .divider { margin-bottom: 1rem; }
    .service-main, .status, .company-name, .contacts a { font-size: 1rem; }
}