        :root {
            --primary-color: #2c5530;
            --secondary-color: #6b8e23;
            --accent-color: #d4af37;
            --light-bg: #f8f9fa;
            --dark-text: #333;
            --light-text: #fff;
            --border-radius: 8px;
            --box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            --dark-color: var(--primary-color);
        }
        
        * {
            box-sizing: border-box;
        }
        
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            color: var(--dark-text);
            line-height: 1.6;
            background-color: #f5f5f5;
        }
        
        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .hero-section {
            /* background: linear-gradient(rgba(44, 85, 48, 0.85), rgba(44, 85, 48, 0.85)), 
                        url('/images/buddha-2909937_960_720.png') center/cover no-repeat;  */
            background: linear-gradient(rgba(44, 85, 48, 0.85), rgba(44, 85, 48, 0.85)), 
                        url('/images/deshana.png') center/cover no-repeat;         
            color: var(--light-text);
            padding: 10px 10px;
            text-align: center;
            margin-bottom: 10px;
            border-radius: 0 0 var(--border-radius) var(--border-radius);
            line-height: normal;
        }
        
        .hero-section h1 {
            margin: 5px 0 5px;
            font-size: 2.2rem;
        }
        
        .hero-section p {
            margin: 0px 0;
            font-size: 1.1rem;
        }
        
        .hero-section h2 {
            margin: 10px 0 10px;
            font-size: 1.2rem;
        }
        .section-header {
            text-align: center;
            margin: 30px 0;
        }
        
        .section-header h2 {
            color: var(--primary-color);
            position: relative;
            padding-bottom: 10px;
            margin-bottom: 20px;
        }
        
        .section-header h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--accent-color);
        }
        
        .card-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .card {
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            overflow: hidden;
            transition: transform 0.3s ease;
        }
        
        .card:hover {
            transform: translateY(-5px);
        }
        
        .card-header {
            background-color: var(--primary-color);
            color: white;
            padding: 15px;
            font-weight: bold;
        }
        
        .card-body {
            padding: 15px;
        }
        
        .card-body ul {
            padding-left: 20px;
            margin: 0;
        }
        
        .card-body li {
            margin-bottom: 10px;
        }
        
        .card-body a {
            color: var(--secondary-color);
            text-decoration: none;
            font-weight: bold;
        }
        
        .card-body a:hover {
            text-decoration: underline;
        }
        
        .notice-box {
            background-color: #fff9e6;
            border-left: 4px solid var(--accent-color);
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        
        .notice-box h3 {
            margin-top: 0;
            color: var(--primary-color);
        }
        
        .zoom-info {
            /* background-color: #e8f4fd; */
            background-color: #fff9e6;
            border-radius: var(--border-radius);
            padding: 15px;
            margin: 20px 0;
        }
        
        .zoom-info h3 {
            margin-top: 0;
            color: var(--primary-color);
        }
        
        .disclaimer {
            background-color: #f8f8f8;
            border-top: 1px solid #ddd;
            padding: 15px;
            margin-top: 30px;
            font-size: 0.9rem;
            text-align: center;
        }

        .chiththa-card {
            background-image: url('/images/cc_chart_small.jpg');
            background-size: cover;
            background-position: center;
            position: relative;
            color: white;
        }
        .chiththa-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1;
        }
        
        .chiththa-card .card-header,
        .chiththa-card .card-body {
            position: relative;
            z-index: 2;
        }
        
        .chiththa-card .card-body a {
            color: #d4af37; /* Using the accent color for better visibility */
            text-decoration: none;
            font-weight: bold;
        }
        
        .chiththa-card .card-body a:hover {
            text-decoration: underline;
            color: #f0c850; /* Slightly lighter gold for hover effect */
        }

     
        .image-card {
            background-size: cover;
            background-position: center;
            position: relative;
            /*color: white; */
            color: darkgreen;
            --card-image: url('/images/cc_chart_small.jpg');
            background-image: var(--card-image);
        }

        .image-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.1);
            z-index: 1;
        }

        .image-card .card-header,
        .image-card .card-body {
            position: relative;
            z-index: 2;
        }

        .image-card .card-body a {
            
            
            color: darkgreen;
            /* color: #d4af37; 
            color: darkblue;  */
            text-decoration: none;
            font-weight: bold;
        }

        .image-card .card-body a:hover {
            text-decoration: underline;
            /* color: #f0c850; */
            color: darkblue;
        }

        .footer {
            text-align: center;
            padding: 20px;
            margin-top: 30px;
            color: #666;
            font-size: 0.9rem;
        }


        @media (max-width: 768px) {
            .card-container {
                grid-template-columns: 1fr;
            }
            
            .hero-section h1 {
                font-size: 1.8rem;
            }
        }