:root {
    --primary: #1E3A8A;
    /* Biru utama */
    --secondary: #DC2626;
    /* Merah untuk aksen */
    --accent: #F59E0B;
    /* Kuning emas */
    --light: #FFFFFF;
    /* Putih */
    --dark: #1F2937;
    /* Hitam kebiruan */
    --gray: #6B7280;
    /* Kelabu */
    --light-blue: #EFF6FF;
    /* Biru muda */
}

/* Reset dan Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: #F9FAFB;
    padding-top: 80px;
    /* Untuk header fixed */
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--primary);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: var(--light);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    margin-right: 15px;
}

.logo-text h2 {
    font-size: 1.3rem;
    margin-bottom: 3px;
    color: var(--primary);
}

.logo-text p {
    font-size: 0.7rem;
    color: var(--gray);
    font-weight: 600;
}

.reg-number {
    background-color: var(--light-blue);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    margin-top: 3px;
    display: inline-block;
}

/* Navigation Styles */
nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--secondary);
}

.donate-btn {
    background-color: var(--secondary);
    color: white;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.donate-btn:hover {
    background-color: #B91C1C;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(220, 38, 38, 0.2);
}

/* Mobile Menu Styles */
.mobile-menu {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--primary);
    z-index: 1001;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(30, 58, 138, 0.8), rgba(30, 58, 138, 0.8)), url('gambar/two-hand');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    color: white;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
}

.btn i {
    margin-left: 8px;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--secondary);
    color: white;
}

.btn-primary:hover {
    background-color: #B91C1C;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(220, 38, 38, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Stats Section */
.stats {
    background-color: var(--primary);
    color: white;
    padding: 70px 0;
    position: relative;
    margin-top: -50px;
    z-index: 10;
    border-radius: 10px;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
    color: white;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* About Section */
.about {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.3rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary);
    border-radius: 2px;
}

.section-header p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
    position: relative;
}

.about-img img {
    transition: transform 0.5s;
}

.about-img:hover img {
    transform: scale(1.03);
}

.about-img:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(30, 58, 138, 0.3), transparent);
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--gray);
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.vm-card {
    background-color: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--accent);
    transition: transform 0.3s;
}

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

.vm-card h4 {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.vm-card h4 i {
    margin-right: 10px;
    color: var(--accent);
}

/* MALAM ANUGERAH CUSTOM CSS - WON'T AFFECT OTHER SECTIONS */
#malam-anugerah {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f7faff 100%);
    font-family: 'Open Sans', sans-serif;
    position: relative;
    overflow: hidden;
}

#malam-anugerah .ma-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

#malam-anugerah .ma-header {
    text-align: center;
    margin-bottom: 3rem;
}

#malam-anugerah .ma-badge {
    display: inline-block;
    background: #2b6cb0;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#malam-anugerah .ma-title {
    font-size: 2.5rem;
    color: #2a4365;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

#malam-anugerah .ma-subtitle {
    font-size: 1.5rem;
    color: #4299e1;
    margin-bottom: 1.5rem;
    font-style: italic;
}

#malam-anugerah .ma-organizer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: #4a5568;
}

#malam-anugerah .ma-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

#malam-anugerah .ma-highlight-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #4299e1;
}

#malam-anugerah .ma-highlight-icon {
    font-size: 1.8rem;
    color: #2b6cb0;
    min-width: 40px;
    text-align: center;
}

#malam-anugerah .ma-highlight-title {
    font-size: 1.1rem;
    color: #2a4365;
    margin-bottom: 0.3rem;
}

#malam-anugerah .ma-highlight-text {
    font-size: 0.95rem;
    color: #4a5568;
    margin: 0;
}

#malam-anugerah .ma-content-section {
    margin-bottom: 3rem;
}

#malam-anugerah .ma-section-title {
    font-size: 1.5rem;
    color: #2a4365;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #bee3f8;
}

#malam-anugerah .ma-section-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1rem;
}

#malam-anugerah .ma-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

#malam-anugerah .ma-list-item {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
}

#malam-anugerah .ma-list-item:before {
    content: "•";
    color: #4299e1;
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 0.3rem;
}

#malam-anugerah .ma-awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

#malam-anugerah .ma-award-card {
    background: #f8fafc;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid #e2e8f0;
}

#malam-anugerah .ma-award-icon {
    font-size: 1.8rem;
    color: #2b6cb0;
    margin-bottom: 1rem;
}

#malam-anugerah .ma-award-title {
    font-size: 1.1rem;
    color: #2a4365;
    margin-bottom: 0.5rem;
}

#malam-anugerah .ma-award-desc {
    font-size: 0.9rem;
    color: #718096;
    margin: 0;
}

