/* ===== CLEAN MOBILE OPTIMIZATION - NO DUPLICATES ===== */
/* This file provides a clean mobile optimization solution for Bootstrap 4 */

/* ===== CRITICAL MOBILE FIXES - APPLIED FIRST ===== */

/* Force proper viewport and prevent zoom issues */
@media (max-width: 767.98px) {
    html {
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
        text-size-adjust: 100%;
        font-size: 16px;
    }
    
    body {
        font-size: 16px;
        line-height: 1.6;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* ===== UNIVERSITY LOGOS SCROLLING ANIMATION FIX ===== */

/* Professional Scrolling Container */
.professional-scroll-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem 0;
    margin: 2rem 0;
}

/* Scroll Track */
.scroll-track {
    display: flex;
    align-items: center;
    animation: scroll-logos 30s linear infinite;
    /* Pause animation on mobile for better UX */
    animation-play-state: running;
}

/* Scroll Items */
.scroll-item {
    flex-shrink: 0;
    margin: 0 1rem;
    transition: all 0.3s ease;
}

/* Partner Logo Container */
.partner-logo-container {
    width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 0.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.partner-logo-container:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Partner Logo Images */
.partner-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 4px;
}

/* Scrolling Animation Keyframes */
@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Mobile Optimization for Scrolling - COMPLETELY DISABLE ANIMATION */
@media (max-width: 767.98px) {
    .professional-scroll-container {
        padding: 0.5rem 0;
        margin: 1rem 0;
        overflow-x: auto; /* Allow horizontal scroll instead */
        overflow-y: hidden;
    }
    
    .scroll-track {
        /* COMPLETELY DISABLE ANIMATION ON MOBILE */
        animation: none !important;
        animation-play-state: paused !important;
        transform: none !important;
        /* Use flexbox for static layout */
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-wrap: nowrap;
        width: max-content;
        padding: 0 1rem;
    }
    
    .scroll-item {
        margin: 0 0.5rem;
        flex-shrink: 0;
    }
    
    .partner-logo-container {
        width: 80px;
        height: 60px;
        padding: 0.25rem;
    }
    
    /* Remove any animation-related styles */
    .professional-scroll-container:active .scroll-track,
    .professional-scroll-container:focus .scroll-track {
        animation: none !important;
        animation-play-state: paused !important;
    }
}

/* Desktop animation - keep it smooth */
@media (min-width: 768px) {
    .professional-scroll-container:hover .scroll-track {
        animation-play-state: paused;
    }
    
    /* Ensure animation works on desktop */
    .scroll-track {
        animation: scroll-logos 30s linear infinite;
        animation-play-state: running;
    }
}

/* Force disable any conflicting animations */
.professional-scroll-container * {
    animation-duration: 0s !important;
    animation-delay: 0s !important;
    animation-iteration-count: 1 !important;
}

@media (max-width: 767.98px) {
    .professional-scroll-container * {
        animation: none !important;
        animation-play-state: paused !important;
        transform: none !important;
    }
}

/* ===== SLOW MOBILE SCROLLING FIX ===== */
/* Make university logos scroll slowly on mobile */
@media (max-width: 767.98px) {
    /* Enable slow scrolling animation on mobile */
    .scroll-track {
        animation: scroll-logos 90s linear infinite !important; /* Very slow - 90 seconds */
        animation-play-state: running !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        flex-wrap: nowrap !important;
        width: max-content !important;
        padding: 0 1rem !important;
    }
    
    /* Keep container with hidden overflow for smooth animation */
    .professional-scroll-container {
        overflow: hidden !important;
        overflow-y: hidden !important;
    }
    
    /* Pause animation when user touches/interacts */
    .professional-scroll-container:active .scroll-track,
    .professional-scroll-container:focus .scroll-track,
    .professional-scroll-container:hover .scroll-track {
        animation-play-state: paused !important;
    }
    
    /* Ensure smooth animation */
    .scroll-item {
        margin: 0 0.5rem !important;
        flex-shrink: 0 !important;
        transition: all 0.3s ease !important;
    }
    
    .partner-logo-container {
        width: 80px !important;
        height: 60px !important;
        padding: 0.25rem !important;
    }
}

/* ===== NAVIGATION FIXES - SINGLE TOGGLE BUTTON ===== */

/* Navbar container fixes */
@media (max-width: 991.98px) {
    .navbar-custom {
        padding: 0.5rem 1rem !important;
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1) !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 1050 !important;
    }
    
    .navbar-custom .navbar-brand {
        max-width: 150px !important;
        height: auto !important;
    }
    
    .navbar-custom .navbar-brand img {
        max-height: 40px !important;
        width: auto !important;
    }
}

