body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1445205170230-053b83016050?q=80&w=2071&auto=format&fit=crop') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    animation: fadeIn 1s ease-in-out;
}

.container {
    background: rgba(0, 0, 0, 0.5);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    max-width: 600px;
    margin: 20px;
}

.icon {
    font-size: 5rem;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.contact {
    margin-top: 30px;
    font-size: 1rem;
    color: #ccc;
}

.phone {
    display: inline-block;
    background: #007bff;
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 10px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.phone:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
