* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    height: 100vh;
    background: url('../images/bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

/* Dark overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

/* Main content */
.content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    padding: 20px;
}

/* Logo */
.logo {
    width: 180px;
    margin-bottom: 30px;
}

/* Title */
h1 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

/* Subtitle */
p {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.9;
}

/* Contact */
.contact {
    margin-top: 40px;
    font-size: 18px;
    opacity: 0.85;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 42px;
    }

    p {
        font-size: 18px;
    }

    .logo {
        width: 140px;
    }
}
