:root {
            --bg-color: #1c1c24; /* Base background from your request */
            --box-bg: #262630;   /* Slightly lighter box color for contrast */
            --text-main: #ffffff;
            --text-muted: #b3b3b3;
            --btn-color: #fe6262; /* Coral/Salmon color matching your image */
            --btn-hover: #ff7878;
            --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        }

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

        body {
            background-color: var(--bg-color);
            color: var(--text-main);
            font-family: var(--font-family);
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh; /* Full viewport height for vertical centering */
            padding: 20px;
        }

        /* Flexbox container for the central column layout */
        .landing-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            max-width: 800px;
            width: 100%;
            gap: 40px; /* Consistent spacing between title, box, and button */
        }

        .main-title {
            font-size: clamp(2rem, 5vw, 3.5rem); /* Responsive typography */
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }

        /* Styling the content box to match your reference cards */
        .content-box {
            background-color: var(--box-bg);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 40px;
            width: 100%;
            max-width: 650px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .description-text {
            font-size: 1.125rem;
            line-height: 1.6;
            color: var(--text-muted);
        }

        /* SEO-friendly anchor tag styled as a button */
        .cta-button {
            background-color: var(--btn-color);
            color: #ffffff;
            text-decoration: none;
            font-size: 1.125rem;
            font-weight: 600;
            padding: 16px 36px;
            border-radius: 6px;
            transition: background-color 0.3s ease, transform 0.2s ease;
            display: inline-block;
        }

        .cta-button:hover {
            background-color: var(--btn-hover);
            transform: translateY(-2px);
        }

        /* Mobile responsiveness adjustments */
        @media (max-width: 600px) {
            .landing-container {
                gap: 30px;
            }
            .content-box {
                padding: 30px 20px;
            }
            .cta-button {
                width: 100%;
                max-width: 400px;
            }
        }