@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Poppins:wght@300;400;600&display=swap');
        
        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        
        h1, h2, h3 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }
        
        .hero {
            background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3));
            height: 70vh;
            position: relative;
        }
        
        .gallery-image {
            transition: transform 0.3s ease;
        }
        
        .gallery-image:hover {
            transform: scale(1.03);
        }
        
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -20px;
            top: 0;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #b38b59;
        }
        
        @media (max-width: 768px) {
            .hero {
                height: 50vh;
            }
        }
