* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    min-height: 100vh;
    background: #0b0b0b;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: auto;
}

.overlay {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255,215,0,0.15), rgba(0,0,0,0.9));
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 40px 20px;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.35);
    margin-bottom: 30px;
}

h1 {
    font-size: 3rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #ffd700;
}

p {
    font-size: 1.1rem;
    opacity: 0.85;
    line-height: 1.6;
}

.contact {
    margin-top: 25px;
}

.contact a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 500;
}

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

.phone {
    display: inline-block;
    margin-top: 6px;
    font-size: 1rem;
    opacity: 0.9;
}

.footer {
    margin-top: 40px;
    font-size: 0.85rem;
    opacity: 0.6;
}
