@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap');
        
        body {
            font-family: 'Poppins', sans-serif;
            background-color: #f8f5f2;
            color: #333;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
        }
        
        .hero-articles {
            background-size: cover;
            background-position: center;
        }
        
        .article-card {
            transition: all 0.3s ease;
        }
        
        .article-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .nav-link {
            position: relative;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #c59d5f;
            transition: width 0.3s;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .rotate-180 {
            transform: rotate(180deg);
        }
        
        .prose {
            color: #4b5563;
            line-height: 1.75;
        }
        
        .prose h4 {
            margin-top: 1.5em;
            margin-bottom: 0.5em;
            color: #111827;
        }
        
        .prose img {
            max-width: 100%;
            height: auto;
            border-radius: 0.5rem;
            margin: 1rem 0;
        }
        
        .image-left {
            float: left;
            margin-right: 1.5rem;
            margin-bottom: 1rem;
        }
        
        .image-right {
            float: right;
            margin-left: 1.5rem;
            margin-bottom: 1rem;
        }
        
        .image-top, .image-bottom {
            display: block;
            margin-left: auto;
            margin-right: auto;
        }
        
        .text-center {
            text-align: center;
        }
        
        .text-right {
            text-align: right;
        }