        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', 'Poppins', system-ui, sans-serif;
            background: url('assets/images/background/background.jpg') fixed center/cover no-repeat;
            color: #2c3e2f;
            scroll-behavior: smooth;
            position: relative;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(254, 249, 232, 0.7);
            z-index: -1;
        }

        .navbar {
            background: rgba(45, 106, 79, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            padding: 1.5rem 5%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 1.2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .nav-links {
            display: flex;
            gap: 0.8rem;
            list-style: none;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
        }

        .nav-links a {
            text-decoration: none;
            color: #fefae0;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 0.4rem 0.6rem;
            border-radius: 8px;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            position: relative;
            white-space: nowrap;
        }

        .navbar.scrolled {
            justify-content: center;
            padding: 0.8rem 5%;
            gap: 0;
            background: rgba(45, 106, 79, 0.98);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background-color: #f9c74f;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-links a:hover {
            color: #f9c74f;
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        .nav-links a:hover::after {
            width: 80%;
        }

        .hero {
            background: linear-gradient(rgba(45, 106, 79, 0.6), rgba(27, 67, 50, 0.7)), url('assets/images/hero-bg.png') center/cover no-repeat;
            min-height: 85vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            padding: 2rem;
            border-radius: 0 0 50px 50px;
        }

        .hero-content h1 {
            font-size: 4rem;
            font-weight: 800;
            color: #f9c74f;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
            transition: all 0.3s ease;
        }

        .hero-content h1 span {
            color: #f9844a;
        }

        .hero-content p {
            font-size: 1.3rem;
            max-width: 750px;
            margin: 0 auto 2rem;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
        }

        .btn-group {
            display: flex;
            gap: 1.2rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 12px 28px;
            font-size: 1rem;
            font-weight: bold;
            border-radius: 50px;
            text-decoration: none;
            transition: 0.3s;
            display: inline-block;
            cursor: pointer;
        }

        .btn-primary {
            background: #f9c74f;
            color: #2d6a4f;
        }

        .btn-primary:hover {
            background: #f9844a;
            color: white;
            transform: scale(1.02);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid #f9c74f;
            color: #f9c74f;
        }

        .btn-outline:hover {
            background: #f9c74f;
            color: #2d6a4f;
            transform: scale(1.02);
        }

        .btn-pdf {
            background: #2d6a4f;
            color: white;
            border: 2px solid #f9c74f;
        }

        .btn-pdf:hover {
            background: #f9c74f;
            color: #2d6a4f;
            border-color: #2d6a4f;
        }

        .btn-back {
            background: #2d6a4f;
            color: white;
            border: 2px solid #f9c74f;
            margin-bottom: 20px;
        }

        .btn-back:hover {
            background: #f9c74f;
            color: #2d6a4f;
        }

        .btn-register {
            background: #e76f51;
            color: white;
            border: none;
            padding: 14px 32px;
            font-size: 1.1rem;
            margin-top: 20px;
            box-shadow: 0 4px 15px rgba(231, 111, 81, 0.4);
        }

        .btn-register:hover {
            background: #f4a261;
            transform: scale(1.02);
            color: white;
        }

        .btn-feedback {
            background: #25D366;
            color: white;
            border: none;
            padding: 14px 32px;
            font-size: 1.1rem;
            margin-top: 10px;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
            transition: all 0.3s ease;
            width: 100%;
        }

        .btn-feedback:hover {
            background: #128C7E;
            transform: scale(1.02);
            color: white;
        }

        .section {
            padding: 70px 8%;
        }

        .section h2 {
            font-size: 2.5rem;
            color: #2d6a4f;
            text-align: center;
            margin-bottom: 20px;
        }

        .section h2:after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background: #f9c74f;
            margin: 10px auto 0;
            border-radius: 3px;
        }

        .section-subtitle {
            text-align: center;
            color: #555;
            margin-bottom: 40px;
        }

        /* Style untuk Story Telling */
        .story-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .story-card {
            background: white;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .story-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 45px rgba(0, 0, 0, 0.2);
        }

        .story-card-image {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }

        .story-card-content {
            padding: 1.8rem;
        }

        .story-card-icon {
            font-size: 2.5rem;
            color: #2d6a4f;
            margin-bottom: 1rem;
        }

        .story-card h3 {
            font-size: 1.5rem;
            color: #2d6a4f;
            margin-bottom: 0.5rem;
        }

        .story-card .subtitle {
            color: #f9844a;
            font-weight: 600;
            margin-bottom: 1rem;
            font-size: 0.9rem;
        }

        .story-card p {
            color: #555;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            display: -webkit-box;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .read-more {
            color: #2d6a4f;
            font-weight: bold;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .read-more:hover {
            color: #f9844a;
        }

        /* Full Story Page */
        .full-story {
            background: rgba(255, 255, 255, 0.98);
            border-radius: 40px;
            padding: 3.5rem;
            margin-top: 40px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(20px);
            position: relative;
            overflow: hidden;
        }

        .full-story::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 8px;
            background: linear-gradient(90deg, #2d6a4f, #f9c74f, #f9844a);
        }

        .full-story h1 {
            color: #1b4332;
            font-size: 2.8rem;
            margin-bottom: 20px;
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -0.5px;
        }

        .story-meta {
            color: #666;
            font-size: 1rem;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 2px solid rgba(45, 106, 79, 0.1);
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .story-meta i {
            color: #f9c74f;
            font-size: 1.2rem;
        }

        .story-content {
            line-height: 2;
            color: #444;
            font-size: 1.15rem;
            text-align: justify;
        }

        .story-content p {
            margin-bottom: 25px;
        }

        .story-content p:first-of-type::first-letter {
            font-size: 3.5rem;
            float: left;
            margin-right: 15px;
            line-height: 1;
            color: #2d6a4f;
            font-weight: bold;
            font-family: serif;
        }

        .story-icon-large {
            font-size: 4rem;
            color: #2d6a4f;
            margin-bottom: 25px;
            background: rgba(45, 106, 79, 0.1);
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            box-shadow: 0 10px 20px rgba(45, 106, 79, 0.1);
        }

        .story-feature-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 25px;
            margin: 30px 0;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
            transition: transform 0.5s ease;
        }

        .story-feature-image:hover {
            transform: scale(1.02);
        }

        .jendela-sangiran {
            background: linear-gradient(135deg, rgba(45, 106, 79, 0.95) 0%, rgba(27, 67, 50, 0.95) 100%);
            border-radius: 40px;
            margin-top: 30px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .jendela-grid {
            display: flex;
            flex-wrap: wrap;
        }

        .jendela-image {
            flex: 1;
            min-width: 280px;
            background: #1e3a2f;
        }

        .jendela-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            min-height: 400px;
            display: block;
        }

        .jendela-content {
            flex: 1.2;
            padding: 2.5rem;
            color: #fefae0;
        }

        .jendela-content h3 {
            font-size: 2rem;
            margin-bottom: 0.5rem;
            color: #f9c74f;
        }

        .jendela-tagline {
            font-size: 1.2rem;
            font-style: italic;
            margin-bottom: 1.5rem;
            color: #f4a261;
            border-left: 3px solid #f9c74f;
            padding-left: 15px;
        }

        .jendela-desc {
            line-height: 1.8;
            margin-bottom: 1.5rem;
            text-align: justify;
        }

        .jendela-features {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 1.5rem 0;
        }

        .feature-item {
            background: rgba(255, 255, 255, 0.15);
            border-radius: 30px;
            padding: 8px 18px;
            font-size: 0.85rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .feature-item i {
            color: #f9c74f;
        }

        .info-box {
            background: rgba(0, 0, 0, 0.3);
            border-radius: 20px;
            padding: 1rem;
            margin: 1.5rem 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 1rem;
        }

        .info-item {
            text-align: center;
            flex: 1;
        }

        .info-item .label {
            font-size: 0.75rem;
            opacity: 0.8;
        }

        .info-item .value {
            font-size: 1.3rem;
            font-weight: bold;
            color: #f9c74f;
        }

        .price-box {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin: 1rem 0;
        }

        .price-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 12px 20px;
            text-align: center;
            flex: 1;
        }

        .price-card .price {
            font-size: 1.5rem;
            font-weight: bold;
            color: #f9c74f;
        }

        .price-card .note {
            font-size: 0.7rem;
            opacity: 0.8;
        }

        .quota-badge {
            display: inline-block;
            background: #e76f51;
            border-radius: 30px;
            padding: 5px 15px;
            font-size: 0.8rem;
            font-weight: bold;
        }

        @media (max-width: 768px) {
            .jendela-content {
                padding: 1.5rem;
            }

            .jendela-content h3 {
                font-size: 1.5rem;
            }

            .info-box {
                flex-direction: column;
            }

            .story-grid {
                grid-template-columns: 1fr;
            }

            .full-story {
                padding: 1.5rem;
            }

            .full-story h1 {
                font-size: 1.6rem;
            }
        }

        .full-article {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 30px;
            padding: 2.5rem;
            margin-top: 30px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .full-article h1 {
            color: #2d6a4f;
            font-size: 2.2rem;
            margin-bottom: 15px;
        }

        .article-meta {
            color: #888;
            font-size: 0.9rem;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #ddd;
        }

        .article-meta i {
            margin-right: 5px;
            color: #f9c74f;
        }

        .article-content {
            line-height: 1.9;
            color: #333;
            text-align: justify;
        }

        .article-content p {
            margin-bottom: 20px;
        }

        .article-icon-large {
            font-size: 3rem;
            color: #2d6a4f;
            margin-bottom: 20px;
        }

        .atraksi-container {
            display: flex;
            flex-direction: column;
            gap: 3rem;
            margin-top: 40px;
        }

        .atraksi-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
            transition: 0.3s;
            display: flex;
            flex-wrap: wrap;
        }

        .atraksi-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 45px rgba(0, 0, 0, 0.2);
            background: white;
        }

        .atraksi-image-side {
            flex: 1;
            min-width: 300px;
            position: relative;
            overflow: hidden;
            background: #f0f0f0;
        }

        .atraksi-main-img {
            width: 100%;
            height: 100%;
            min-height: 350px;
            object-fit: cover;
        }

        .atraksi-content-side {
            flex: 1;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .kategori-badge {
            display: inline-block;
            background: #f9c74f;
            padding: 5px 15px;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: bold;
            margin-bottom: 15px;
            width: fit-content;
        }

        .atraksi-content-side h3 {
            font-size: 1.8rem;
            color: #2d6a4f;
            margin-bottom: 15px;
        }

        .atraksi-content-side p {
            color: #444;
            line-height: 1.8;
            margin-bottom: 20px;
            text-align: justify;
        }

        .atraksi-card:nth-child(even) {
            flex-direction: row-reverse;
        }

        @media (max-width: 768px) {

            .atraksi-card,
            .atraksi-card:nth-child(even) {
                flex-direction: column;
            }

            .atraksi-image-side {
                min-height: 280px;
            }

            .hero-content h1 {
                font-size: 2rem;
            }

            .section {
                padding: 40px 5%;
            }

            .full-article {
                padding: 1.5rem;
            }

            .full-article h1 {
                font-size: 1.6rem;
            }
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.8rem;
            margin-top: 40px;
        }

        .gallery-item {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: 0.3s;
        }

        .gallery-item:hover {
            transform: translateY(-5px);
            background: white;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .gallery-image {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }

        .gallery-item h4 {
            padding: 15px 15px 5px;
            color: #2d6a4f;
        }

        .gallery-item p {
            padding: 0 15px 15px;
            font-size: 0.85rem;
            color: #666;
        }

        .event-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 1.2rem;
            width: 280px;
            border-left: 5px solid #f9c74f;
        }

        .event-card h3 {
            color: #2d6a4f;
        }

        .event-date {
            color: #f9844a;
            font-size: 0.85rem;
            margin: 8px 0;
        }

        .card-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            margin-top: 30px;
        }

        .card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 25px;
            width: 280px;
            text-align: center;
            border-bottom: 4px solid #f9c74f;
            transition: 0.3s;
            cursor: pointer;
        }

        .card:hover {
            background: white;
            transform: translateY(-5px);
        }

        .card a {
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .card h3 {
            color: #2d6a4f;
            margin: 15px 0 10px;
        }

        .card i {
            font-size: 2.5rem;
            color: #2d6a4f;
            margin-bottom: 15px;
        }

        .kontak-info {
            background: rgba(233, 245, 233, 0.95);
            border-radius: 40px;
            padding: 2rem;
            max-width: 700px;
            margin: 0 auto;
        }

        .kontak-info p {
            font-size: 1.1rem;
            margin: 12px 0;
        }

        .kontak-info i {
            width: 40px;
            color: #2d6a4f;
        }

        /* Feedback Section Styles - Sederhana */
        .feedback-container {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 30px;
            padding: 2.5rem;
            max-width: 700px;
            margin: 0 auto;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .feedback-container .form-group {
            margin-bottom: 1.5rem;
        }

        .feedback-container label {
            display: block;
            font-weight: 600;
            color: #2d6a4f;
            margin-bottom: 0.5rem;
        }

        .feedback-container label i {
            margin-right: 8px;
            color: #f9c74f;
        }

        .feedback-container input,
        .feedback-container textarea {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            transition: border-color 0.3s ease;
            background: #fafafa;
        }

        .feedback-container input:focus,
        .feedback-container textarea:focus {
            outline: none;
            border-color: #2d6a4f;
            background: white;
            box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1);
        }

        .feedback-container textarea {
            min-height: 120px;
            resize: vertical;
        }

        .feedback-container .required {
            color: #e74c3c;
            margin-left: 3px;
        }

        .feedback-container .help-text {
            font-size: 0.8rem;
            color: #888;
            margin-top: 4px;
        }

        /* Success message */
        .feedback-success {
            display: none;
            text-align: center;
            padding: 2rem;
        }

        .feedback-success i {
            font-size: 4rem;
            color: #25D366;
            margin-bottom: 1rem;
        }

        .feedback-success h3 {
            color: #2d6a4f;
            margin-bottom: 0.5rem;
        }

        .feedback-success p {
            color: #666;
        }

        footer {
            background: #1e3a2f;
            color: #ddddbb;
            text-align: center;
            padding: 2rem;
        }

        .bg-soft {
            background: transparent;
        }

        .profil-box {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 30px;
            padding: 2rem;
            margin-top: 30px;
        }

        .profil-box h3 {
            color: #2d6a4f;
            margin-bottom: 15px;
        }

        /* MAP SECTION STYLES - GOOGLE MAPS (Informasi di atas, peta di bawah) */
        .map-info-container {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 30px;
            padding: 2rem;
            margin-top: 30px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .map-description {
            padding: 0.5rem;
        }

        .map-description h3 {
            color: #2d6a4f;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .map-description h4 {
            color: #2d6a4f;
            margin: 1rem 0 0.5rem 0;
            font-size: 1.1rem;
        }

        .map-description p {
            line-height: 1.8;
            margin-bottom: 1rem;
            text-align: justify;
        }

        .map-description ul {
            margin-left: 1.5rem;
            margin-bottom: 1rem;
        }

        .map-description li {
            margin: 8px 0;
            line-height: 1.6;
        }

        .btn-map {
            background: #2d6a4f;
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 30px;
            cursor: pointer;
            margin-top: 15px;
            margin-right: 10px;
            font-weight: bold;
            transition: 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
        }

        .btn-map:hover {
            background: #f9c74f;
            color: #2d6a4f;
            transform: translateY(-2px);
        }

        .btn-map i {
            font-size: 1rem;
        }

        .address-box {
            background: #f0f8f0;
            border-radius: 15px;
            padding: 1rem;
            margin-top: 1rem;
            margin-bottom: 1rem;
            border-left: 4px solid #f9c74f;
        }

        .address-box p {
            margin-bottom: 0.5rem;
        }

        .address-box i {
            color: #2d6a4f;
            width: 25px;
        }

        .map-wrapper-bottom {
            margin-top: 2rem;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .map-frame {
            width: 100%;
            height: 450px;
            border: none;
            display: block;
        }

        @media (max-width: 768px) {
            .map-frame {
                height: 350px;
            }
        }

        .pdf-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }

        .pdf-modal-content {
            background: white;
            width: 90%;
            height: 90%;
            border-radius: 20px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .pdf-toolbar {
            background: #2d6a4f;
            padding: 12px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: white;
            flex-wrap: wrap;
        }

        .pdf-toolbar button,
        .pdf-toolbar a {
            background: #f9c74f;
            border: none;
            padding: 8px 18px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: bold;
            margin-left: 12px;
            text-decoration: none;
            color: #2d6a4f;
        }

        .close-modal {
            background: #c93a3a !important;
            color: white !important;
        }

        .pdf-frame {
            flex: 1;
            width: 100%;
            border: none;
        }

        img {
            image-rendering: -webkit-optimize-contrast;
            image-rendering: crisp-edges;
        }

        .error-img {
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f0f0f0;
            color: #999;
            min-height: 300px;
            text-align: center;
            border-radius: 20px;
        }

        .story-badge {
            display: inline-block;
            background: #f9c74f;
            padding: 5px 15px;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: bold;
            margin-bottom: 15px;
        }

        /* BUMDes Table Styles */
        .bumdes-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 1rem;
            font-size: 0.95rem;
        }

        .bumdes-table th {
            background: #2d6a4f;
            color: white;
            padding: 12px 15px;
            text-align: left;
            border: 1px solid #2d6a4f;
        }

        .bumdes-table td {
            padding: 10px 15px;
            border: 1px solid #ddd;
        }

        .bumdes-table tr:nth-child(even) {
            background: #f9f9f9;
        }

        .bumdes-table tr:hover {
            background: #f0f8f0;
        }

        .bumdes-info {
            background: #f0f8f0;
            padding: 1rem;
            border-radius: 10px;
            margin-top: 1rem;
            border-left: 4px solid #f9c74f;
        }

        .bumdes-info p {
            margin-bottom: 0.5rem;
            line-height: 1.6;
        }

        .bumdes-info i {
            color: #2d6a4f;
            width: 25px;
        }

        /* Responsive Mobile & Tablet Fixes */
        @media (max-width: 992px) {
            .navbar {
                padding: 1rem 3%;
                gap: 1rem;
            }
            .nav-links {
                flex-wrap: nowrap;
                overflow-x: auto;
                justify-content: flex-start;
                width: 100%;
                padding-top: 4px;
                padding-bottom: 12px;
                -webkit-overflow-scrolling: touch;
            }
            .nav-links::-webkit-scrollbar {
                height: 4px;
            }
            .nav-links::-webkit-scrollbar-thumb {
                background: rgba(249, 199, 79, 0.5);
                border-radius: 4px;
            }
            .nav-links a {
                display: block;
                background: rgba(255, 255, 255, 0.1);
                border: 1px solid rgba(255, 255, 255, 0.2);
            }
            .hero-content h1 {
                font-size: 3rem;
            }
            .hero-content h2 {
                font-size: 1.4rem !important;
            }
        }

        @media (max-width: 576px) {
            .hero-content h1 {
                font-size: 2.3rem;
            }
            .hero-content h2 {
                font-size: 1.2rem !important;
            }
            .nav-links a {
                font-size: 0.85rem;
                padding: 0.4rem 0.7rem;
            }
            .full-story, .full-article {
                padding: 1.5rem;
            }
            .story-icon-large, .article-icon-large {
                width: 60px;
                height: 60px;
                font-size: 2.5rem;
            }
            .full-story h1, .full-article h1 {
                font-size: 1.8rem;
                line-height: 1.3;
            }
        }