* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(135deg, #f5f7fa, #e9eef5);
    color: #333;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    max-width: 700px;
    width: 100%;
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.logo {
    display: block;
    margin: 0 auto 20px;
    width: 120px;
    height: auto;
}

h1 {
    font-size: 2rem;
    color: #1f3b64;
    margin-bottom: 20px;
}

.lead {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.phone,
.email {
    color: #0056b3;
    text-decoration: none;
    font-weight: 600;
}

.phone:hover,
.email:hover {
    text-decoration: underline;
}

.address {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #e0e0e0;
    line-height: 1.8;
    color: #666;
}

.address strong {
    color: #333;
}

.footer {
    margin-top: 30px;
    font-size: 0.9rem;
    color: #888;
}

@media (max-width: 768px) {
    .container {
        padding: 35px 25px;
    }

    h1 {
        font-size: 1.7rem;
    }

    .lead {
        font-size: 1rem;
    }
}