
        @import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700&family=Open+Sans:wght@300;400;600;700&display=swap');

        body {
            font-family: 'Open Sans', sans-serif;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Merriweather', serif;
        }

        .nav-link {
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -4px;
            left: 0;
            background-color: #8B5A2B;
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .btn-primary {
            background-color: #2D4F1E;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background-color: #1f3614;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(45, 79, 30, 0.3);
        }

        .btn-secondary {
            border: 2px solid #8B5A2B;
            color: #8B5A2B;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background-color: #8B5A2B;
            color: white;
            transform: translateY(-2px);
        }

        /* Calendar Container Styles */
        .calendar-container {
            position: relative;
            width: 100%;
            padding-bottom: 75%; /* 4:3 Aspect Ratio */
            height: 0;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .calendar-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 12px;
        }

        /* Responsive adjustments */
        @media (min-width: 768px) {
            .calendar-container {
                padding-bottom: 60%; /* Adjust for tablets */
            }
        }

        @media (min-width: 1024px) {
            .calendar-container {
                padding-bottom: 50%; /* Adjust for desktops */
            }
        }

        /* Legend styles */
        .legend-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .legend-color {
            width: 20px;
            height: 20px;
            border-radius: 4px;
            flex-shrink: 0;
        }

        /* Loading animation */
        .loading-spinner {
            border: 4px solid #f3f3f3;
            border-top: 4px solid #2D4F1E;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            animation: spin 1s linear infinite;
            margin: 0 auto;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
    