/* ==================================================
   VISI MISI - PREMIUM MODERN REDESIGN
   Professional Government Portal with Vibrant Design
   ================================================== */

/* Hide old sections */
.page-hero,
.hero-split,
.hero-split-grid,
.hero-split-left,
.hero-split-right {
    display: none !important;
}

/* ==================================================
   HERO SECTION - Vibrant Gradient Background
   ================================================== */
.hero-modern {
    min-height: 100vh;
    background: linear-gradient(135deg,
            #059669 0%,
            #10b981 25%,
            #34d399 50%,
            #10b981 75%,
            #059669 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    padding: 8rem 2rem 2rem;
    overflow: hidden;
}

/* Animated gradient background */
@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Decorative floating orbs */
.hero-modern::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero-modern::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.hero-content-center {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

/* Premium badge with glow */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    }
}

.hero-badge i {
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Dramatic hero title */
.hero-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    color: white;
    margin: 0 0 2rem;
    text-shadow:
        0 2px 10px rgba(0, 0, 0, 0.2),
        0 4px 20px rgba(0, 0, 0, 0.15);
    letter-spacing: -0.02em;
}

.highlight-green {
    color: #fff;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 8px rgba(253, 224, 71, 0.4));
    font-weight: 900;
}

.hero-tagline {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Hide stats - keep hero clean */
.hero-stats {
    display: none !important;
}

/* ==================================================
   VISI SECTION - Glassmorphism Cards
   ================================================== */
.visi-destination {
    padding: 5rem 0 4rem;
    background: linear-gradient(to bottom, #f9fafb 0%, white 100%);
    position: relative;
}

.visi-destination::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            #10b981 50%,
            transparent 100%);
}

.section-header-center {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: none;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 1rem;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Premium glassmorphism quote card */
.visi-quote-card {
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.9) 0%,
            rgba(240, 253, 250, 0.9) 100%) !important;
    backdrop-filter: blur(30px) !important;
    -webkit-backdrop-filter: blur(30px) !important;
    padding: 4rem 4rem !important;
    border-radius: 30px !important;
    border: 3px solid transparent !important;
    background-image:
        linear-gradient(white, white),
        linear-gradient(135deg, #10b981 0%, #34d399 50%, #10b981 100%) !important;
    background-origin: border-box !important;
    background-clip: padding-box, border-box !important;
    box-shadow:
        0 20px 60px rgba(16, 185, 129, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset !important;
    margin-bottom: 4rem !important;
    max-width: 1000px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    position: relative !important;
    overflow: hidden !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.visi-quote-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 30px 80px rgba(16, 185, 129, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

/* Decorative background pattern */
.visi-quote-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.quote-icon {
    font-size: 4rem;
    color: #10b981;
    opacity: 0.2;
    margin-bottom: 2rem;
    text-align: center;
}

.visi-statement {
    font-size: 2.25rem !important;
    font-weight: 800 !important;
    line-height: 1.5 !important;
    color: #0f172a !important;
    margin: 0 0 2.5rem !important;
    text-align: center !important;
    position: relative !important;
    z-index: 1 !important;
}

/* Highlighted pillar text with gradient */
.pillar-text {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    position: relative !important;
    display: inline-block !important;
    font-weight: 900 !important;
}

.pillar-text::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 35%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(52, 211, 153, 0.2) 100%);
    z-index: -1;
    border-radius: 4px;
}

.visi-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 600;
    background: rgba(16, 185, 129, 0.08);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.visi-meta i {
    color: #10b981;
    font-size: 1.1rem;
}

/* ==================================================
   PILLAR CARDS - Vibrant Gradients
   ================================================== */
.visi-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.pillar-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 25px;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 0, 0, 0.02) inset;
    border: 2px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Gradient background for each pillar */
.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}

.pillar-card:nth-child(1)::before {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(5, 150, 105, 0.1) 100%);
}

.pillar-card:nth-child(2)::before {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(37, 99, 235, 0.1) 100%);
}

.pillar-card:nth-child(3)::before {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.05) 0%, rgba(234, 88, 12, 0.1) 100%);
}

.pillar-card:nth-child(4)::before {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.05) 0%, rgba(147, 51, 234, 0.1) 100%);
}

.pillar-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(0, 0, 0, 0.02) inset;
    border-color: currentColor;
}

.pillar-card:hover::before {
    opacity: 1;
}

.pillar-card:nth-child(1):hover {
    border-color: #10b981;
}

.pillar-card:nth-child(2):hover {
    border-color: #3b82f6;
}

.pillar-card:nth-child(3):hover {
    border-color: #f97316;
}

.pillar-card:nth-child(4):hover {
    border-color: #a855f7;
}

/* Icon styling */
.pillar-icon {
    width: 90px;
    height: 90px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin: 0 auto 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pillar-card:hover .pillar-icon {
    transform: scale(1.15) rotate(-8deg);
}

.pillar-icon.green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4);
}

.pillar-icon.blue {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
}

.pillar-icon.orange {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.4);
}

.pillar-icon.purple {
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
    box-shadow: 0 15px 35px rgba(168, 85, 247, 0.4);
}

.pillar-card h4 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 1rem;
    position: relative;
    z-index: 1;
}

