/* Start custom CSS for html, class: .elementor-element-0be474b */header, footer, .bottom-bar, footer[data-elementor-type="footer"], header[data-elementor-type="header"]{
    display: none !important;
}
:root {
            /* Branding Colors based on the 'Saffron' spiritual theme */
            --primary-color: #d35400; 
            --primary-hover: #e67e22;
            --text-dark: #2c3e50;
            --text-light: #555;
            --bg-overlay: rgba(0, 0, 0, 0.65);
        }
        
        .card-outer{
            background: url('https://images.unsplash.com/photo-1545389336-cf090694435e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 16px;
            height: 100%;
            min-height: 100vh;
            width: 100%;
        }
        .card {
            position: relative;
            z-index: 1;
            background-color: rgba(255, 255, 255, 0.98);
            width: 100%;
            max-width: 650px;
            border-radius: 15px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.3);
            text-align: center;
            padding: 24px;
            animation: fadeIn 1s ease-out;
            
        }

        /* --- Logo Styling --- */
        .logo-container {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
                gap: 12px;
        }

        .logo-img {
            /* LIMITS LOGO SIZE */
            max-width: 200px; 
            height: auto;
            display: table;
        }

        .logo-text {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary-color);
            text-transform: uppercase;
            line-height: 1.2;
        }

        /* --- Note Styling (Coming Soon) --- */
        .note-small {
            font-size: 0.85rem;
            color: #888;
            font-style: italic;
            margin-bottom: 25px;
            display: inline-block;
            background: #f0f0f0;
            padding: 4px 12px;
            border-radius: 12px;
        }

        /* --- Description Text --- */
        .description {
            color: var(--text-dark);
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 30px;
            text-align: center;
            padding: 0 10px;
        }

        /* --- Buttons --- */
        .links-container {
            display: flex;
            gap: 15px;
            justify-content: center;
            margin-bottom: 25px;
        }

        .btn {
            text-decoration: none;
                padding: 8px 12px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 16px;
    line-height: 24px;
        }

        .btn-primary {
            background-color: var(--primary-color);
            color: white;
            border: 2px solid var(--primary-color);
        }

        .btn-primary:hover {
            background-color: white;
            color: var(--primary-color);
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--text-dark);
            border: 2px solid var(--text-dark);
        }

        .btn-secondary:hover {
            background-color: var(--text-dark);
            color: white;
        }

        /* --- Newsletter --- */
        .newsletter-link {
            display: block;
            margin-bottom: 25px;
            color: var(--primary-color);
            font-weight: 600;
            font-size: 0.9rem;
            text-decoration: none;
        }
        .newsletter-link:hover {
            text-decoration: underline;
        }

        /* --- Footer Info --- */
        .card-footer {
            border-top: 1px solid #eee;
            padding-top: 20px;
            font-size: 0.9rem;
            color: var(--text-light);
        }

        .card-footer p {
            margin: 6px 0;
        }

        .card-footer a {
            color: var(--text-dark);
            font-weight: bold;
            text-decoration: none;
        }

        .card-footer a:hover {
            color: var(--primary-color);
        }

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

        @media (max-width: 600px) {
            .card { padding: 25px; }
            .logo-text { font-size: 1.5rem; }
            .btn {
                font-size: 14px;
                line-height: 20px;
            }
        }/* End custom CSS */