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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: #ffffff;
            color: #1d1d1f;
            overflow-x: hidden;
        }

        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 60px 20px;
            text-align: center;
        }

        .logo {
            margin-bottom: 60px;
            animation: fadeIn 1s ease-out;
        }

        .logo img {
            max-width: 600px;
            width: 100%;
            height: auto;
        }

        h1 {
            font-size: 56px;
            font-weight: 600;
            letter-spacing: -0.02em;
            line-height: 1.1;
            margin-bottom: 24px;
            animation: fadeInUp 1s ease-out 0.2s both;
        }

        .content {
            max-width: 680px;
            margin: 0 auto;
        }

        p {
            font-size: 21px;
            line-height: 1.6;
            color: #6e6e73;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease-out 0.4s both;
        }

        .cta {
            margin-top: 40px;
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .btn {
            display: inline-block;
            padding: 14px 32px;
            font-size: 17px;
            font-weight: 500;
            text-decoration: none;
            color: #ffffff;
            background: #c41e3a;
            border-radius: 50px;
            transition: all 0.3s ease;
            margin: 10px;
        }

        .btn:hover {
            background: #a01828;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(196, 30, 58, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: #c41e3a;
            border: 2px solid #c41e3a;
        }

        .btn-secondary:hover {
            background: #c41e3a;
            color: #ffffff;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 40px;
            }

            p {
                font-size: 19px;
            }

            .logo img {
                max-width: 400px;
            }
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 32px;
            }

            p {
                font-size: 17px;
            }

            .btn {
                display: block;
                margin: 10px 0;
            }
        }