* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #000;
    color: #fff;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow-x: hidden;
}

/* Background Image */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/background.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.95; /* subtle */
    z-index: -1;
}

.container {
    text-align: center;
    padding: 40px 20px;
    max-width: 800px;
    margin: auto;
}

.logo {
    width: 320px;
    margin-bottom: 50px;
}

h1 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 20px;
}

.description {
    font-size: 18px;
    color: #cfcfcf;
    margin-bottom: 25px;
    line-height: 1.6;
}

.credibility {
    font-size: 16px;
    color: #a0a0a0;
    margin-bottom: 30px;
}

.industries {
    font-size: 15px;
    color: #d0d0d0;
    margin-bottom: 40px;
}

.contact a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.contact p {
    color: #aaaaaa;
    margin-top: 8px;
}

footer {
    text-align: center;
    padding: 20px;
    font-size: 13px;
    color: #d0d0d0;
    letter-spacing: 1px;
}

/* Mobile Responsive */
@media (max-width: 768px) {

    h1 {
        font-size: 28px;
    }

    .description {
        font-size: 16px;
    }

    .industries {
        font-size: 14px;
        line-height: 1.6;
    }

    .logo {
        width: 160px;
    }

}