.pillar-card p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ==================================================
   MISI SECTION - Enhanced Cards
   ================================================== */
.misi-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, white 0%, #f9fafb 100%);
}

.section-header-center .icon-badge {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.icon-badge i {
    font-size: 2.5rem;
    color: white;
}

.section-title-main {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 1rem;
}

.section-desc {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

.misi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.misi-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid #f1f5f9;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Gradient accent bar */
.misi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #10b981 0%, #059669 100%);
}

.misi-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.15);
    border-color: #10b981;
}

.misi-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 4rem;
    font-weight: 900;
    color: #10b981;
    opacity: 0.08;
    line-height: 1;
}

.misi-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.misi-icon i {
    font-size: 2rem;
    color: white;
}

.misi-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 1rem;
}

.misi-desc {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.misi-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.misi-features span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    color: #059669;
    font-weight: 600;
}

.misi-features i {
    color: #10b981;
}

/* ==================================================
   CTA SECTION - Enhanced
   ================================================== */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.cta-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-icon i {
    font-size: 3rem;
    color: white;
}

.cta-text {
    flex: 1;
}

.cta-text h3 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin: 0 0 0.5rem;
}

.cta-text p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-primary {
    background: white;
    color: #059669;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

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

.btn-outline:hover {
    background: white;
    color: #059669;
    transform: translateY(-4px);
}

/* ==================================================
   RESPONSIVE DESIGN
   ================================================== */
@media (max-width: 1024px) {
    .visi-pillars {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .cta-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-modern {
        min-height: 90vh;
        padding: 8rem 1.5rem 3rem;
    }

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

    .hero-tagline {
        font-size: 1.125rem;
    }

    .hero-badge {
        font-size: 0.875rem;
        padding: 0.75rem 1.5rem;
    }

    .visi-pillars {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .visi-statement {
        font-size: 1.5rem !important;
    }

    .visi-quote-card {
        padding: 2.5rem 2rem !important;
    }

    .section-title {
        font-size: 2rem;
    }

    .pillar-card {
        padding: 2rem 1.5rem;
    }

    .misi-card {
        padding: 2rem 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}
/* Download & Share Section */
.download-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f0fdfa 0%, #ffffff 100%);
}

.download-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid #10b981;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.download-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
}

.download-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    flex-shrink: 0;
}

.download-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.5rem;
}

.download-text p {
    font-size: 1rem;
    color: #64748b;
    margin: 0;
}

.download-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-download,
.btn-print {
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Inter', sans-serif;
}

.btn-download {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.3);
}

.btn-print {
    background: white;
    color: #10b981;
    border: 2px solid #10b981;
}

.btn-print:hover {
    background: #f0fdfa;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.2);
}

.share-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid #e2e8f0;
}

.share-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.share-card h4 i {
    color: #10b981;
}

.share-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.share-btn {
    padding: 1rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: white;
    font-family: 'Inter', sans-serif;
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn.email {
    background: #64748b;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Mission Card Expandable */
.misi-card {
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.misi-card::after {
    content: 'Klik untuk detail';
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    font-size: 0.85rem;
    color: #10b981;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s;
}

.misi-card:hover::after {
    opacity: 1;
}

.misi-card .misi-desc {
    max-height: 4.8em;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.misi-card.expanded .misi-desc {
    max-height: 500px;
}

.misi-card.expanded {
    transform: scale(1.03);
    z-index: 10;
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.2);
}

.misi-card.expanded::after {
    content: 'Klik untuk tutup';
}

/* Scroll Animations */
.animate-ready {
    opacity: 0;
    transform: translateY(30px);
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.misi-card.animate-in {
    animation-delay: calc(var(--index, 0) * 0.1s);
}

.misi-grid .misi-card:nth-child(1) {
    --index: 0;
}

.misi-grid .misi-card:nth-child(2) {
    --index: 1;
}

.misi-grid .misi-card:nth-child(3) {
    --index: 2;
}

.misi-grid .misi-card:nth-child(4) {
    --index: 3;
}

.misi-grid .misi-card:nth-child(5) {
    --index: 4;
}

/* Enhanced Hover Effects */
.misi-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.15);
}

.breakdown-item {
    transition: all 0.3s;
}

.breakdown-item:hover {
    transform: translateY(-5px);
}

.breakdown-item:hover .breakdown-icon {
    transform: scale(1.1) rotate(5deg);
}

.visi-card {
    transition: all 0.3s;
}

.visi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.15);
}

/* Print Styles */
@media print {

    .navbar,
    .download-section,
    .cta-section,
    footer,
    .breadcrumb {
        display: none !important;
    }

    .page-hero {
        background: white !important;
        color: black !important;
    }

    .misi-card,
    .visi-card {
        page-break-inside: avoid;
        box-shadow: none !important;
        border: 1px solid #e2e8f0 !important;
    }

    body {
        background: white !important;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .download-card {
        padding: 2rem;
    }

    .download-content {
        flex-direction: column;
        text-align: center;
    }

    .download-actions {
        width: 100%;
        flex-direction: column;
    }

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

    .share-buttons {
        grid-template-columns: 1fr;
    }

    .misi-card::after {
        display: none;
    }
}
