
        

        /* Important Notice */
        .important-notice {
            background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
            border: 2px solid var(--warning-color);
            border-radius: 1rem;
            padding: 2rem;
            margin: 2rem 0;
            box-shadow: var(--shadow);
            position: relative;
        }

         

        .important-notice h3 {
            color: #856404;
            font-weight: 600;
            margin-bottom: 1rem;
            margin-left: 2rem;
        }

        .important-notice p {
            color: #856404;
            margin-bottom: 0;
            line-height: 1.6;
        }

        /* Calendar Card */
        .calendar-card {
            border: none;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .calendar-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.2);
        }

        .calendar-header {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            padding: 2rem;
            position: relative;
        }

        .calendar-title {
            font-size: 1.75rem;
            font-weight: 600;
            margin: 0;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
        }

        /* Table Styling */
        .prayer-calendar-table {
            margin: 0;
        }

        .prayer-calendar-table thead th {
            background: linear-gradient(135deg, var(--light-bg-secondary) 0%, #e9ecef 100%);
            font-weight: 600;
            padding: 1.25rem 1rem;
            text-transform: uppercase;
            font-size: 0.875rem;
            color: var(--dark-color);
            letter-spacing: 0.5px;
            border-bottom: 2px solid var(--primary-color);
            position: sticky;
            top: 0;
            z-index: 10;
        }

        .prayer-calendar-table tbody tr {
            transition: all 0.3s ease;
        }

        .prayer-calendar-table tbody tr:hover {
            background: rgba(30, 138, 94, 0.05);
            transform: scale(1.01);
            box-shadow: var(--shadow-sm);
        }

        .prayer-calendar-table td {
            padding: 1rem;
            vertical-align: middle;
            border: 1px solid var(--border-color);
        }

        /* Special Day Highlight */
        .special-day-highlight {
            background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
            border-left: 4px solid #e53e3e;
            border-radius: 8px;
            padding: 0.75rem;
            margin: 0.5rem 0;
            box-shadow: var(--shadow-sm);
        }

        .special-day-text {
            color: #c53030;
            font-weight: 600;
            font-size: 0.875rem;
            margin: 0;
        }

        /* About Section */
        .about-section {
            background: linear-gradient(135deg, var(--light-bg-secondary) 0%, #e9ecef 100%);
            padding: 4rem 0;
        }

        .about-card {
            background: var(--white-color);
            border-radius: 1rem;
            padding: 2rem;
            box-shadow: var(--shadow);
            height: 100%;
            transition: transform 0.3s ease;
        }

        .about-card:hover {
            transform: translateY(-5px);
        }

        .about-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .about-title {
            color: var(--primary-dark);
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .about-text {
            color: var(--muted-color);
            line-height: 1.6;
            margin: 0;
        }
        /* Side Cards */
        .info-card {
            border: none;
            border-radius: 1rem;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .info-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        .info-card .card-header {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
            border: none;
            padding: 1.5rem;
        }

        .info-card .card-header h3 {
            color: var(--white-color);
            margin: 0;
            font-weight: 600;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
        }

        .special-date-item {
            border: none;
            padding: 1rem 1.5rem;
            transition: all 0.3s ease;
            border-radius: 0.5rem;
            margin-bottom: 0.5rem;
        }

        .special-date-item:hover {
            background: rgba(30, 138, 94, 0.05);
            transform: translateX(5px);
        }

        .special-date-item a {
            color: var(--dark-color);
            text-decoration: none;
            font-weight: 500;
        }

        .special-date-item a:hover {
            color: var(--primary-color);
        }

        .date-badge {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
            color: var(--white-color);
            padding: 0.5rem 1rem;
            border-radius: 2rem;
            font-weight: 600;
            font-size: 0.875rem;
            box-shadow: var(--shadow-sm);
        }

        .month-link {
            color: var(--dark-color);
            text-decoration: none;
            padding: 0.75rem;
            border-radius: 0.5rem;
            transition: all 0.3s ease;
            display: block;
            font-weight: 500;
        }

        .month-link:hover {
            background: rgba(30, 138, 94, 0.1);
            color: var(--primary-color);
            transform: translateX(5px);
        }

        /* FAQ Section */
        /* .faq-section {
            background: var(--white-color);
            padding: 4rem 0;
        }

        .accordion-item {
            border: none;
            margin-bottom: 1rem;
            border-radius: 0.5rem;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }

        .accordion-button {
            background: var(--light-bg-secondary);
            border: none;
            padding: 1.25rem 1.5rem;
            font-weight: 500;
            color: var(--dark-color);
        }

        .accordion-button:not(.collapsed) {
            background: var(--primary-color);
            color: var(--white-color);
            box-shadow: none;
        }

        .accordion-body {
            padding: 1.5rem;
            background: var(--white-color);
            color: var(--muted-color);
            line-height: 1.6;
        } */

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.125rem;
            }

            .important-notice {
                padding: 1.5rem;
                margin: 1rem 0;
            }

            .important-notice h3 {
                margin-left: 1rem;
            }

            .calendar-header {
                padding: 1.5rem 1rem;
            }

            .prayer-calendar-table td {
                padding: 0.75rem 0.5rem;
                font-size: 0.875rem;
            }
        }

        /* Print Styles */
        @media print {
            .no-print {
                display: none !important;
            }

            .calendar-card {
                box-shadow: none;
                border: 1px solid #000;
            }

            .calendar-header {
                background: #f8f9fa !important;
                color: #000 !important;
            }
        }
