  * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        }

        body {
            background-color: #ffffff;
            color: #1d1d1f;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            padding: 20px;
        }

        .container {
            text-align: center;
            max-width: 580px;
            width: 100%;
        }

        .logo {
            margin-bottom: 24px;
        }

        .status{
            padding-top: 35px;
            font-size: 18px;
            font-weight: 700;
            letter-spacing: 1.5px;
            margin-bottom: 8px;
            text-transform: uppercase;
            color: #cd2148;
        }

        .status-subtitle {
            font-size: 13px;
            color: #cd2148;
            margin-bottom: 60px;
        }

    
        .contact-grid {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .card {
            background: #fafafa;
            border: 1px solid #e5e5ea;
            border-radius: 12px;
            padding: 16px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            text-align: left;
        }

        .card-info h3 {
            font-size: 15px;
            font-weight: 600;
            color: #1d1d1f;
            margin-bottom: 2px;
        }

        .card-info p {
            font-size: 12px;
            color: #86868b;
        }

        .kontakt {
            display: flex;
            gap: 8px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 14px;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 600;
            text-decoration: none;
            transition: opacity 0.2s;
            justify-content: center;
        }

        .btn:hover {
            opacity: 0.85;
        }

        .btn-mail {
            width: 100px;
            background-color: #1d1d1f;
            color: #ffffff;
        }

        .btn-wa {
            width: 100px;
            background-color: #25D366;
            color: #ffffff;
        }

        .logo img {
            width: 250px;
            height: 250px;
        }