/* NAVIGATION FIXES - REMOVED DUPLICATES (Handled in styles.css) */

/* Menu dropdown fixes for Bootstrap 4 */
@media (max-width: 991.98px) {
    .navbar-custom .navbar-collapse {
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(15px) !important;
        -webkit-backdrop-filter: blur(15px) !important;
        border-radius: 0 0 15px 15px !important;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15) !important;
        margin-top: 10px !important;
        padding: 1rem !important;
        border: 1px solid rgba(255, 189, 80, 0.2) !important;
    }
    
    .navbar-custom .navbar-nav {
        width: 100% !important;
    }
    
    .navbar-custom .nav-item {
        margin: 0.5rem 0 !important;
        border-bottom: 1px solid rgba(255, 189, 80, 0.1) !important;
        padding-bottom: 0.5rem !important;
    }
    
    .navbar-custom .nav-item:last-child {
        border-bottom: none !important;
        padding-bottom: 0 !important;
    }
    
    .navbar-custom .nav-link {
        color: #2c3e50 !important;
        font-weight: 600 !important;
        font-size: 1.1rem !important;
        padding: 0.75rem 1rem !important;
        border-radius: 8px !important;
        transition: all 0.3s ease !important;
        text-align: center !important;
    }
    
    .navbar-custom .nav-link:hover {
        background: linear-gradient(135deg, #ffbd50, #f39c12) !important;
        color: #ffffff !important;
        transform: translateX(5px) !important;
    }
    
    .navbar-custom .dropdown-menu {
        background: rgba(255, 255, 255, 0.95) !important;
        border: 1px solid rgba(255, 189, 80, 0.2) !important;
        border-radius: 12px !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
        margin-top: 0.5rem !important;
        padding: 0.5rem !important;
    }
    
    .navbar-custom .dropdown-item {
        color: #2c3e50 !important;
        font-weight: 500 !important;
        padding: 0.75rem 1rem !important;
        border-radius: 8px !important;
        transition: all 0.3s ease !important;
        text-align: center !important;
    }
    
    .navbar-custom .dropdown-item:hover {
        background: linear-gradient(135deg, #ffbd50, #f39c12) !important;
        color: #ffffff !important;
        transform: translateX(3px) !important;
    }
    
    .navbar-custom .dropdown-divider {
        border-color: rgba(255, 189, 80, 0.2) !important;
        margin: 0.5rem 0 !important;
    }
}

/* ===== HERO SECTION FIXES - NO SHAKING ===== */

/* Fix hero section shaking by removing conflicting transforms */
@media (max-width: 767.98px) {
    .header {
        padding-top: 80px !important; /* Account for fixed navbar */
        padding-bottom: 2rem !important;
        text-align: center !important;
        /* Remove any conflicting transforms */
        transform: none !important;
        animation: none !important;
    }
    
    .header .text-container {
        transform: none !important;
        animation: none !important;
    }
    
    .header h1 {
        font-size: 2rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1rem !important;
        color: #2c3e50 !important;
        font-weight: 700 !important;
        /* Remove white-space: nowrap to prevent overflow */
        white-space: normal !important;
    }
    
    .header .p-large {
        font-size: 18px !important;
        line-height: 1.6 !important;
        color: #2c3e50 !important;
        font-weight: 400 !important;
    }
    
    /* Fix CTA buttons */
    .cta-buttons-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        margin-bottom: 2rem !important;
    }
    
    .cta-button {
        width: 100% !important;
        padding: 1rem !important;
        border-radius: 12px !important;
        text-decoration: none !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        transition: all 0.3s ease !important;
        font-weight: 600 !important;
        font-size: 16px !important;
        min-height: 60px !important;
    }
    
    .cta-primary {
        background: linear-gradient(135deg, #ffbd50, #f39c12) !important;
        color: #ffffff !important;
    }
    
    .cta-secondary {
        background: linear-gradient(135deg, #3498db, #2980b9) !important;
        color: #ffffff !important;
    }
    
    .cta-tertiary {
        background: linear-gradient(135deg, #27ae60, #229954) !important;
        color: #ffffff !important;
    }
    
    .cta-button:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
    }
    
    .cta-text {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    
    .cta-main {
        font-size: 16px !important;
        font-weight: 700 !important;
    }
    
    .cta-sub {
        font-size: 14px !important;
        font-weight: 400 !important;
        opacity: 0.9 !important;
    }
    
    .cta-arrow {
        font-size: 18px !important;
    }
}

/* ===== TYPOGRAPHY FIXES ===== */

@media (max-width: 767.98px) {
    /* Headings */
    h1 {
        font-size: 2rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1rem !important;
        color: #2c3e50 !important;
        font-weight: 700 !important;
    }
    
    h2 {
        font-size: 1.75rem !important;
        line-height: 1.4 !important;
        margin-bottom: 0.875rem !important;
        color: #2c3e50 !important;
        font-weight: 600 !important;
    }
    
    h3 {
        font-size: 1.5rem !important;
        line-height: 1.4 !important;
        margin-bottom: 0.75rem !important;
        color: #2c3e50 !important;
        font-weight: 600 !important;
    }
    
    h4 {
        font-size: 1.25rem !important;
        line-height: 1.4 !important;
        margin-bottom: 0.625rem !important;
        color: #2c3e50 !important;
        font-weight: 600 !important;
    }
    
    h5 {
        font-size: 1.125rem !important;
        line-height: 1.4 !important;
        margin-bottom: 0.5625rem !important;
        color: #2c3e50 !important;
        font-weight: 600 !important;
    }
    
    h6 {
        font-size: 1rem !important;
        line-height: 1.4 !important;
        margin-bottom: 0.5rem !important;
        color: #2c3e50 !important;
        font-weight: 600 !important;
    }
    
    /* Paragraphs */
    p {
        font-size: 16px !important;
        line-height: 1.6 !important;
        margin-bottom: 1rem !important;
        color: #2c3e50 !important;
        font-weight: 400 !important;
    }
    
    .p-large {
        font-size: 18px !important;
        line-height: 1.6 !important;
        color: #2c3e50 !important;
        font-weight: 400 !important;
    }
    
    /* Links */
    a {
        color: #3498db !important;
        text-decoration: none !important;
        transition: all 0.3s ease !important;
        font-weight: 500 !important;
    }
    
    a:hover {
        color: #2980b9 !important;
        text-decoration: underline !important;
    }
    
    /* Lists */
    ul, ol {
        font-size: 16px !important;
        line-height: 1.6 !important;
        color: #2c3e50 !important;
        margin-bottom: 1rem !important;
        padding-left: 1.5rem !important;
    }
    
    li {
        margin-bottom: 0.5rem !important;
        color: #2c3e50 !important;
    }
}

/* ===== FORM FIXES ===== */

@media (max-width: 767.98px) {
    /* All form inputs */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="password"],
    input[type="number"],
    input[type="url"],
    input[type="search"],
    input[type="date"],
    input[type="time"],
    input[type="datetime-local"],
    input[type="month"],
    input[type="week"],
    textarea,
    select {
        font-size: 16px !important;
        line-height: 1.5 !important;
        padding: 12px 16px !important;
        border: 2px solid #e0e0e0 !important;
        border-radius: 8px !important;
        background: #ffffff !important;
        color: #2c3e50 !important;
        font-weight: 500 !important;
        transition: all 0.3s ease !important;
        min-height: 48px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Placeholder text */
    input::placeholder,
    textarea::placeholder,
    select::placeholder {
        color: #6c757d !important;
        opacity: 1 !important;
        font-weight: 400 !important;
        font-size: 16px !important;
    }
    
    /* Focus states */
    input:focus,
    textarea:focus,
    select:focus {
        outline: none !important;
        border-color: #ffbd50 !important;
        box-shadow: 0 0 0 3px rgba(255, 189, 80, 0.2) !important;
        background: #ffffff !important;
        color: #2c3e50 !important;
    }
    
    /* Select dropdowns */
    select {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e") !important;
        background-position: right 12px center !important;
        background-repeat: no-repeat !important;
        background-size: 16px 12px !important;
        padding-right: 40px !important;
        appearance: none !important;
        -webkit-appearance: none !important;
        -moz-appearance: none !important;
    }
    
    /* Form labels */
    label {
        font-size: 16px !important;
        font-weight: 600 !important;
        color: #2c3e50 !important;
        margin-bottom: 0.5rem !important;
        display: block !important;
    }
    
    /* Form groups */
    .form-group {
        margin-bottom: 1.5rem !important;
    }
    
    /* Buttons */
    .btn {
        font-size: 16px !important;
        font-weight: 600 !important;
        padding: 12px 24px !important;
        border-radius: 8px !important;
        border: none !important;
        transition: all 0.3s ease !important;
        min-height: 48px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-decoration: none !important;
        cursor: pointer !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    }
    
    .btn:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    }
    
    .btn:active {
        transform: translateY(0) !important;
    }
    
    .btn-primary {
        background: linear-gradient(135deg, #ffbd50, #f39c12) !important;
        color: #ffffff !important;
    }
    
    .btn-secondary {
        background: linear-gradient(135deg, #6c757d, #495057) !important;
        color: #ffffff !important;
    }
    
    .btn-success {
        background: linear-gradient(135deg, #28a745, #20c997) !important;
        color: #ffffff !important;
    }
}

/* ===== LAYOUT FIXES ===== */

@media (max-width: 767.98px) {
    /* Container */
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    /* Sections */
    section {
        padding: 2rem 0 !important;
    }
    
    /* Cards */
    .card {
        border-radius: 12px !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
        border: 1px solid #e0e0e0 !important;
        margin-bottom: 1.5rem !important;
        overflow: hidden !important;
    }
    
    .card-body {
        padding: 1.5rem !important;
    }
    
    .card-title {
        font-size: 1.25rem !important;
        font-weight: 600 !important;
        color: #2c3e50 !important;
        margin-bottom: 1rem !important;
    }
    
    .card-text {
        font-size: 16px !important;
        line-height: 1.6 !important;
        color: #2c3e50 !important;
        margin-bottom: 1rem !important;
    }
    
    /* Images */
    img {
        max-width: 100% !important;
        height: auto !important;
        border-radius: 8px !important;
    }
    
    .img-fluid {
        width: 100% !important;
        height: auto !important;
    }
    
    /* Rows and columns */
    .row {
        margin-left: -7.5px !important;
        margin-right: -7.5px !important;
    }
    
    .col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12,
    .col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12,
    .col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
        padding-left: 7.5px !important;
        padding-right: 7.5px !important;
    }
}

/* ===== SIDEBAR FIXES ===== */

@media (max-width: 767.98px) {
    /* Call/WhatsApp sidebar */
    .call-sidebar,
    .whatsapp-sidebar {
        position: fixed !important;
        bottom: 20px !important;
        right: 20px !important;
        z-index: 1000 !important;
        width: 60px !important;
        height: 60px !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
        transition: all 0.3s ease !important;
    }
    
    .call-sidebar:hover,
    .whatsapp-sidebar:hover {
        transform: scale(1.1) !important;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3) !important;
    }
    
    .call-sidebar i,
    .whatsapp-sidebar i {
        font-size: 24px !important;
        color: #ffffff !important;
    }
}

/* ===== SLIDER/CAROUSEL FIXES ===== */

@media (max-width: 767.98px) {
    /* Carousel */
    .carousel {
        border-radius: 12px !important;
        overflow: hidden !important;
        margin-bottom: 2rem !important;
    }
    
    .carousel-item {
        height: 200px !important;
    }
    
    .carousel-item img {
        object-fit: cover !important;
        height: 100% !important;
        width: 100% !important;
    }
    
    .carousel-caption {
        background: rgba(0, 0, 0, 0.5) !important;
        border-radius: 8px !important;
        padding: 1rem !important;
        bottom: 20px !important;
        left: 20px !important;
        right: 20px !important;
    }
    
    .carousel-caption h5 {
        font-size: 1.25rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .carousel-caption p {
        font-size: 14px !important;
        margin-bottom: 0 !important;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px !important;
        height: 40px !important;
        background: rgba(0, 0, 0, 0.5) !important;
        border-radius: 50% !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        margin: 0 10px !important;
    }
    
    .carousel-indicators {
        bottom: 10px !important;
    }
    
    .carousel-indicators li {
        width: 8px !important;
        height: 8px !important;
        border-radius: 50% !important;
        margin: 0 4px !important;
    }
}

/* ===== UTILITY CLASSES ===== */

@media (max-width: 767.98px) {
    /* Text colors */
    .text-primary { color: #ffbd50 !important; }
    .text-secondary { color: #6c757d !important; }
    .text-success { color: #28a745 !important; }
    .text-danger { color: #dc3545 !important; }
    .text-warning { color: #ffc107 !important; }
    .text-info { color: #17a2b8 !important; }
    .text-light { color: #f8f9fa !important; }
    .text-dark { color: #343a40 !important; }
    
    /* Spacing */
    .mt-0 { margin-top: 0 !important; }
    .mt-1 { margin-top: 0.25rem !important; }
    .mt-2 { margin-top: 0.5rem !important; }
    .mt-3 { margin-top: 1rem !important; }
    .mt-4 { margin-top: 1.5rem !important; }
    .mt-5 { margin-top: 3rem !important; }
    
    .mb-0 { margin-bottom: 0 !important; }
    .mb-1 { margin-bottom: 0.25rem !important; }
    .mb-2 { margin-bottom: 0.5rem !important; }
    .mb-3 { margin-bottom: 1rem !important; }
    .mb-4 { margin-bottom: 1.5rem !important; }
    .mb-5 { margin-bottom: 3rem !important; }
    
    .pt-0 { padding-top: 0 !important; }
    .pt-1 { padding-top: 0.25rem !important; }
    .pt-2 { padding-top: 0.5rem !important; }
    .pt-3 { padding-top: 1rem !important; }
    .pt-4 { padding-top: 1.5rem !important; }
    .pt-5 { padding-top: 3rem !important; }
    
    .pb-0 { padding-bottom: 0 !important; }
    .pb-1 { padding-bottom: 0.25rem !important; }
    .pb-2 { padding-bottom: 0.5rem !important; }
    .pb-3 { padding-bottom: 1rem !important; }
    .pb-4 { padding-bottom: 1.5rem !important; }
    .pb-5 { padding-bottom: 3rem !important; }
    
    /* Visibility */
    .d-none { display: none !important; }
    .d-block { display: block !important; }
    .d-flex { display: flex !important; }
    .d-inline { display: inline !important; }
    .d-inline-block { display: inline-block !important; }
    
    /* Text alignment */
    .text-left { text-align: left !important; }
    .text-center { text-align: center !important; }
    .text-right { text-align: right !important; }
    .text-justify { text-align: justify !important; }
}

/* ===== ACCESSIBILITY IMPROVEMENTS ===== */

@media (max-width: 767.98px) {
    /* Focus indicators */
    *:focus {
        outline: 2px solid #ffbd50 !important;
        outline-offset: 2px !important;
    }
    
    /* Touch targets */
    button, a, input, select, textarea {
        min-height: 44px !important;
        min-width: 44px !important;
    }
    
    /* High contrast */
    .text-muted {
        color: #6c757d !important;
        font-weight: 500 !important;
    }
    
    /* Skip links */
    .sr-only {
        position: absolute !important;
        width: 1px !important;
        height: 1px !important;
        padding: 0 !important;
        margin: -1px !important;
        overflow: hidden !important;
        clip: rect(0, 0, 0, 0) !important;
        white-space: nowrap !important;
        border: 0 !important;
    }
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */

@media (max-width: 767.98px) {
    /* Smooth scrolling */
    html {
        scroll-behavior: smooth !important;
    }
    
    /* Hardware acceleration */
    .navbar-custom,
    .btn,
    .card,
    .carousel {
        transform: translateZ(0) !important;
        backface-visibility: hidden !important;
        perspective: 1000px !important;
    }
    
    /* Reduced animations for better performance */
    * {
        animation-duration: 0.3s !important;
        transition-duration: 0.3s !important;
    }
}

/* ===== PRINT STYLES ===== */

@media print {
    .navbar-custom,
    .call-sidebar,
    .whatsapp-sidebar,
    .carousel-control-prev,
    .carousel-control-next,
    .carousel-indicators {
        display: none !important;
    }
    
    body {
        font-size: 12pt !important;
        line-height: 1.4 !important;
        color: #000000 !important;
        background: #ffffff !important;
    }
    
    h1, h2, h3, h4, h5, h6 {
        color: #000000 !important;
        page-break-after: avoid !important;
    }
    
    p, li {
        color: #000000 !important;
    }
    
    a {
        color: #000000 !important;
        text-decoration: underline !important;
    }
    
    .card {
        border: 1px solid #000000 !important;
        box-shadow: none !important;
        page-break-inside: avoid !important;
    }
}
