:root {
            --primary-color: #4F78D4;
            --secondary-color: #7DC6FD;
            --dark-color: #1E1E1E;
            --light-color: #F9FAFB;
            --gray-color: #6B7280;
            --navbar-height: 80px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
        }
        
        img {
            max-width: 100%;
            height: auto;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark-color);
            line-height: 1.6;
            padding-top: var(--navbar-height);
        }
        
        h1, h2 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }
        
        h3, h4, p {
            font-family: 'Inter', sans-serif;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 24px;
            border-radius: 6px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            color: white;
            border: 2px solid var(--primary-color);
        }
        
        .btn-primary:hover {
            background-color: #35549c;
            border-color: #35549c;
        }
        
        .btn-secondary {
            background-color: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
        }
        
        .btn-secondary:hover {
            background-color: var(--primary-color);
            color: white;
        }
        
        .section {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 16px;
            color: var(--primary-color);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 12px;
        }
        
        .section-heading {
            font-size: 48px;
            margin-bottom: 24px;
            line-height: 1.2;
        }

        .section-heading + ul {
            margin-top: 16px;
            margin-left: 20px;
            color: var(--gray-color);
            line-height: 1.8;
            margin-bottom: 32px;
        }

        .section-heading + ul li {
            margin-bottom: 8px;
        }
        
        /* Navbar Styles */
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            height: var(--navbar-height);
            display: flex;
            align-items: center; /* Pusatkan vertikal */
        }

        .navbar-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            height: 100%;
        }
        
        .navbar-logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary-color);
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        
        .navbar-logo img {
            max-height: 40px; /* Sesuaikan tinggi maksimal logo */
            width: auto; /* Biarkan lebar menyesuaikan proporsi */
            object-fit: contain; /* Pastikan gambar tidak terdistorsi */
        }

        .navbar-logo i {
            margin-right: 10px;
            font-size: 28px;
        }
        
        .navbar-menu {
            display: flex;
            list-style: none;
        }
        
        .navbar-item {
            margin-left: 30px;
        }
        
        .navbar-link {
            color: var(--dark-color);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .navbar-link:hover {
            color: var(--primary-color);
        }
        
        .navbar-toggle {
            display: none;
            cursor: pointer;
            font-size: 24px;
            color: var(--dark-color);
        }

        /* Dropdown Styles */
        .navbar-item.dropdown {
            position: relative;
            padding-bottom: 15px; /* Memberikan ruang untuk area penghubung */
            margin-bottom: -15px; /* Kompensasi padding */
        }

        .navbar-item.dropdown::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 20px;
            background: transparent;
        }

        .navbar-item.dropdown:hover .dropdown-menu,
        .navbar-item.dropdown:focus-within .dropdown-menu {
            display: block;
        }

        .dropdown-menu {
            display: none;
            position: absolute;
            top: calc(100% + 15px);
            top: 100%;
            left: 0;
            background-color: white;
            min-width: 200px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            border-radius: 4px;
            z-index: 1;
            list-style: none;
            padding: 10px 0;
            margin-top: 0;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .dropdown-item {
            padding: 8px 20px;
        }

        .dropdown-link {
            color: var(--dark-color);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            display: block;
            white-space: nowrap;
        }

        .dropdown-link:hover {
            color: var(--primary-color);
            background-color: rgba(0,0,0,0.02);
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 600px;
            display: flex;
            align-items: center;
            background: linear-gradient(rgba(0, 0, 0, 0.527), rgba(0, 0, 0, 0.2)), url('images/hero.png');
            background-size: cover;
            background-position: center;
            color: white;
            margin-top: 0;
        }
        
        .hero-content {
            max-width: 600px;
        }
        
        .hero h1 {
            font-size: 64px;
            margin-bottom: 24px;
            line-height: 1.2;
        }
        
        .hero p {
            font-size: 20px;
            margin-bottom: 32px;
            opacity: 0.9;
        }
        
        /* Feature Section - Who We Serve */
        .serve-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .serve-points {
            margin-top: 24px;
        }
        
        .serve-point {
            display: flex;
            margin-bottom: 16px;
        }
        
        .serve-point i {
            color: var(--primary-color);
            font-size: 20px;
            margin-right: 16px;
            margin-top: 4px;
        }
        
        .serve-buttons {
            display: flex;
            gap: 16px;
            margin-top: 32px;
        }
        
        .serve-image img {
            width: 100%;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        /* Feature Section - Why Us */
        .why-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .why-points {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
        }
        
        .why-point {
            display: flex;
        }
        
        .why-point i {
            color: var(--primary-color);
            font-size: 24px;
            margin-right: 16px;
            margin-top: 4px;
        }
        
        .why-point-content h4 {
            font-size: 18px;
            margin-bottom: 8px;
        }
        
        /* Solutions Section */
        .solutions-section {
            text-align: center;
        }
        
        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 60px;
        }
        
        .solution-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .solution-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .solution-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .solution-content {
            padding: 24px;
        }
        
        .solution-content h3 {
            margin-bottom: 12px;
            font-size: 20px;
        }
        
        .solution-content p {
            margin-bottom: 20px;
            color: var(--gray-color);
        }
        
        .solution-link {
            color: var(--primary-color);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
        }
        
        .solution-link i {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }
        
        .solution-link:hover i {
            transform: translateX(4px);
        }
        
        /* FAQ Section */
        .faq-section {
            background-color: var(--light-color);
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 16px;
            border-radius: 8px;
            overflow: hidden;
            background: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        .faq-question {
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 600;
        }
        
        .faq-question i {
            transition: transform 0.3s ease;
        }
        
        .faq-question.active i {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        
        .faq-answer.show {
            padding: 0 20px 20px;
            max-height: 500px;
        }
        
        /* CTA Section */
        .cta-section {
            position: relative;
            padding: 100px 0;
            text-align: center;
            color: white;
            background: linear-gradient(rgba(0, 0, 0, 0.616), rgba(0, 0, 0, 0.616)), url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
        }
        
        .cta-content {
            max-width: 700px;
            margin: 0 auto;
        }
        
        .cta-section h1 {
            margin-bottom: 24px;
        }
        
        .cta-section p {
            margin-bottom: 32px;
            font-size: 18px;
            opacity: 0.9;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark-color);
            color: white;
            padding: 60px 0 0;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .footer-logo {
            margin-bottom: 20px;
            font-size: 24px;
            font-weight: 700;
            display: flex;
            align-items: center;
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .footer-logo-container {
            margin-bottom: 20px;
        }

        .footer-logo-container img {
            max-height: 60px;
            width: auto;
        }
        
        .footer-about p {
            color: #D1D5DB;
            margin-bottom: 20px;
        }
        
        .footer-links h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: white;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #D1D5DB;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .footer-bottom {
            padding: 20px 0;
            text-align: center;
            border-top: 1px solid #374151;
            color: #9CA3AF;
            font-size: 14px;
        }
        
        /* Responsive Styles */
        @media (max-width: 1024px) {
            .serve-section,
            .why-section {
                grid-template-columns: 1fr;
            }
            
            .serve-image,
            .why-image {
                order: -1;
            }
            
            .solutions-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        /* ==================== */
        /* RESPONSIVE MOBILE */
        /* ==================== */
        @media (max-width: 768px) {
            /* Navbar Mobile */
            .navbar-container {
                padding: 15px 0;
            }
            
            .navbar-menu {
                position: fixed;
                top: var(--navbar-height);
                left: -100%;
                width: 80%;
                height: calc(100vh - var(--navbar-height));
                background: white;
                flex-direction: column;
                align-items: flex-start;
                padding: 20px;
                box-shadow: 2px 0 10px rgba(0,0,0,0.1);
                transition: left 0.3s ease;
            }
            
            .navbar-menu.active {
                left: 0;
            }
            
            .navbar-item {
                margin: 15px 0;
                width: 100%;
            }
            
            .navbar-link {
                display: block;
                padding: 10px 0;
            }
            
            .navbar-toggle {
                display: block;
            }

            .navbar-item.dropdown {
                width: 100%;
            }
            
            .dropdown-menu {
                position: static;
                display: none;
                width: 100%;
                box-shadow: none;
                padding-left: 20px;
            }
            
            .dropdown-menu.active {
                display: block;
            }
            
            .navbar-item.dropdown:hover .dropdown-menu {
                display: none;
            }            
            
            /* Hero Section */
            .hero {
                height: auto;
                min-height: 500px;
                padding: 60px 0;
            }
            
            .hero h1 {
                font-size: 36px;
                margin-bottom: 15px;
            }
            
            .hero p {
                font-size: 16px;
                margin-bottom: 25px;
            }
            
            /* Sections */
            .section {
                padding: 50px 0;
            }
            
            .section-heading {
                font-size: 32px;
            }
            
            /* Grid Layouts */
            .serve-section,
            .why-section,
            .solutions-grid {
                grid-template-columns: 1fr;
            }
            
            .serve-image,
            .why-image {
                order: -1;
            }
            
            /* Buttons */
            .serve-buttons {
                flex-direction: column;
                gap: 10px;
            }
            
            .btn {
                width: 100%;
                text-align: center;
            }
            
            /* Cards */
            .solution-card {
                margin-bottom: 30px;
            }
            
            /* Footer */
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .footer-logo-container img {
                max-height: 50px;
            }
            
            /* FAQ */
            .faq-question {
                padding: 15px;
                font-size: 15px;
            }
            
            /* CTA Section */
            .cta-section {
                padding: 60px 0;
            }
            
            .cta-section h1 {
                font-size: 32px;
            }

            /* Article Header */
            .article-header h1 {
                font-size: 2rem;
            }

            .library-header h1 {
                font-size: 2rem;
            }
            
            .library-tools {
                flex-direction: column;
                align-items: stretch;
            }
            
            .search-box {
                max-width: 100%;
            }
            
            .filter-dropdown {
                align-self: flex-end;
            }
        }

        /* Untuk layar sangat kecil (misal: iPhone 5/SE) */
        @media (max-width: 375px) {
            .hero h1 {
                font-size: 30px;
            }
            
            .section-heading {
                font-size: 28px;
            }
            
            .navbar-logo img {
                max-height: 30px;
            }
            
            :root {
                --navbar-height: 70px;
            }
        }


        @media (max-width: 768px) {
            .hero h1 {
                font-size: 48px;
            }
            
            .section-heading {
                font-size: 36px;
            }
            
            .solutions-grid {
                grid-template-columns: 1fr;
            }
            
            .serve-buttons {
                flex-direction: column;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Full Width Centered Picture Section */
        .full-picture-section {
            padding: 80px 0;
            background-color: var(--light-color);
        }

        .full-picture-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .full-picture-content {
            text-align: center;
            margin-bottom: 40px;
        }

        .full-picture-content .section-title {
            font-size: 16px;
            color: var(--primary-color);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 12px;
        }

        .full-picture-content .section-heading {
            font-size: 48px;
            margin-bottom: 24px;
            line-height: 1.2;
        }

        .full-picture-content p {
            color: var(--gray-color);
            max-width: 700px;
            margin: 0 auto;
        }

        .full-picture-image {
            width: 100%;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin-bottom: 80px;
        }

        .full-picture-image img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }

        /* Responsive Styles */
        @media (max-width: 1024px) {
            .full-picture-section {
                padding: 60px 0;
            }
            
            .full-picture-content .section-heading {
                font-size: 42px;
            }
        }

        @media (max-width: 768px) {
            .full-picture-section {
                padding: 50px 0;
            }
            
            .full-picture-content .section-heading {
                font-size: 36px;
            }
            
            .full-picture-content p {
                font-size: 15px;
            }
        }

        @media (max-width: 480px) {
            .full-picture-content .section-heading {
                font-size: 32px;
            }
            
            .full-picture-image {
                border-radius: 8px;
            }
        }

        /* About Style */

        .about-header {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/tentang-kami.png');
            background-size: cover;
            background-position: center;
            height: 400px;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
        }
        
        .about-header-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .about-header h1 {
            font-size: 56px;
            margin-bottom: 20px;
        }
        
        .about-header p {
            font-size: 18px;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* About Section */
        .about-section {
            padding: 100px 0;
        }
        
        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .about-content h2 {
            font-size: 36px;
            margin-bottom: 24px;
            line-height: 1.3;
        }
        
        .about-content p {
            margin-bottom: 20px;
            color: var(--gray-color);
            font-size: 16px;
            line-height: 1.8;
        }
        
        .about-image img {
            width: 100%;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        /* Feature Section - Our Role & Vision/Mission */
        .feature-section {
            background-color: var(--light-color);
            padding: 100px 0;
        }
        
        .feature-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }
        
        .feature-box {
            background: white;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .feature-box h2 {
            font-size: 28px;
            margin-bottom: 20px;
            color: var(--primary-color);
        }
        
        .feature-box h3 {
            font-size: 20px;
            margin: 20px 0 10px;
            color: var(--dark-color);
        }
        
        .feature-box ul {
            margin-left: 20px;
            color: var(--gray-color);
            line-height: 1.8;
        }
        
        .feature-box li {
            margin-bottom: 8px;
        }
        
        /* Team Section */
        .team-section {
            padding: 100px 0;
            text-align: center;
        }
        
        .team-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .team-member {
            margin-top: 60px;
        }
        
        .team-member img {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 24px;
            border: 5px solid var(--light-color);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .team-member h3 {
            font-size: 24px;
            margin-bottom: 8px;
        }
        
        .team-member .position {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 20px;
            display: block;
        }
        
        .team-member p {
            color: var(--gray-color);
            line-height: 1.8;
        }
        
        /* Values Section */
        .values-section {
            padding: 100px 0;
            background-color: var(--light-color);
        }
        
        .values-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 60px;
        }
        
        .value-card {
            text-align: center;
            background: white;
            border-radius: 12px;
            padding: 40px 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }
        
        .value-card:hover {
            transform: translateY(-10px);
        }
        
        .value-icon {
            width: 80px;
            height: 80px;
            background-color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 30px;
        }
        
        .value-card h3 {
            font-size: 20px;
            margin-bottom: 15px;
        }
        
        .value-card p {
            color: var(--gray-color);
            font-size: 14px;
            line-height: 1.6;
        }
        
        /* Responsive Styles */
        @media (max-width: 1024px) {
            .about-container,
            .feature-container {
                grid-template-columns: 1fr;
            }
            
            .values-container {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .about-image {
                order: -1;
            }
        }
        
        @media (max-width: 768px) {
            .about-header {
                height: 300px;
            }
            
            .about-header h1 {
                font-size: 36px;
            }
            
            .about-section,
            .feature-section,
            .team-section,
            .values-section {
                padding: 60px 0;
            }
            
            .values-container {
                grid-template-columns: 1fr;
            }
            
            .feature-box {
                padding: 30px;
            }
        }
        
        @media (max-width: 480px) {
            .about-header h1 {
                font-size: 28px;
            }
            
            .about-header p {
                font-size: 16px;
            }
            
            .team-member img {
                width: 150px;
                height: 150px;
            }
        }

        /* Header Section */
        .about-header {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/layanan-kami.png');
            background-size: cover;
            background-position: center;
            height: 400px;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
        }
        
        .about-header-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .about-header h1 {
            font-size: 56px;
            margin-bottom: 20px;
        }
        
        .about-header p {
            font-size: 18px;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* About Section */
        .about-section {
            padding: 100px 0;
        }
        
        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .about-content h2 {
            font-size: 36px;
            margin-bottom: 24px;
            line-height: 1.3;
        }
        
        .about-content p {
            margin-bottom: 20px;
            color: var(--gray-color);
            font-size: 16px;
            line-height: 1.8;
        }
        
        .about-image img {
            width: 100%;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        /* Feature Section - Our Role & Vision/Mission */
        .feature-section {
            background-color: var(--light-color);
            padding: 100px 0;
        }
        
        .feature-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }
        
        .feature-box {
            background: white;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .feature-box h2 {
            font-size: 28px;
            margin-bottom: 20px;
            color: var(--primary-color);
        }
        
        .feature-box h3 {
            font-size: 20px;
            margin: 20px 0 10px;
            color: var(--dark-color);
        }
        
        .feature-box ul {
            margin-left: 20px;
            color: var(--gray-color);
            line-height: 1.8;
        }
        
        .feature-box li {
            margin-bottom: 8px;
        }
        
        /* Team Section */
        .team-section {
            padding: 100px 0;
            text-align: center;
        }
        
        .team-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .team-member {
            margin-top: 60px;
        }
        
        .team-member img {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 24px;
            border: 5px solid var(--light-color);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .team-member h3 {
            font-size: 24px;
            margin-bottom: 8px;
        }
        
        .team-member .position {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 20px;
            display: block;
        }
        
        .team-member p {
            color: var(--gray-color);
            line-height: 1.8;
        }
        
        /* Values Section */
        .values-section {
            padding: 100px 0;
            background-color: var(--light-color);
        }
        
        .values-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 60px;
        }
        
        .value-card {
            text-align: center;
            background: white;
            border-radius: 12px;
            padding: 40px 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }
        
        .value-card:hover {
            transform: translateY(-10px);
        }
        
        .value-icon {
            width: 80px;
            height: 80px;
            background-color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 30px;
        }
        
        .value-card h3 {
            font-size: 20px;
            margin-bottom: 15px;
        }
        
        .value-card p {
            color: var(--gray-color);
            font-size: 14px;
            line-height: 1.6;
        }
        
        /* Responsive Styles */
        @media (max-width: 1024px) {
            .about-container,
            .feature-container {
                grid-template-columns: 1fr;
            }
            
            .values-container {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .about-image {
                order: -1;
            }
        }
        
        @media (max-width: 768px) {
            .about-header {
                height: 300px;
            }
            
            .about-header h1 {
                font-size: 36px;
            }
            
            .about-section,
            .feature-section,
            .team-section,
            .values-section {
                padding: 60px 0;
            }
            
            .values-container {
                grid-template-columns: 1fr;
            }
            
            .feature-box {
                padding: 30px;
            }
        }
        
        @media (max-width: 480px) {
            .about-header h1 {
                font-size: 28px;
            }
            
            .about-header p {
                font-size: 16px;
            }
            
            .team-member img {
                width: 150px;
                height: 150px;
            }
        }

                /* Split Contact Section */
        .split-contact-section {
            padding: 80px 0;
        }

        .split-contact-container {
            display: flex;
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }

        .split-contact-form-container {
            flex: 1;
            padding: 60px;
        }

        .split-contact-image-container {
            flex: 1;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .split-contact-form-header {
            margin-bottom: 40px;
        }

        .split-contact-form-header h2 {
            font-size: 30px;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 16px;
        }

        .split-contact-form-header p {
            color: var(--gray-color);
            line-height: 1.625;
        }

        .split-contact-form .form-group {
            margin-bottom: 24px;
        }

        .split-contact-form .form-label {
            display: block;
            font-size: 14px;
            font-weight: 500;
            color: var(--dark-color);
            margin-bottom: 8px;
        }

        .split-contact-form .form-input {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #E5E7EB;
            border-radius: 6px;
            font-size: 16px;
            transition: all 0.2s ease;
        }

        .split-contact-form .form-input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(79, 120, 212, 0.1);
        }

        .split-contact-form .form-textarea {
            min-height: 120px;
            resize: vertical;
        }

        .split-contact-form .form-submit {
            width: 100%;
            padding: 12px 16px;
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.2s ease;
        }

        .split-contact-form .form-submit:hover {
            background-color: #3f68b8;
        }

        .split-contact-info-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(30, 30, 30, 0.9);
            color: white;
            padding: 40px;
        }

        .split-contact-info-item {
            display: flex;
            margin-bottom: 24px;
        }

        .split-contact-info-item:last-child {
            margin-bottom: 0;
        }

        .split-contact-info-icon {
            flex-shrink: 0;
            width: 40px;
            height: 40px;
            background-color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 16px;
        }

        .split-contact-info-icon i {
            color: white;
            font-size: 16px;
        }

        .split-contact-info-text h4 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .split-contact-info-text p,
        .split-contact-info-text a {
            color: #D1D5DB;
            font-size: 14px;
            line-height: 1.5;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .split-contact-info-text a:hover {
            color: white;
        }

        /* Responsive Styles */
        @media (max-width: 1024px) {
            .split-contact-container {
                flex-direction: column;
            }
            
            .split-contact-form-container {
                padding: 40px;
            }
            
            .split-contact-image-container {
                min-height: 400px;
            }
        }

        @media (max-width: 768px) {
            .split-contact-section {
                padding: 60px 0;
            }
            
            .split-contact-form-container {
                padding: 30px;
            }
            
            .split-contact-info-overlay {
                padding: 30px;
            }
        }

        @media (max-width: 480px) {
            .split-contact-form-container {
                padding: 24px;
            }
            
            .split-contact-form-header h2 {
                font-size: 24px;
            }
            
            .split-contact-info-overlay {
                padding: 24px;
            }
        }

        /* Enhanced Form Validation Styles */
        .split-contact-form .form-input:required,
        .split-contact-form .form-textarea:required {
            border-left: 3px solid var(--primary-color);
        }

        .split-contact-form .form-input:required:invalid,
        .split-contact-form .form-textarea:required:invalid {
            border-left-color: #EF4444;
        }

        .split-contact-form .form-input:required:valid,
        .split-contact-form .form-textarea:required:valid {
            border-left-color: #10B981;
        }

        .split-contact-form .error-message {
            display: none;
            color: #EF4444;
            font-size: 12px;
            margin-top: 4px;
        }

        .split-contact-form .form-group.invalid .error-message {
            display: block;
        }

        .split-contact-form .form-group.invalid .form-input,
        .split-contact-form .form-group.invalid .form-textarea {
            border-color: #EF4444;
        }

        .split-contact-form .consent-checkbox {
            margin-right: 8px;
        }

        .split-contact-form .consent-label {
            display: flex;
            align-items: flex-start;
            font-size: 14px;
            color: var(--gray-color);
        }

        .split-contact-form .consent-group.invalid .consent-label {
            color: #EF4444;
        }

        /* Success Message Styles */
        #form-success-message {
            display: none; /* Awalnya disembunyikan */
            margin-top: 30px;
            animation: fadeIn 0.5s ease-in-out;
        }

        .success-message-container {
            background: #f0fff4;
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid #38a169;
        }

        .success-message-container h3 {
            color: #38a169;
            margin-bottom: 10px;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Loading Indicator */
        .form-loading {
            display: none;
            text-align: center;
            padding: 15px;
        }

        .form-loading-spinner {
            border: 3px solid #f3f3f3;
            border-top: 3px solid var(--primary-color);
            border-radius: 50%;
            width: 20px;
            height: 20px;
            animation: spin 1s linear infinite;
            margin: 0 auto;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* New Styles for Tax Services */
        .advantages-section {
            background-color: var(--light-color);
        }

        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .advantage-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }

        .advantage-card:hover {
            transform: translateY(-5px);
        }

        .advantage-icon {
            font-size: 32px;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .service-card {
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }

        .service-icon {
            font-size: 24px;
            color: var(--primary-color);
            margin-top: 4px;
        }

        .tax-cta {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        }

        /* New Styles for Tax Services */
        .advantages-section {
            background-color: var(--light-color);
        }

        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .advantage-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }

        .advantage-card:hover {
            transform: translateY(-5px);
        }

        .advantage-icon {
            font-size: 32px;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .service-card {
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }

        .service-icon {
            font-size: 24px;
            color: var(--primary-color);
            margin-top: 4px;
        }

        .tax-cta {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        }

                /* Article/Blog Content */
        .article-header {
            padding: 4rem 0 2rem;
            text-align: center;
        }
        
        .article-header h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--dark-color);
        }
        
        .article-meta {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 2rem;
            color: var(--gray-color);
        }
        
        .article-meta span {
            margin: 0 0.5rem;
        }
        
        .article-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 2rem 0;
        }
        
        .article-content p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        
        .article-content h2 {
            margin: 2rem 0 1rem;
            color: var(--primary-color);
        }
        
        .article-image {
            width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 2rem 0;
        }

        .no-articles-message {
            text-align: center;
            padding: 40px;
            font-size: 1.2rem;
            color: #666;
            display: none;
            grid-column: 1 / -1;
        }

                /* Library Header */
        .library-header {
            padding: 4rem 0 2rem;
            text-align: center;
        }
        
        .library-header h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--dark-color);
        }
        
        .library-header p {
            max-width: 700px;
            margin: 0 auto 2rem;
            color: var(--gray-color);
            font-size: 1.1rem;
        }
        
        /* Search and Filter Styles */
        .library-tools {
            display: flex;
            justify-content: space-between;
            margin-bottom: 2rem;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .search-box {
            position: relative;
            flex: 1;
            min-width: 250px;
        }

        .search-box i {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: #555;
            font-size: 0.95rem;
            z-index: 2;
        }

        .search-box input {
            width: 100%;
            padding: 12px 16px 12px 44px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            font-size: 0.95rem;
            font-family: 'Inter', sans-serif;
            color: #333;
            background-color: white;
            transition: all 0.2s ease;
            box-shadow: 0 1px 2px rgba(0,0,0,0.05);
            appearance: none;
        }

        .search-box input:hover {
            border-color: #b3b3b3;
            box-shadow: 0 1px 4px rgba(0,0,0,0.1);
        }

        .search-box input:focus {
            outline: none;
            border-color: #3a7bd5;
            box-shadow: 0 0 0 2px rgba(58,123,213,0.2);
        }

        /* Updated Filter Dropdown Styles */
        .filter-dropdown {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .filter-select {
            padding: 12px 40px 12px 16px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            background-color: white;
            font-size: 0.95rem;
            font-family: 'Inter', sans-serif;
            color: #333;
            cursor: pointer;
            appearance: none;
            transition: all 0.2s ease;
            box-shadow: 0 1px 2px rgba(0,0,0,0.05);
            min-width: 160px;
        }

        /* Custom dropdown arrow */
        .filter-select {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23555555' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 14px center;
            background-size: 14px;
        }

        /* Hover state */
        .filter-select:hover {
            border-color: #b3b3b3;
            box-shadow: 0 1px 4px rgba(0,0,0,0.1);
        }

        /* Focus state */
        .filter-select:focus {
            outline: none;
            border-color: #3a7bd5;
            box-shadow: 0 0 0 2px rgba(58,123,213,0.2);
        }

        .no-results {
            text-align: center;
            padding: 2rem;
            grid-column: 1 / -1;
            color: #666;
            width: 100%;
        }
        
        /* Article Grid */
        .article-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        
        .article-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .card-link {
            display: flex;
            flex-direction: column;
            height: 100%;
            color: inherit; /* Maintain text color */
            text-decoration: none; /* Remove underline */
        }

        .card-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .card-content {
            padding: 1.5rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .card-content h3 {
            font-size: 1.3rem;
            margin-bottom: 0.8rem;
            line-height: 1.4;
            padding: 0 0.5rem; /* Added horizontal padding */
        }

        .card-content p {
            color: #6B7280;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
            padding: 0 0.5rem; /* Added horizontal padding */
            line-height: 1.6;
        }
        
        .card-category {
            display: inline-block;
            background-color: var(--primary-color);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 1rem;
            align-self: flex-start;
        }
        
        .card-title {
            font-size: 1.3rem;
            margin-bottom: 0.8rem;
            line-height: 1.4;
            padding: 0 0.5rem; /* Added horizontal padding */
        }
        
        .card-excerpt {
            color: #6B7280;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
            padding: 0 0.5rem; /* Added horizontal padding */
            line-height: 1.6;
        }
        
        .card-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
            color: #6B7280;
            margin-top: auto; /* Pushes meta to bottom */
            padding: 0.5rem 0.5rem 0; /* Added padding */
            border-top: 1px solid #eee; /* Optional separator */
        }
        
        .card-author {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .author-avatar {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            object-fit: cover;
        }
        
        /* Hover effects */
        .article-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        }
        
        .article-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        }


    /* Pagination Styles */
        .pagination {
            display: flex;
            justify-content: center;
            margin: 3rem 0;
        }
        
        .pagination-list {
            display: flex;
            list-style: none;
            gap: 0.5rem;
        }
        
        .pagination-item a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-weight: 600;
            transition: background-color 0.3s, color 0.3s;
            color: inherit; /* Inherit text color */
        }
        
        /* Remove default link states */
        .pagination-item a:link,
        .pagination-item a:visited,
        .pagination-item a:active {
            color: inherit;
        }
        
        /* Remove focus outline */
        .pagination-item a:focus {
            outline: none;
        }
        
        /* Active state styles */
        .pagination-item.active a {
            background-color: var(--primary-color);
            color: white;
        }
        
        /* Hover state */
        .pagination-item:not(.active) a:hover {
            background-color: rgba(79, 70, 229, 0.1);
            color: #4F46E5;
        }

        .view-more-link {
            color: #2c5aa0; /* Your primary blue color - adjust as needed */
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
        }

        .view-more-link:hover {
            color: #1a3a6b; /* Darker blue on hover */
            transform: translateX(5px); /* Subtle arrow animation */
        }

        .view-more-link i {
            transition: transform 0.3s ease;
        }

        .view-more-link:hover i {
            transform: translateX(3px);
        }

        /* Guide Cards */
.guide-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.guide-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* Type badges */
.type-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.type-badge.video {
    background-color: #610ca7;
    color: white;
}

.type-badge.static {
    background-color: #56a5ff;
    color: white;
}

.guide-card.static .type-badge {
    background: #2c8fff;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #6B7280;
    margin-top: auto;
    padding: 0.5rem 0.5rem 0;
    border-top: 1px solid #eee;
}

.card-meta i {
    margin-right: 5px;
}

.guide-card.video .card-meta {
    color: #ff4757;
    font-weight: 500;
}

@media (max-width: 768px) {
    .article-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

.institution-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    gap: 15px;
}

.institution-logos .logo-link {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    padding: 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.institution-logos img {
    max-width: 100%;
    max-height: 110px;
    width: auto;
    object-fit: contain;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.article-content {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: #222;
  line-height: 1.75;
  font-size: 16px;
  background: transparent;
  padding: 2.25rem 0; /* jarak vertikal area artikel */
}

/* Inner container (sesuaikan kalau kamu pakai .container global) */
.article-content .container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Paragraph & lead */
.article-content p {
  margin: 0 0 1.15rem 0;
  font-size: 1rem;
  color: #222;
}
.article-content p.lead,
.article-content > .lead {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #2b2b2b;
  margin-bottom: 1.25rem;
  font-weight: 500;
}

/* Headings - scale dan jarak */
.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
  font-family: "Playfair Display", serif;
  color: #0f1724;
  margin: 1.5rem 0 0.65rem 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.article-content h1 { font-size: 2rem; }
.article-content h2 { font-size: 1.5rem; }
.article-content h3 { font-size: 1.25rem; }
.article-content h4 { font-size: 1.125rem; }

.article-content ul,
.article-content ol {
  margin: 0 0 1rem 1.5rem;
  padding-left: 1.25rem; 
  list-style-position: outside; 
}

.article-content li {
  margin-bottom: 0.4rem;
  line-height: 1.6;
}

/* Strong, emphasis */
.article-content strong { font-weight: 600; }
.article-content em { font-style: italic; }

/* Links */
.article-content a {
  color: #0b67c2;
  text-decoration: none;
  border-bottom: 1px dashed rgba(11,103,194,0.18);
}
.article-content a:hover,
.article-content a:focus {
  color: #084a8f;
  border-bottom-style: solid;
  text-decoration: none;
}

/* Images & figures */
.article-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1rem auto;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(8,20,40,0.06);
}
.article-content figure {
  margin: 1rem 0;
  text-align: center;
}
.article-content figcaption {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #6b7280; /* gray */
}

/* Blockquote */
.article-content blockquote {
  margin: 1rem 0;
  padding: 0.9rem 1.15rem;
  border-left: 4px solid #e6e6e6;
  background: rgba(11,67,122,0.03);
  color: #1f2937;
  border-radius: 6px;
  font-style: italic;
}
.article-content blockquote p { margin: 0; }

/* Inline code & code blocks */
.article-content code {
  font-family: ui-monospace, SFMono-Regular, "Roboto Mono", "Courier New", monospace;
  background: rgba(27,31,35,0.06);
  padding: 0.15rem 0.35rem;
  border-radius: 4px;
  font-size: 0.95em;
}
.article-content pre {
  overflow: auto;
  padding: 0.9rem;
  border-radius: 8px;
  margin: 1rem 0;
  background: #0f172433; /* subtle */
  font-family: ui-monospace, SFMono-Regular, "Roboto Mono", monospace;
  font-size: 0.9rem;
}

/* Tables */
.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.95rem;
}
.article-content th,
.article-content td {
  padding: 0.6rem 0.75rem;
  border: 1px solid #e6e6e9;
  text-align: left;
}
.article-content thead th {
  background: #f8fafc;
  font-weight: 600;
}

/* Horizontal rule */
.article-content hr {
  border: none;
  height: 1px;
  background: #e9ecef;
  margin: 1.25rem 0;
}

/* Small print / captions / meta inside article (if ada) */
.article-content small,
.article-content .caption {
  color: #6b7280;
  font-size: 0.875rem;
}

/* Accessibility & responsive tweaks */
@media (max-width: 640px) {
  .article-content .container { padding: 0 0.75rem; }
  .article-content { font-size: 15px; line-height: 1.7; }
  .article-content h1 { font-size: 1.6rem; }
}

/* Utility: nice spacing for first paragraph under heading */
.article-content h1 + p,
.article-content h2 + p,
.article-content h3 + p {
  margin-top: 0.35rem;
}