body {
    background: #f7f7f9;
    color: #222;
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.container {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 40px 32px;
    text-align: center;
    max-width: 400px;
}

.logo {
    min-width: 120px;
    width: 80%;
    height: auto;
    margin-bottom: 18px;
}

h1 {
    font-size: 2rem;
    margin: 0 0 12px 0;
    letter-spacing: 0.02em;
}

p {
    font-size: 1.1rem;
    margin: 0 0 10px 0;
}

.contact-section {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.contact-section h2 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #3d428b;
}

.contact-section a {
    color: #d1a14a;
    text-decoration: none;
    font-weight: bold;
}

.contact-section a:hover {
    text-decoration: underline;
}

a, a:visited {
    color: inherit;
}

a[href^="tel:"] {
    text-decoration: underline;
}

a[href^="https://www.facebook"], a[href^="https://www.facebook"]:visited {
    color: #3d428b;
    text-decoration: none;
}

a[href^="https://www.facebook"]:hover {
    text-decoration: underline;
}

.error-text {
    color: #e74c3c;
    font-weight: bold;
    margin-bottom: 15px;
}

.error-code {
    font-size: 5rem;
    font-weight: bold;
    color: #e74c3c;
    margin: 0;
    opacity: 0.7;
}

.home-link {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 20px;
    background-color: #3d428b;
    color: white !important;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.home-link:hover {
    background-color: #564b72;
}

@media (max-width: 500px) {
    .container {
        padding: 24px 8px;
    }
}
