.elementor-1555 .elementor-element.elementor-element-6b3e895{--display:flex;}/* Start custom CSS for container, class: .elementor-element-6b3e895 */* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: #FAF8F5;
            color: #3A3A3A;
            line-height: 1.7;
        }

        /* Vibrant Purple Palette */
        :root {
            --primary-purple: #7B68EE;
            --deep-purple: #6A5ACD;
            --light-purple: #9D8FFF;
            --soft-lavender: #E6E0FF;
            --accent-gold: #D4AF37;
            --sage-green: #A8B79F;
            --warm-cream: #F5F1EB;
            --dark-text: #2B2B2B;
        }

        /* Header */
        header {
            background: linear-gradient(135deg, var(--primary-purple) 0%, var(--deep-purple) 100%);
            color: white;
            padding: 24px;
            box-shadow: 0 4px 20px rgba(123, 104, 238, 0.3);
        }

        .header-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .header-content h1 {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 32px;
            margin-bottom: 8px;
        }

        .header-content p {
            font-size: 15px;
            opacity: 0.9;
        }

        /* Main Content */
        .container {
            max-width: 900px;
            margin: 60px auto;
            padding: 0 24px;
        }

        .content-card {
            background: white;
            padding: 60px;
            border-radius: 20px;
            box-shadow: 0 8px 32px rgba(123, 104, 238, 0.08);
            border: 1px solid rgba(123, 104, 238, 0.1);
        }

        .intro-text {
            font-size: 17px;
            color: #5A5A5A;
            margin-bottom: 48px;
            line-height: 1.8;
            padding: 24px;
            background: var(--soft-lavender);
            border-radius: 12px;
            border-left: 4px solid var(--primary-purple);
        }

        .section {
            margin-bottom: 48px;
        }

        .section h2 {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 24px;
            color: var(--primary-purple);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .section-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--primary-purple) 0%, var(--deep-purple) 100%);
            color: white;
            border-radius: 50%;
            font-size: 16px;
            font-weight: 600;
            box-shadow: 0 4px 12px rgba(123, 104, 238, 0.3);
        }

        .section p {
            font-size: 16px;
            line-height: 1.8;
            color: #4A4A4A;
            margin-bottom: 16px;
        }

        .section ul {
            margin: 20px 0;
            padding-left: 24px;
        }

        .section li {
            font-size: 16px;
            line-height: 1.8;
            color: #4A4A4A;
            margin-bottom: 12px;
            position: relative;
        }

        .section li::marker {
            color: var(--primary-purple);
        }

        .highlight-box {
            background: var(--soft-lavender);
            border-left: 4px solid var(--primary-purple);
            padding: 20px 24px;
            border-radius: 8px;
            margin: 24px 0;
        }

        .highlight-box p {
            font-size: 15px;
            color: var(--dark-text);
            font-style: italic;
            margin: 0;
        }

        .contact-box {
            background: linear-gradient(135deg, var(--soft-lavender) 0%, rgba(230, 224, 255, 0.5) 100%);
            padding: 32px;
            border-radius: 16px;
            text-align: center;
            margin-top: 48px;
            border: 2px solid rgba(123, 104, 238, 0.2);
        }

        .contact-box h3 {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 22px;
            color: var(--deep-purple);
            margin-bottom: 16px;
        }

        .contact-box p {
            font-size: 16px;
            margin-bottom: 8px;
        }

        .contact-box a {
            color: var(--primary-purple);
            text-decoration: none;
            font-weight: 500;
        }

        .contact-box a:hover {
            color: var(--deep-purple);
        }

        .note-box {
            background: rgba(168, 183, 159, 0.1);
            border-left: 4px solid var(--sage-green);
            padding: 20px 24px;
            border-radius: 8px;
            margin: 32px 0;
        }

        .note-box p {
            font-size: 15px;
            color: var(--dark-text);
            margin: 0;
        }

        /* Footer */
        footer {
            background: var(--dark-text);
            color: rgba(255,255,255,0.7);
            padding: 40px 24px;
            text-align: center;
            margin-top: 80px;
        }

        footer p {
            font-size: 14px;
            margin-bottom: 16px;
        }

        footer a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            margin: 0 12px;
            transition: color 0.3s ease;
        }

        footer a:hover {
            color: var(--light-purple);
        }

        .back-link {
            display: inline-block;
            margin-bottom: 32px;
            color: var(--primary-purple);
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .back-link:hover {
            color: var(--deep-purple);
            transform: translateX(-4px);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .content-card {
                padding: 36px 24px;
            }

            .header-content h1 {
                font-size: 26px;
            }

            .section h2 {
                font-size: 20px;
            }
        }/* End custom CSS */