      /* Basic styling for visual presentation */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            color: #333;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header styles */
        header {
            background-color: #2c1810;
            color: #fff;
            padding: 1rem 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            position: relative;
        }
        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #f4a460;
            z-index: 1001;
        }
        
        /* Mobile menu toggle button */
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
        }
        
        /* Navigation styles */
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav a {
            color: #fff;
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s;
            display: block;
        }
        nav a:hover {
            background-color: rgba(244, 164, 96, 0.2);
            color: #f4a460;
        }
        /* Active page indicator */
        nav a.active {
            background-color: #f4a460;
            color: #2c1810;
            font-weight: bold;
        }
        
        /* Mobile responsive navigation */
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            
            nav {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: #2c1810;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease-in-out;
            }
            
            nav.open {
                max-height: 400px;
                box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            }
            
            nav ul {
                flex-direction: column;
                gap: 0;
                padding: 1rem 0;
            }
            
            nav li {
                width: 100%;
            }
            
            nav a {
                padding: 1rem 2rem;
                border-radius: 0;
            }
        }
        
        /* Hero section styles */
        .hero {
            background: linear-gradient(rgba(44, 24, 16, 0.7), rgba(44, 24, 16, 0.7)), 
                        url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?w=1200') center/cover;
            color: #fff;
            text-align: center;
            padding: 8rem 0;
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
        }
        .cta-button {
            display: inline-block;
            background-color: #f4a460;
            color: #2c1810;
            padding: 1rem 2rem;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: bold;
            border-radius: 5px;
            transition: background-color 0.3s;
        }
        .cta-button:hover {
            background-color: #e09450;
        }
        
        /* Image gallery section */
        .gallery-section {
            padding: 3rem 0;
            background-color: #f9f9f9;
        }
        
        .gallery-section h2 {
            text-align: center;
            color: #2c1810;
            font-size: 2rem;
            margin-bottom: 2rem;
        }
        
        .image-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        
        .gallery-item:hover {
            transform: translateY(-5px);
        }
        
        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            display: block;
        }
        
        .gallery-item-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(44, 24, 16, 0.9));
            color: #fff;
            padding: 1.5rem 1rem 1rem;
            text-align: center;
            font-weight: bold;
        }
        
        /* Main content styles */
        main {
            padding: 3rem 0;
        }
        article {
            margin-bottom: 3rem;
            padding: 2rem;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 2rem;
            align-items: center;
        }
        
        article:nth-child(even) {
            grid-template-columns: 2fr 1fr;
        }
        
        article:nth-child(even) .article-image {
            order: 2;
        }
        
        .article-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
        }
        
        .article-content h2 {
            color: #2c1810;
            margin-bottom: 1rem;
            font-size: 1.8rem;
        }
        .article-content p {
            color: #555;
            margin-bottom: 0.5rem;
        }
        
        /* Footer styles */
        footer {
            background-color: #2c1810;
            color: #fff;
            text-align: center;
            padding: 2rem 0;
            margin-top: 3rem;
        }
        footer p {
            margin-bottom: 0.5rem;
        }
        
        /* Responsive typography */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .hero {
                padding: 5rem 0;
            }
            article {
                grid-template-columns: 1fr;
            }
            article:nth-child(even) {
                grid-template-columns: 1fr;
            }
            article:nth-child(even) .article-image {
                order: 0;
            }
        }