#malam-anugerah .ma-cta {
    text-align: center;
    background: #2b6cb0;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 3rem;
}

#malam-anugerah .ma-cta-title {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}

#malam-anugerah .ma-cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

#malam-anugerah .ma-cta-button {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background: white;
    color: #2b6cb0;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    margin: 0 0.5rem;
}

#malam-anugerah .ma-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #malam-anugerah {
        padding: 3rem 0;
    }

    #malam-anugerah .ma-title {
        font-size: 2rem;
    }

    #malam-anugerah .ma-subtitle {
        font-size: 1.3rem;
    }

    #malam-anugerah .ma-organizer {
        flex-direction: column;
    }

    #malam-anugerah .ma-awards-grid {
        grid-template-columns: 1fr;
    }

    #malam-anugerah .ma-cta-button {
        display: block;
        margin: 0.5rem auto;
        max-width: 250px;
    }
}

/* MALAM ANUGERAH 2025 - ISOLATED CSS */
.ma-docs-section {
    font-family: 'Open Sans', sans-serif;
    background: #f8fafc;
    padding: 4rem 0;
}

.ma-docs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ma-docs-header {
    text-align: center;
    margin-bottom: 3rem;
}

.ma-docs-title {
    font-size: 2.2rem;
    color: #2a4365;
    margin-bottom: 1rem;
    font-weight: 700;
}

.ma-docs-subtitle {
    font-size: 1.3rem;
    color: #4299e1;
    margin-bottom: 2rem;
}

.ma-docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.ma-doc-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.ma-doc-card:hover {
    transform: translateY(-5px);
}

.ma-doc-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 1px solid #e2e8f0;
}

.ma-doc-pdf {
    width: 100%;
    height: 250px;
    background: #f0f4f8;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #e2e8f0;
}

.ma-doc-pdf-icon {
    font-size: 4rem;
    color: #e53e3e;
}

.ma-doc-content {
    padding: 1.5rem;
}

.ma-doc-title {
    font-size: 1.1rem;
    color: #2a4365;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.ma-doc-date {
    font-size: 0.9rem;
    color: #718096;
    margin-bottom: 1rem;
    display: block;
}

.ma-doc-desc {
    font-size: 0.95rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.ma-doc-btn {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: #4299e1;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.ma-doc-btn:hover {
    background: #3182ce;
}

@media (max-width: 768px) {
    .ma-docs-title {
        font-size: 1.8rem;
    }
    
    .ma-docs-subtitle {
        font-size: 1.1rem;
    }
    
    .ma-docs-grid {
        grid-template-columns: 1fr;
    }
    
    .ma-doc-image, .ma-doc-pdf {
        height: 200px;
    }
}


/* Organization Chart Section */
.org-chart {
    padding: 100px 0;
    background-color: #F8FAFB;
}

.org-container {
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-top: 50px;
}

.org-level {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.org-position {
    background-color: white;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    width: 250px;
    position: relative;
    border: 1px solid #E5E7EB;
    transition: all 0.3s;
}

.org-position:hover {
    border-color: var(--primary);
}

.org-position.main {
    background-color: var(--primary);
    color: white;
    border: none;
}

.org-position.main:hover {
    box-shadow: 0 10px 20px rgba(30, 58, 138, 0.2);
}

.org-position h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.org-position.main h3 {
    color: white;
}

.org-position p {
    font-weight: 600;
    color: var(--dark);
}

.org-position.main p {
    color: white;
}

.org-sub {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #E5E7EB;
}

.org-position.main .org-sub {
    border-top: 1px dashed rgba(255, 255, 255, 0.3);
}

.org-sub p:first-child {
    font-size: 0.8rem;
    font-weight: normal;
    margin-bottom: 5px;
    color: var(--gray);
}

.org-position.main .org-sub p:first-child {
    color: rgba(255, 255, 255, 0.8);
}

.org-sub p:last-child {
    font-size: 0.9rem;
}

.org-connector {
    height: 40px;
    position: relative;
    display: flex;
    justify-content: center;
}

.org-line {
    width: 2px;
    height: 100%;
    background-color: #CBD5E1;
}

.org-connector.branch {
    display: flex;
    justify-content: space-around;
}

.org-connector.branch .org-line.left {
    margin-right: 120px;
}

.org-connector.branch .org-line.right {
    margin-left: 120px;
}

.org-connector.multi .org-line {
    width: 1px;
}

.org-members {
    list-style: none;
    text-align: center;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.org-members li {
    background-color: #F3F4F6;
    padding: 10px;
    border-radius: 6px;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.org-members li:hover {
    background-color: #E5E7EB;
}

/* Programs Section */
.programs {
    padding: 100px 0;
    background-color: white;
}

.program-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 10px;
}

.tab-btn {
    padding: 10px 25px;
    background-color: #F3F4F6;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.tab-btn.active {
    background-color: var(--primary);
    color: white;
}

.tab-btn:hover:not(.active) {
    background-color: #E5E7EB;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.program-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #E5E7EB;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.program-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.program-img img {
    transition: transform 0.5s;
}

.program-card:hover .program-img img {
    transform: scale(1.1);
}

.program-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--secondary);
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
}

.program-content {
    padding: 25px;
}

.program-content h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.program-content p {
    margin-bottom: 20px;
    color: var(--gray);
    font-size: 0.95rem;
}

.program-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #E5E7EB;
}

