        @import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700&family=Open+Sans:wght@300;400;600;700&display=swap');
html {
            scroll-behavior: smooth;
        }

        .timeline-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, #2c5f2d, #6b9b7f);
        }

        @media (max-width: 768px) {
            .timeline-line {
                left: 20px;
            }
        }

        .timeline-dot {
            width: 20px;
            height: 20px;
            background: #2c5f2d;
            border: 4px solid white;
            border-radius: 50%;
            box-shadow: 0 0 0 2px #2c5f2d;
        }

        .fade-in {
            animation: fadeIn 0.8s ease-in;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .image-gallery-item {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .image-gallery-item:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

        /* Lightbox styles */
        .lightbox {
            display: none;
            position: fixed;
            z-index: 9999;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            align-items: center;
            justify-content: center;
        }

        .lightbox.active {
            display: flex;
        }

        .lightbox-content {
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
        }

        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 40px;
            color: white;
            font-size: 40px;
            cursor: pointer;
            transition: color 0.3s;
        }

        .lightbox-close:hover {
            color: #ccc;
        }
        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);
        }
        