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

body {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.container {
    text-align: center;
    padding: 30px 20px;
    max-width: 600px;
    width: 100%;
}

.logo {
    width: 200px;          /* لوگو بڑا کیا گیا */
    max-width: 70%;
    margin-bottom: 20px;
}

h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.contact-box {
    background: rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 12px;
    font-size: 15px;
    line-height: 1.8;
}

footer {
    margin-top: 25px;
    font-size: 13px;
    opacity: 0.7;
}

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

    .logo {
        width: 160px;
    }

    .contact-box {
        font-size: 14px;
    }
}