@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;
        }
        
        .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;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .prose h2 {
            font-size: 1.75rem;
            margin-top: 2em;
            margin-bottom: 0.5em;
            color: #111827;
        }
        
        .prose h3 {
            font-size: 1.5rem;
            margin-top: 1.5em;
            margin-bottom: 0.5em;
            color: #111827;
        }
        
        .prose img {
            max-width: 100%;
            height: auto;
            border-radius: 0.5rem;
            margin: 1.5rem 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;
        }
        
        .article-content img {
            max-width: 100%;
            height: auto;
            border-radius: 0.5rem;
        }