* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --navy-blue: #1e3a8a;
            --deep-navy: #1e40af;
            --silver: #e5e7eb;
            --light-silver: #f8fafc;
            --white: #ffffff;
            --gold: #d4af37;
            --text-dark: #1f2937;
            --text-light: #6b7280;
            --memorial-gray: #9ca3af;
            --success-green: #10b981;
        }
		
		/* Smooth fade transitions for content */
		#div-content {
		  opacity: 1;
		  transition: opacity 0.4s ease;
		}

		#div-content.fade-out {
		  opacity: 0;
		}
		
		/* Highlight active menu item */
		.nav-active {
		  font-weight: 700;           /* bold */
		  color: #1d4ed8 !important;  /* Tailwind blue-700 */
		  border-bottom: 2px solid #1d4ed8; /* optional underline */
		}



        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background: var(--white);
        }

        .serif-title {
            font-family: 'EB Garamond', serif;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
		
		.stat-item {
            text-align: center;
        }

        .stat-number {
            font-family: 'EB Garamond', serif;
            font-size: 3rem;
            font-weight: 700;
            color: var(--gold);
            display: block;
        }

        .stat-label {
            font-size: 0.9rem;
            opacity: 0.8;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
		
		        /* Section Styles */
        .section {
            padding: 80px 0;
        }

        .section-title {
            font-family: 'EB Garamond', serif;
            text-align: center;
            font-size: 2.8rem;
            font-weight: 600;
            color: var(--navy-blue);
            margin-bottom: 3rem;
            letter-spacing: -0.01em;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: var(--text-light);
            margin-bottom: 4rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }


		.cta-button {
            background: var(--gold);
            color: var(--text-dark);
            padding: 15px 40px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            margin-top: 2rem;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
        }