.program-meta span {
    display: flex;
    align-items: center;
}

.program-meta i {
    margin-right: 5px;
    font-size: 0.9rem;
}

.read-more {
    color: var(--secondary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
}

.read-more i {
    margin-left: 8px;
    transition: transform 0.3s;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Values Section */
.values {
    padding: 100px 0;
    background-color: #F8FAFB;
}

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

.value-card {
    background-color: white;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    border-top: 4px solid var(--primary);
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    width: 70px;
    height: 70px;
    background-color: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    color: var(--primary);
}

.value-card h4 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.value-card p {
    color: var(--gray);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(rgba(30, 58, 138, 0.9), rgba(30, 58, 138, 0.9)), url('gambar/two-hands-7035954_1920.jpg');
    background-size: cover;
    background-position: center;
    color: white;
}

.contact .section-header h2 {
    color: white;
}

.contact .section-header h2:after {
    background-color: var(--accent);
}

.contact .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: white;
}

.contact-item {
    display: flex;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-icon {
    background-color: var(--accent);
    color: var(--primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-text h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
    color: white;
}

.contact-text p,
.contact-text a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-text a:hover {
    color: white;
    text-decoration: underline;
}

.contact-form {
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    font-family: 'Open Sans', sans-serif;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
}

textarea.form-control {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    background-color: var(--secondary);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background-color: #B91C1C;
    transform: translateY(-2px);
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 70px 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary);
}

.footer-about p {
    margin-bottom: 20px;
    color: #D1D5DB;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    margin-right: 10px;
}

.footer-logo-text h3 {
    font-size: 1.1rem;
    margin-bottom: 3px;
    padding-bottom: 0;
}

.footer-logo-text h3:after {
    display: none;
}

.footer-logo-text p {
    font-size: 0.7rem;
    color: #9CA3AF;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.footer-social a:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #D1D5DB;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.footer-links a i {
    margin-right: 8px;
    font-size: 0.8rem;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-newsletter p {
    color: #D1D5DB;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
}

.newsletter-input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 6px 0 0 6px;
    font-family: 'Open Sans', sans-serif;
}

.newsletter-btn {
    background-color: var(--secondary);
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-btn:hover {
    background-color: #B91C1C;
}

.copyright {
    text-align: center;
    padding: 20px 0;
    background-color: #111827;
    color: #9CA3AF;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 992px) {

    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .about-img {
        order: -1;
    }

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

    .hero h1 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {

    /* Mobile Menu Styles */
    .mobile-menu {
        display: block;
    }

    nav ul {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        transition: all 0.3s ease;
    }

    nav ul.show {
        display: flex;
    }

    nav ul li {
        margin: 15px 0;
        text-align: center;
    }

    nav ul li a {
        padding: 10px 20px;
        display: block;
        color: var(--dark);
    }

    /* Other responsive adjustments */
    .hero {
        min-height: 600px;
        text-align: center;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .org-level {
        flex-direction: column;
        align-items: center;
    }

    .org-connector.branch {
        height: 20px;
        flex-direction: column;
        align-items: center;
    }

    .org-connector.branch .org-line.left,
    .org-connector.branch .org-line.right {
        margin: 0;
        width: 1px;
        height: 20px;
    }

    .stats-container {
        grid-template-columns: 1fr 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-btns {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-input {
        border-radius: 6px;
        margin-bottom: 10px;
    }

    .newsletter-btn {
        border-radius: 6px;
        padding: 10px;
    }
}


/* Hero Section Gambar oleh href=httpspixabay.comidusersteamworkdefinition-25894307utm_source=link-attribution&utm_medium=referral&utm_campaign=image&utm_content=7035954teamworkdefinitiona dari a href=httpspixabay.comidutm_source=link-attribution&utm_medium=referral&utm_campaign=image&utm_content=7035954Pixabaya*/