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

        body {
            font-family: Arial, Helvetica, sans-serif;            
            color: #333;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
        }

        .container {
            text-align: center;
            max-width: 700px;
            padding: 40px;
        }

        .logo {
    width: 320px;      /* Desktop */
    max-width: 80vw;   /* Mobil */
    margin: 0 auto 40px;
}

.logo svg {
    width: 100%;
    height: auto;
    display: block;
}

        h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #222;
        }

        p {
            font-size: 1.15rem;
            line-height: 1.7;
            color: #666;
        }

        .small {
            margin-top: 40px;
            font-size: 0.9rem;
            color: #999;
        }
   