    
        :root {
            --primary: #8B5A2B;
            --primary-light: #A97C50;
            --secondary: #6D4C41;
            --dark: #4E342E;
            --light: #F9F5EB;
            --accent: #7B1FA2;
            --card-bg: rgba(255, 253, 245, 0.92);
            --border: #D7CCC8;
            --shadow: rgba(108, 76, 65, 0.3);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%234E342E"/><path d="M0 0L100 100" stroke="%236D4C41" stroke-width="1"/><path d="M100 0L0 100" stroke="%236D4C41" stroke-width="1"/></svg>');
            min-height: 100vh;
            padding: 10px;
            position: relative;
            overflow-x: hidden;
        }

        body::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 50%, rgba(123, 31, 162, 0.1) 0%, transparent 40%),
                        radial-gradient(circle at 80% 80%, rgba(139, 90, 43, 0.1) 0%, transparent 40%);
            pointer-events: none;
            z-index: -1;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        .temple-border {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .temple-border::before, .temple-border::after {
            content: "";
            position: fixed;
            background: var(--primary);
            width: 15px;
            height: 100%;
            top: 0;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
        }

        .temple-border::before {
            left: 0;
            background: linear-gradient(to right, var(--primary), var(--primary-light));
        }

        .temple-border::after {
            right: 0;
            background: linear-gradient(to left, var(--primary), var(--primary-light));
        }

        .lantern {
            position: fixed;
            width: 30px;
            height: 45px;
            background: #FFD700;
            border-radius: 10px;
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
            animation: flicker 3s infinite alternate;
            z-index: -1;
        }

        .lantern::after {
            content: "";
            position: absolute;
            width: 20px;
            height: 4px;
            background: var(--primary);
            top: -4px;
            left: 5px;
            border-radius: 5px 5px 0 0;
        }

        .lantern-left {
            top: 20%;
            left: 15px;
        }

        .lantern-right {
            top: 60%;
            right: 15px;
        }

        @keyframes flicker {
            0%, 100% { opacity: 0.9; }
            50% { opacity: 0.7; }
        }

        @media (prefers-reduced-motion: reduce) {
            .lantern, .incense {
                animation: none;
            }
        }

        /* Header and Navigation Styles */
        .site-header {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 20px 0 0;
            position: relative;
            width: 100%;
        }

        .monk-figure {
            width: 90px;
            height: 90px;
            margin: 0 auto 15px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px var(--shadow);
            border: 4px solid var(--light);
        }

        .monk-figure::before {
            content: "☯";
            font-size: 40px;
            color: var(--light);
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--light);
            margin-bottom: 8px;
            text-shadow: 2px 2px 4px var(--dark);
            letter-spacing: 1px;
        }

        .tagline {
            font-size: 1rem;
            color: var(--light);
            margin-bottom: 15px;
            font-style: italic;
            text-shadow: 1px 1px 2px var(--dark);
        }

        /* Fixed navigation container */
        .fixed-nav-container {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(78, 52, 46, 0.95);
            padding: 10px 0;
            margin: 0 0 20px;
            backdrop-filter: blur(5px);
            border-bottom: 2px solid var(--primary);
            width: 100%;
        }

        .nav-menu {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
            padding: 0 20px;
            margin: 0 auto;
            max-width: 1200px;
        }

        .nav-menu a {
            color: var(--light);
            text-decoration: none;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 20px;
            transition: all 0.3s ease;
            background: rgba(139, 90, 43, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .nav-menu a:hover {
            background: rgba(139, 90, 43, 0.5);
            transform: translateY(-2px);
        }

        /* Mobile responsiveness for navigation */
        @media (max-width: 768px) {
            .fixed-nav-container {
                top: 0;
                padding: 8px 0;
            }

            .nav-menu {
                gap: 8px;
                padding: 0 10px;
            }

            .nav-menu a {
                padding: 6px 12px;
                font-size: 0.9rem;
            }
        }

        .intro-section {
            background: linear-gradient(135deg, rgba(139, 90, 43, 0.9) 0%, rgba(123, 31, 162, 0.8) 100%);
            border-radius: 12px;
            padding: 25px 20px;
            margin-bottom: 25px;
            color: var(--light);
            text-align: center;
            box-shadow: 0 8px 20px -5px var(--shadow);
            border: 2px solid var(--border);
            position: relative;
            overflow: hidden;
        }

        .intro-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" stroke="%23F9F5EB" stroke-width="0.5" fill="none" /></svg>');
            opacity: 0.1;
            pointer-events: none;
            z-index: 0;
        }

        .intro-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--light);
            position: relative;
            z-index: 1;
        }

        .intro-text {
            font-size: 1rem;
            margin-bottom: 20px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
            position: relative;
            z-index: 1;
        }

        .wisdom-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
            margin-top: 25px;
        }

        .wisdom-card {
            background: rgba(249, 245, 235, 0.15);
            border-radius: 10px;
            padding: 15px;
            text-align: center;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(249, 245, 235, 0.2);
            transition: transform 0.3s ease;
            position: relative;
            z-index: 1;
        }

        .wisdom-card:hover {
            transform: translateY(-3px);
        }

        .wisdom-icon {
            font-size: 2rem;
            margin-bottom: 10px;
        }

        .wisdom-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--dark);
        }

        .wisdom-desc {
            font-size: 0.85rem;
            color: rgba(49, 38, 9, 0.9);
        }

        .grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 25px;
        }

        @media (min-width: 768px) {
            .grid {
                grid-template-columns: 1fr 1fr;
            }

            body {
                padding: 20px;
            }

            .logo {
                font-size: 3.5rem;
            }

            .tagline {
                font-size: 1.3rem;
            }

            .monk-figure {
                width: 120px;
                height: 120px;
            }

            .monk-figure::before {
                font-size: 50px;
            }

            .intro-title {
                font-size: 2.5rem;
            }

            .intro-text {
                font-size: 1.2rem;
            }

            .wisdom-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }

            .temple-border::before, .temple-border::after {
                width: 30px;
            }

            .lantern {
                width: 40px;
                height: 60px;
            }

            .lantern::after {
                width: 30px;
                height: 5px;
                top: -5px;
            }

            .lantern-left {
                left: 30px;
            }

            .lantern-right {
                right: 30px;
            }
        }

        .card {
            background: var(--card-bg);
            border-radius: 14px;
            box-shadow: 0 8px 20px -5px var(--shadow);
            padding: 20px;
            transition: transform 0.3s ease;
            border: 2px solid var(--border);
            position: relative;
        }

        .card::before {
            content: "";
            position: absolute;
            top: 8px;
            left: 8px;
            right: 8px;
            bottom: 8px;
            border: 1px solid var(--border);
            border-radius: 10px;
            pointer-events: none;
            opacity: 0.5;
        }

        .card:hover {
            transform: translateY(-3px);
        }

        .card-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 15px;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--border);
            text-align: center;
        }

        .input-group {
            margin-bottom: 15px;
            position: relative;
        }

        .input-group label {
            display: flex;
            align-items: center;
            margin-bottom: 6px;
            font-weight: 500;
            color: var(--secondary);
            padding-left: 8px;
            border-left: 2px solid var(--primary);
            font-size: 0.95rem;
        }

        .info-icon {
            margin-left: 8px;
            cursor: pointer;
            position: relative;
            display: inline-block;
            color: var(--primary-light);
            font-size: 16px;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            border: 1px solid var(--primary-light);
            text-align: center;
            line-height: 16px;
        }

        .info-icon:hover .tooltip {
            visibility: visible;
            opacity: 1;
            transform: translateY(-5px);
        }

        .tooltip {
            visibility: hidden;
            opacity: 0;
            width: 200px;
            background-color: var(--dark);
            color: var(--light);
            text-align: center;
            border-radius: 6px;
            padding: 10px;
            position: absolute;
            z-index: 1000;
            bottom: 125%;
            left: 50%;
            transform: translateX(-50%);
            transition: all 0.3s ease;
            font-size: 0.85rem;
            line-height: 1.4;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            max-width: 90vw;
            word-wrap: break-word;
        }

        /* Mobile-specific adjustments */
        @media (max-width: 767px) {
            .tooltip {
                width: 180px;
                font-size: 0.8rem;
                left: auto;
                right: 0;
                transform: none;
            }
            
            .tooltip::after {
                left: auto;
                right: 10px;
                margin-left: 0;
            }
        }

        .tooltip::after {
            content: "";
            position: absolute;
            top: 100%;
            left: 50%;
            margin-left: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: var(--dark) transparent transparent transparent;
        }

        .input-with-currency {
            display: flex;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .currency-symbol {
            background: var(--light);
            padding: 12px 8px 12px 12px;
            border: 2px solid var(--border);
            border-right: none;
            border-radius: 10px 0 0 10px;
            font-weight: 500;
            min-height: 44px;
            color: var(--dark);
        }

        .input-group input {
            width: 100%;
            padding: 12px;
            border: 2px solid var(--border);
            border-radius: 0 10px 10px 0;
            font-size: 1rem;
            transition: border-color 0.3s;
            background: var(--light);
            color: var(--dark);
            -webkit-appearance: none;
            min-height: 44px;
        }

        input[type="number"] {
            -webkit-appearance: none;
            margin: 0;
            -moz-appearance: textfield;
        }

        input[type="number"]::-webkit-outer-spin-button,
        input[type="number"]::-webkit-inner-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }

        .input-group input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(139, 90, 43, 0.2);
        }

        .results-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
            margin-top: 15px;
        }

        .metric-card {
            background: var(--light);
            border-radius: 10px;
            padding: 15px;
            text-align: center;
            border: 1px solid var(--border);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        }

        .metric-title {
            font-size: 0.85rem;
            color: var(--secondary);
            margin-bottom: 6px;
        }

        .metric-value {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--primary);
        }

        .chart-container {
            margin-top: 25px;
            position: relative;
            height: 250px;
            width: 100%;
        }

        .cta-section {
            text-align: center;
            padding: 25px;
            margin-top: 35px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            border-radius: 14px;
            color: white;
            border: 2px solid var(--border);
        }

        .cta-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: white;
        }

        .btn {
            display: inline-block;
            padding: 12px 24px;
            background: var(--light);
            color: var(--primary);
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            box-shadow: 0 4px 10px var(--shadow);
            min-height: 44px;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 15px var(--shadow);
            background: var(--light);
            color: var(--accent);
        }

        footer {
            text-align: center;
            padding: 30px 0;
            margin-top: 35px;
            color: var(--light);
            border-top: 2px solid var(--border);
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 15px;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: var(--light);
            text-decoration: none;
            transition: color 0.3s;
            font-size: 0.9rem;
            padding: 5px;
            border-radius: 3px;
        }

        .footer-links a:hover {
            color: var(--accent);
            background: rgba(255, 255, 255, 0.1);
        }

        .wisdom-text {
            background: rgba(139, 90, 43, 0.1);
            border-left: 3px solid var(--primary);
            padding: 12px;
            margin: 15px 0;
            border-radius: 4px;
            font-size: 0.85rem;
            font-style: italic;
            color: var(--dark);
        }

        .monk-quote {
            text-align: center;
            margin: 15px 0;
            padding: 15px;
            font-style: italic;
            color: #d2d3d7;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            font-size: 0.95rem;
            position: relative;
            z-index: 1;
        }
        .monk-quote1 {
            text-align: center;
            margin: 15px 0;
            padding: 15px;
            font-style: italic;
            color: #404145;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            font-size: 0.95rem;
        }

        .incense {
            position: fixed;
            width: 3px;
            height: 100px;
            background: linear-gradient(to bottom, transparent, var(--accent));
            opacity: 0.6;
            filter: blur(2px);
            animation: smoke 15s infinite linear;
            z-index: -1;
        }

        @keyframes smoke {
            0% { transform: translateY(0) rotate(0deg); opacity: 0; }
            10% { opacity: 0.6; }
            100% { transform: translateY(-100vh) rotate(10deg); opacity: 0; }
        }

        .output-section {
            margin-top: 30px;
        }

        .output-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }

        @media (min-width: 992px) {
            .output-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .output-card {
            background: var(--card-bg);
            border-radius: 14px;
            padding: 20px;
            box-shadow: 0 8px 20px -5px var(--shadow);
            border: 2px solid var(--border);
            text-align: center;
            transition: transform 0.3s ease;
        }

        .output-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 25px -5px var(--shadow);
        }

        .output-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border);
        }

        .output-value {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--accent);
            margin: 15px 0;
        }

        .years-to-freedom {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--accent);
            margin: 15px 0;
            line-height: 1.4;
        }

        .output-desc {
            font-size: 0.9rem;
            color: var(--secondary);
            line-height: 1.5;
        }

        .disclaimer {
            background: rgba(139, 90, 43, 0.1);
            border-radius: 8px;
            padding: 15px;
            margin: 20px 0;
            font-size: 0.8rem;
            color: var(--secondary);
            text-align: center;
            border: 1px solid var(--border);
        }

        .calculation-info {
            background: rgba(123, 31, 162, 0.1);
            border-radius: 8px;
            padding: 15px;
            margin: 20px 0;
            font-size: 0.85rem;
            color: var(--secondary);
            text-align: left;
            border: 1px solid var(--border);
        }

        .calculation-info strong {
            color: var(--accent);
        }

        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        .status-indicator {
            display: inline-block;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin-right: 8px;
        }

        .status-good {
            background-color: #4CAF50;
        }

        .status-warning {
            background-color: #FFC107;
        }

        .status-bad {
            background-color: #F44336;
        }
        /* Mobile responsiveness improvements */
        @media (max-width: 767px) {
            .card {
                padding: 15px;
            }

            .input-group label {
                flex-wrap: wrap;
            }

            .output-grid {
                gap: 15px;
            }

            .output-card {
                padding: 15px;
            }

            .output-value, .years-to-freedom {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 480px) {
            .intro-title {
                font-size: 1.5rem;
            }

            .logo {
                font-size: 2rem;
            }

            .card-title {
                font-size: 1.2rem;
            }

            .input-group input {
                padding: 10px;
            }

            .currency-symbol {
                padding: 10px 6px 10px 10px;
            }
        }

        .comparison-note {
            background: rgba(139, 90, 43, 0.1);
            border-radius: 8px;
            padding: 12px;
            margin: 15px 0;
            font-size: 0.85rem;
            color: var(--secondary);
            text-align: center;
            border: 1px solid var(--border);
        }
        
        .content-section {
            margin: 30px 0;
            background: var(--card-bg);
            padding: 25px;
            border-radius: 14px;
            box-shadow: 0 8px 20px -5px var(--shadow);
            border: 2px solid var(--border);
        }
        
        .content-section h2 {
            font-family: 'Playfair Display', serif;
            color: var(--primary);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--border);
        }
        


