     /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Poppins", sans-serif;
        }
        body {
            line-height: 1.6;
            color: #333;
            background-color: #fff;
        }

        /* Main Container */
        .main-container {
            max-width: 100%;
            margin: 0 auto;
            background-color: #fff;
            box-shadow: 0 0 20px rgba(0,0,0,0.1);
            min-height: 100vh;
        }
        /* Navigation */
        .nav-bar {
            background: white;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
            position: relative;
        }

        /* Logo NCIP */
        .Logo {
            display: flex;
            align-items: center;
            gap: 5px; 
        }

        .Logo img {
            height: 50px; 
            width: auto;
            margin: 10px;
        }

        .Logo-text {
            font-size: 18px;
            font-weight: bold;
            color: #222; 
            font-weight: 800;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 0.5rem;
        }
        
        .nav-menu > li {
            position: relative;
        }
        
        .nav-menu > li > a {
            color: #333;
            text-decoration: none;
            padding: 1rem 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            font-weight: 500;
            border-bottom: 3px solid transparent;
        }
        
        .nav-menu > li > a:hover,
        .nav-menu > li > a.active {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            border-bottom-color: #2c5530;
            color: #222;
        }
        
        .arrow {
            margin-left: 5px;
            font-size: 0.8rem;
            transition: transform 0.3s ease;
        }
        
        .dropdown-item:hover .arrow {
            transform: rotate(180deg);
        }

        /* Dropdown */
        .dropdown {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: white;
            min-width: 280px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            opacity: 0;
            visibility: hidden;
            transform: translateX(-50%) translateY(-15px);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border-radius: 10px;
            z-index: 1000;
            border: 1px solid rgba(44, 85, 48, 0.1);
        }
        
        .nav-menu li:hover .dropdown {
            opacity: 1;
            visibility: visible;
            margin-top: 15px;
        }
        
        .dropdown a {
            display: block;
            padding: 1rem 1.5rem;
            color: #222;
            text-decoration: none;
            border-bottom: 1px solid #f0f0f0;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .dropdown a:last-child {
            border-bottom: none;
        }
        
        .dropdown a::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 4px;
            background: #222;
            transform: translateX(-100%);
            transition: transform 0.3s ease;
        }
        
        .dropdown a:hover {
            color: #222;
            padding-left: 2rem;
        }
        
        .dropdown a:hover::before {
            transform: translateX(0);
        }
        
        .dropdown a:first-child {
            border-radius: 12px 12px 0 0;
        }
        
        .dropdown a:last-child {
            border-radius: 0 0 12px 12px;
        }

        /* Login Button */
        .login-btn {
            padding: 5px 8px;
            background: transparent; 
            color: #222; 
            text-decoration: none;
            border: 1px solid #222;
            border-radius: 5px;
            font-size: 15px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: none; 
        } 

        .login-btn:hover {
            background: #3E7B27;
            color: #fff;          
        }

        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: #333;
            cursor: pointer;
            border-radius: 8px;
        }
        
        .mobile-menu-btn:hover {
            background: #f8f9fa;
            color: #2c5530;
        }

        /* Page Indicator */
        .page-indicator {
            display: none;
            padding: 0.5rem 1rem;
            background: #f8f9fa;
            border-bottom: 1px solid #e9ecef;
            font-weight: 500;
            color: #222;
            height: 50px;
        }

        /* Header Section */
        .header {
            background-color: #e5e5e5;
            padding: 1rem 2rem;
            border-bottom: 1px solid #ddd;
        }
        
        .header-container {
            display: flex;
            align-items: center;
            gap: 1rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .logo {
            width: 80px;
            height: 80px;
            background: url("{{ asset('images/ncip_logo.jpg') }}") no-repeat center;background-size: contain;
            background-size: contain;
            flex-shrink: 0;
            border-radius: 3px;
        }
  
        .org-title h1 {
            font-size: clamp(1.2rem, 4vw, 1.8rem);
            font-weight: 700;
            color: #333;
        }
        
        .org-title p {
            font-size: clamp(0.8rem, 2vw, 1rem);
            color: #666;
        }

        /* Hero Section */
        .hero {
            padding: 3rem 2rem;
        }

        .hero-container {
            max-width: 1500px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 3rem;
            background: linear-gradient(135deg, white, #f8f9fa);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }
        
        .hero-text {
            padding: 2rem;
        }
        
        .hero-text h2 {
            font-size: clamp(1.5rem, 4vw, 2.2rem);
            margin-bottom: 1.5rem;
            color: #2c5530;
            font-weight: 700;
            line-height: 1.2;
        }
        
        .hero-text p {
            font-size: clamp(1rem, 2vw, 1.2rem);
            margin-bottom: 2rem;
            color: #444;
            line-height: 1.6;
        }
        
        .hero-image {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 2rem;
        }
        
        .hero-image img {
            width: 100%;
            height: auto;
            max-width: 500px;
            object-fit: cover;
            border-radius: 5px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        
        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #3E7B27, #2c5530);
            color: #fff;
            padding: 8px 12px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 500;
            font-size: 18px;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(62, 123, 39, 0.3);
        }
        
        .cta-button:hover {
            background: linear-gradient(135deg, #2c5530, #1a3d1f);
            box-shadow: 0 8px 25px rgba(62, 123, 39, 0.4);
        }

        /* Carousel Section */
        .carousel {
        position: relative;
        max-width: 95%;
        margin: auto;
        overflow: hidden;
        }
        .carousel-container {
        position: relative;
        }

        .carousel-slide {
        display: none;
        }

        .carousel-slide img {
        width: 100%;
        border-radius: 10px;
        }

        /* Prev/Next Buttons */
        .prev, .next {
        cursor: pointer;
        position: absolute;
        top: 50%;
        width: auto;
        padding: 12px;
        margin-top: -22px;
        color: #fff;
        font-weight: bold;
        font-size: 22px;
        border-radius: 0 3px 3px 0;
        user-select: none;
        transition: 0.3s
      
        }

        .next {
        right: 0;
        border-radius: 3px 0 0 3px;
        }

        /* Dots */
        .dots {
        text-align: center;
        margin-top: 10px;
        }

        .dot {
        cursor: pointer;
        height: 12px;
        width: 12px;
        margin: 0 5px;
        background-color: #e5e5e5;
        border-radius: 50%;
        display: inline-block;
        transition: background-color 0.6s ease;
        margin-bottom: 5px;
        }

        .active, .dot:hover {
        background-color: #222;
        }

        /* Responsive */
        @media (max-width: 768px) {
        .carousel-caption {
            font-size: 1rem;
            padding: 0.5rem 1rem;
        }
        }

        /* Quote Section */
        .quote-section {
            background: linear-gradient(135deg, #3E7B27, #2c5530);
            color: #fff;
            padding: 4rem 2rem;
            position: relative;
            overflow: hidden;
        }
        
        .quote-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("{{ asset('content/pattern.png') }}") repeat;
            opacity: 0.1;
            z-index: 1;
        }
        
        .quote-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }
        
        .quote-text {
            font-size: clamp(1.2rem, 3vw, 1.6rem);
            line-height: 1.4;
            font-style: italic;
            margin-bottom: 1.5rem;
            font-weight: 300;
        }
        
        .quote-author {
            font-size: clamp(1rem, 2vw, 1.3rem);
            font-weight: 600;
            opacity: 0.9;
        }
        
        .quote-image {
            height: 350px;
            border-radius: 5px;
           background-image: url("{{ asset('content/indigenous-children-traditional-attire-rice-paddy-field-vibrant-image-showcasing-children-indigenous-group-dressed-393401719.webp') }}");
            background-size: cover;
            background-position: center;
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        /* Section Headers */
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
            padding: 10px;
        }
        
        .section-title {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            color: #3E7B27;
            margin-bottom: 1rem;
            font-weight: 700;
            position: relative;
            display: inline-block;
        }
        
        h2.section-title {
            color: #000000;
            font-size: clamp(1.5rem, 3vw, 25px);
            text-align: left;
            padding-top: 10px;

        }
        
        p.section-subtitle {
            font-size: clamp(0.9rem, 2vw, 15px);

        }
        
        .section-subtitle {
            font-size: clamp(1rem, 2vw, 1.2rem);
            color: #000000;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Groups Section */
        .groups-section {
            padding: 2rem 1rem;
            background: linear-gradient(135deg, #fff, #f8f9fa);

        }
        
        .groups-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
            
        }
        
        .group-card {
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
            position: relative;
            
        }
        
        .group-card:hover {
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .group-image {
            height: 220px;
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }
        
        .group-content {
            padding: 2rem;
        }
        
        .group-title {
            font-size: clamp(1.2rem, 2vw, 1.4rem);
            margin-bottom: 1rem;
            color: #3E7B27;
            font-weight: 600;
        }
        
        .group-description {
            color: #000000;
            font-size: clamp(0.85rem, 1.5vw, 0.95rem);
            line-height: 1.6;
        }

        /* Livelihood Section */
        .livelihood-section {
            padding: 2rem 1rem;
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);

        }
        
        .livelihood-cards {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
        }
        
        .livelihood-card {
            background: linear-gradient(135deg, #3E7B27, #2c5530);
            padding: 2.5rem;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            display: flex;
            gap: 1.5rem;
            align-items: flex-start;
            position: relative;
            overflow: hidden;
        }
        
        .livelihood-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(44, 85, 48, 0.05), transparent);
          
        }
        
        .livelihood-card:hover {
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .livelihood-card:hover::before {
            left: 100%;
        }
        
        .livelihood-icon {
            width: 70px;
            height: 70px;
            border-radius: 15px;
            background-color: #e5e5e5;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #3E7B27;
            font-size: 1.8rem;
            flex-shrink: 0;
      
        }
        
        .livelihood-content h3 {
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            color: #fff;
            margin-bottom: 0.8rem;
            font-weight: 600;
            
        }
        
        .livelihood-content p {
            color: #fff;
            line-height: 1.6;
            font-size: clamp(0.85rem, 1.5vw, 0.95rem);
        }

        /* Certificate of Confirmation Section */
        .coc-section {
            background-color: #fff;
            border-radius: 8px;
            padding: 2rem;
            margin: 2rem auto;
            max-width: 1200px;
        }
        .highlight-green {
        color: #3E7B27;
        font-weight: 800;
        font-size: 1.6rem;
        }

        .coc-intro {
            margin-bottom: 2rem;
        }

        .coc-intro h2 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #222;
        }

        .coc-intro p {
            margin-bottom: 0.8rem;
            color: #000000;
            font-size: 16px;
        }

        /* Process Section */
        .coc-process {
            background: linear-gradient(135deg, #3E7B27, #2c5530);
            border-radius: 10px;
            padding: 2rem;
            color: #fff;
        }

        .coc-process h3 {
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .process-steps {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .step {
            flex: 1;
            min-width: 250px;
            background: #fff;
            color: #222;
            padding: 1rem;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .step:hover{
              transform: translateY(-5px);
              box-shadow: 0 8px 16px rgba(0,0,0,0.15);
        }

        .step-number {
            background: #3E7B27;
            color: #fff;
            font-weight: bold;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 0.5rem;
            font-size: 20px;
        }
       
        .step h4 {
            margin-bottom: 0.5rem;
            color: #222;
            font-size: 18px;
        }

        /* Our Heritage Section */
        .our-heritage {
        background: linear-gradient(135deg, #f8f9fa, #e9ecef);
        padding: 4rem 2rem;
        }

        .heritage-container {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
        }

        .heritage-text {
        flex: 1 1 55%;
        }

        .heritage-text h2 {
        font-size: 1.8rem;
        color: #222;
        margin-bottom: 1rem;
        }

        .heritage-text p {
        color: #444;
        line-height: 1.6;
        margin-bottom: 2rem;
        }

        .heritage-features {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.5rem;
        }

        .heritage-card {
        background: #fff;
        border-radius: 10px;
        padding: 1.5rem;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .heritage-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 18px rgba(0,0,0,0.15);
        }

        .heritage-card h3 {
        color: #222;
        margin-bottom: 0.5rem;
        font-size: 1.1rem;
        }

        .heritage-card p {
        font-size: 0.95rem;
        color: #222;
        }

        .heritage-image {
        flex: 1 1 40%;
        }

        .heritage-image img {
        width: 100%;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.15);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .process-steps {
                flex-direction: column;
            }
        }

      /* Pagination */
.pagination {
    margin-top: 2rem;
    text-align: center; /* center ang content */
    display: flex;       /* flex para ma-center at ma-gap */
    justify-content: center; /* center horizontally */
    align-items: center;     /* center vertically (optional) */
    gap: 10px; /* spacing between buttons and page numbers */
}

.pagination button {
    background-color: #e5e5e5 ;
    color: #222;
    border: none;
    padding: 6px 12px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
}

.pagination button:hover {
   background-color: #ccc;
}

.pagination button:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.pagination .active-page {
    background-color: #555;
    color: #fff;
}

        
  /* Footer - Enhanced Responsiveness */
        .footer {
            background: linear-gradient(135deg, #333, #2c2c2c);
            color: white;
            padding: clamp(2rem, 5vw, 3rem) clamp(1rem, 3vw, 2rem) 1rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: clamp(2rem, 4vw, 3rem);
        }

        .footer-links h3,
        .footer-social h3,
        .footer-logo h3 {
            margin-bottom: 1rem;
            color: white;
            font-size: clamp(1.1rem, 3vw, 1.3rem);
            font-weight: 600;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: all 0.3s ease;
            padding: 0.3rem 0;
            display: inline-block;
            font-size: clamp(14px, 2.5vw, 16px);
        }

        .footer-links a:hover {
            color: white;
            padding-left: 0.5rem;
        }

        .footer-social p {
            color: #ccc;
            margin-bottom: 1rem;
            line-height: 1.6;
            font-size: clamp(14px, 2.5vw, 16px);
        }

        .social-icons a {
            font-size: clamp(1.3rem, 4vw, 1.6rem);
            color: #ccc;
            margin-right: 1rem;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            color: #00acee;
            transform: scale(1.2);
        }

        .footer-logo {
            text-align: center;
        }

        .footer-logo img {
            width: clamp(150px, 25vw, 250px);
            margin-top: 1rem;
            border-radius: 10px;
        }

        .footer-bottom {
            text-align: center;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid #555;
            color: #ccc;
            font-size: clamp(12px, 2vw, 14px);
        }


        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Mobile Close Button inside menu */
        .mobile-close-btn {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: #333;
            cursor: pointer;
            z-index: 1001;
            padding: 0.5rem;
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        
        .mobile-close-btn:hover {
            background: #f8f9fa;
            color: #2c5530;
        }
        .mobile-login {
            display: none;
            padding: 1rem;
            border-top: 1px solid #f0f0f0;
        }
        
        .desktop-login {
            display: block;
        }

        /* Responsive Breakpoints */
        @media (max-width: 1024px) {
            .nav-container {
                padding: 0 1rem;
            }
            
            .hero, .groups-section, .livelihood-section, .footer {
                padding: 4rem 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .main-container {
                box-shadow: none;
            }
            
            .header-container {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
                padding: 1rem;
            }
            
            .mobile-menu-btn {
                display: block;
                position: absolute;
                right: 20px;
                top: 15px;
            }
            
            .nav-container {
                flex-direction: column;
                align-items: stretch;
                position: relative;
                padding: 0;
            }
            
            .page-indicator {
                display: block;
            }
            
          /* Universal dropdown panel  */
            .nav-menu {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 60px; 
                right: 10px;
                width: 100%;
                max-width: 100%; 
                background: rgba(255, 255, 255, 0.98);
                box-shadow: 0 4px 12px rgba(0,0,0,0.15);
                z-index: 999;
                padding: 1rem;
                margin-top: 9px;
            }

            .nav-menu.active {
                display: flex;
            }

            /* Menu items */
            .nav-menu li {
                border-bottom: 1px solid #ddd;
                margin: 0.3rem 0;
                padding: 0.5rem 0;
            }

            .nav-menu li:last-child {
                border-bottom: none;
            }

            /* Login button inside menu */
            .mobile-login .login-btn {
                display: block;
                width: 100%;
                margin-top: 1rem;
                text-align: center;
                padding: 12px;
                background: #2c5530;
                color: #fff !important;
                border-radius: 6px;
                font-weight: 600;
                font-size: 0.95rem;
                box-shadow: 0 4px 10px rgba(0,0,0,0.15);
            }

            .mobile-menu-btn {
                display: block;
                background: none;
                border: none;
                font-size: 1.8rem;
                cursor: pointer;
                color: #333;
            }

            
            .nav-menu > li {
                border-bottom: 1px solid #f0f0f0;
                width: 100%;
            }
            
            .nav-menu > li:last-child {
                border-bottom: none;
            }
            
            .nav-menu > li > a {
                padding: 1rem 1.5rem;
                border-bottom: none;
            }
            
            .dropdown {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                background: #f8f9fa;
                margin: 0;
                border-radius: 0;
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }
            
            .dropdown.active {
                max-height: 500px;
            }
            
            .dropdown a {
                padding-left: 3rem;
                font-size: 0.9rem;
            }
            
            .mobile-login {
                display: block;
            }
            
            .desktop-login {
                display: none;
            }
            
            .mobile-login .login-btn {
                margin: 0;
                display: block;
                text-align: center;
                width: calc(100% - 2rem);
                margin: 0 1rem;
            }
            
            .hero-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .hero-text {
                padding: 1.5rem;
                text-align: center;
            }
            
            .quote-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }
            
            .quote-image {
                height: 250px;
            }
            
            .groups-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .livelihood-cards {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .livelihood-card {
                flex-direction: column;
                text-align: center;
                padding: 2rem;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        @media (max-width: 480px) {
            .hero, .groups-section, .livelihood-section, .footer {
                padding: 3rem 1rem;
            }
            
            .quote-section {
                padding: 3rem 1rem;
            }
            
            .quote-image {
                height: 200px;
            }
            
            .groups-grid, .livelihood-cards {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .group-card, .livelihood-card {
                margin: 0;
            }
            
            .nav-menu {
                width: 90%;
                right: 5%;
            }
            
            .header-container {
                padding: 0.5rem;
            }
        }
        .news-preview-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.section-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.news-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.news-card-image {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
}

.news-card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-date {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 10px;
}

.news-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.news-excerpt {
    flex: 1;
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 15px;
}

.read-more-btn {
    text-decoration: none;
    background-color: #3E7B27;
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    text-align: center;
    transition: background 0.3s;
}

.read-more-btn:hover {
    background-color: #2f5c1f;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .news-card-image {
        height: 150px;
    }
}
