    :root {
        --primary-color: #008753;   
        --primary-dark: #006B42;
        --text-dark: #222; 
        --text-light: #555;
        --bg-light: #f9f9f9;
    }
        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--text-dark);
            padding-top: 76px; /* Account for fixed navbar */
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary-color) !important;
        }
        
        .nav-link {
            font-weight: 600;
            color: var(--text-dark) !important;
            margin: 0 10px;
            transition: color 0.3s;
        }
        
        .nav-link:hover {
            color: var(--primary-color) !important;
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 10px 25px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .btn-primary:hover {
            background-color: var(--primary-dark);
            border-color: var(--primary-dark);
            transform: translateY(-2px);
        }
        
        .btn-outline-primary {
            color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 10px 25px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .btn-outline-primary:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-2px);
        }
        
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/hero.jpg');
            background-size: cover;
            background-position: center left;
            height: 80vh;
            display: flex;
            align-items: center;
            color: white;
            text-align: center;
        }
        
        .hero-section h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
        }
        
        .hero-section p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }
        
        .section-padding {
            padding: 80px 0;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 3rem;
            text-align: center;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background-color: var(--primary-color);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .about-section {
            background-color: var(--bg-light);
        }
        
        .magazine-card {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
            height: 100%;
        }
        
        .magazine-card:hover {
            transform: translateY(-10px);
        }
        
        .magazine-card img {
            height: 250px;
            object-fit: cover;
        }
        
        .video-section {
            background-color: var(--bg-light);

        }
        
        .video-placeholder {
            background-color: #e9ecef;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/native_rice.jpg');
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .video-placeholder:hover {
            background-color: #dee2e6;
        }
        
        .play-button {
            width: 80px;
            height: 80px;
            background-color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
        }
        
        footer {
            background-color: #222;
            color: white;
            padding: 50px 0 20px;
        }
        
        .social-icons a {
            color: white;
            font-size: 1.5rem;
            margin: 0 10px;
            transition: color 0.3s;
        }
        
        .social-icons a:hover {
            color: var(--primary-color);
        }
        
        /* Mobile sidebar */
        @media (max-width: 991.98px) {
            .offcanvas-start {
                width: 280px;
            }
            
            .navbar-nav {
                padding-top: 20px;
            }
            
            .nav-link {
                padding: 10px 15px;
                margin: 5px 0;
            }
            
            .hero-section h1 {
                font-size: 2.5rem;
            }
        }
        
        /* About Section Image Fix */
        .about-section img {
            height: 400px;
            width: 100%;
            object-fit: cover;
            object-position: center;
        }
        
        /* Optional: Adjust for smaller screens */
        @media (max-width: 991.98px) {
            .about-section img {
                height: 300px;
                margin-bottom: 30px;
            }
        }