        .section-fullscreen {
            height: 100vh;
            background-color: #f7f8fc;
            font-family: "Inter", sans-serif;
            color: #2c2f5c;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 20px;
        }

        .main-heading {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            color: #2c2f5c;
            font-family: 'Inter',sans-serif;
        }

        .description-text {
            font-size: 23px;
            max-width: 934px;
            line-height: 1.6;
            margin-bottom: 40px;
            color: #2c2f5c;
            font-weight: 500;
            font-family: 'Inter',sans-serif;
        }

        .cta-purple-btn {
            background-color: #DA2F47;
            color: #ffffff;
            padding: 16px 28px;
            border-radius: 32px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: background-color 0.3s ease;
            font-family: 'Inter',sans-serif;
        }

        .cta-purple-btn:hover {
            background-color: #DA2F47;
        }