#privacy {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background: var(--card-bg);
    border-radius: 14px;
    box-shadow: 0 8px 20px -5px var(--shadow);
    border: 2px solid var(--border);
    position: relative;
    color: var(--dark);
    line-height: 1.6;
}

#privacy::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 1px solid var(--border);
    border-radius: 10px;
    pointer-events: none;
    opacity: 0.5;
}

#privacy h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border);
    text-align: center;
}

#privacy h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin: 25px 0 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

#privacy h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary);
    margin: 20px 0 10px;
}

#privacy p {
    margin-bottom: 15px;
    font-size: 1rem;
}

#privacy ul, #privacy ol {
    margin: 15px 0;
    padding-left: 25px;
}

#privacy li {
    margin-bottom: 8px;
}

#privacy a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s;
}

#privacy a:hover {
    color: var(--primary);
    text-decoration: underline;
}

#privacy .last-updated {
    text-align: center;
    font-style: italic;
    color: var(--secondary);
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid var(--border);
}

#privacy .monk-quote {
    text-align: center;
    margin: 25px 0;
    padding: 15px;
    font-style: italic;
    color: var(--dark);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    font-size: 1.1rem;
    background: rgba(139, 90, 43, 0.05);
    border-radius: 8px;
}

#privacy .back-button {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary);
    color: var(--light);
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    box-shadow: 0 4px 10px var(--shadow);
    margin-top: 20px;
}

#privacy .back-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px var(--shadow);
    background: var(--primary-light);
}

@media (max-width: 768px) {
    #privacy {
        padding: 15px;
        margin: 10px;
    }
    
    #privacy h1 {
        font-size: 1.8rem;
    }
    
    #privacy h2 {
        font-size: 1.3rem;
    }
}

        
        .ad-container {
            background: white;
            padding: 15px;
            border-radius: 8px;
            margin: 20px 0;
            text-align: center;
            border: 1px solid var(--border);
        }
        
        .ad-label {
            display: block;
            text-align: center;
            font-size: 0.7rem;
            color: #888;
            margin-bottom: 5px;
            text-transform: uppercase;
        }
    