        body {
            font-family: "Trebuchet MS", Arial, sans-serif;
            font-size: 16px;
            line-height: 1.6;
            color: #333;
        }
        p{color: black!important;}
        /* Main Content Container */
        .main-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        /* Hero Section */
   .hero-section {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
    padding: 20px 20px; /* Reduced from 60px to 30px */
    border-radius: 15px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero-section h1 {
    font-size: 2em; /* Reduced from 2.5em */
    margin-bottom: 10px; /* Slightly less margin */
    font-weight: 700;
}

.hero-section p {
    font-size: 1em; /* Reduced from 1.2em */
    opacity: 0.95;
}


        /* Language Selector */
        .language-selector {
            text-align: center;
            margin: 30px 0;
        }

        .language-selector .dropdown-toggle {
            background: white;
            border: 2px solid #0d6efd;
            border-radius: 15px;
            padding: 12px 30px;
            color: #0d6efd;
            font-weight: 600;
            transition: all 0.3s;
            cursor: pointer;
        }

        .language-selector .dropdown-toggle:hover {
            background: #0d6efd;
            color: white;
        }

        /* Step Cards */
        .steps-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }

        .step-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .step-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        }

        .step-number {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            font-weight: bold;
            font-size: 1.2em;
            margin-bottom: 15px;
        }

        .step-card h3 {
            color: #0d6efd;
            margin-bottom: 15px;
            font-size: 1.4em;
        }

        /* Alert Boxes */
        .alert-box {
            border-radius: 12px;
            padding: 25px;
            margin: 30px 0;
            border-left: 5px solid;
        }

        .alert-danger {
            background: #fff5f5;
            border-color: #e53e3e;
        }

        .alert-warning {
            background: #fffaf0;
            border-color: #dd6b20;
        }

        .alert-info {
            background: #ebf8ff;
            border-color: #3182ce;
        }

        .alert-box h4 {
            margin-top: 0;
            font-size: 1.5em;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .alert-box .icon {
            font-size: 1.8em;
        }

        /* Terminal Locations */
        .terminal-locations {
            margin: 50px 0;
        }

        .terminal-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }

        .terminal-header {
            background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
            color: white;
            padding: 20px 30px;
            font-size: 1.3em;
            font-weight: 600;
        }

        .terminal-content {
            padding: 30px;
        }

        .terminal-content img {
            width: 100%;
            max-width: 600px;
            height: auto;
            border-radius: 8px;
            margin: 20px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }

        /* Quick Tips */
        .quick-tips {
            background: #f7fafc;
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
        }

        .quick-tips h3 {
            color: #0d6efd;
            margin-bottom: 20px;
            font-size: 1.6em;
        }

        .quick-tips ul {
            list-style: none;
            padding: 0;
        }

        .quick-tips li {
            padding: 12px 0 12px 35px;
            position: relative;
            border-bottom: 1px solid #e2e8f0;
        }

        .quick-tips li:last-child {
            border-bottom: none;
        }

        .quick-tips li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #48bb78;
            font-weight: bold;
            font-size: 1.3em;
        }

        /* Image with Text */
        .image-text-section {
            display: flex;
            gap: 30px;
            align-items: flex-start;
            margin: 30px 0;
            flex-wrap: wrap;
        }

        .image-text-section img {
            flex: 0 0 auto;
            max-width: 200px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .image-text-section .text-content {
            flex: 1;
            min-width: 300px;
        }

        /* Video Section */
        .video-section {
            text-align: center;
            padding: 50px 0;
            background: #f7fafc;
            border-radius: 12px;
            margin: 40px 0;
        }

        .video-section h3 {
            color: #0d6efd;
            margin-bottom: 30px;
            font-size: 1.8em;
        }

        .video-wrapper {
            max-width: 800px;
            margin: 0 auto;
        }

        .video-wrapper iframe {
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        /* Highlight Text */
        .highlight {
            background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
            color: white;
            padding: 3px 8px;
            border-radius: 4px;
            font-weight: 600;
        }

        .text-red {
            color: #e53e3e;
            font-weight: 700;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 1.8em;
            }

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

            .image-text-section {
                flex-direction: column;
            }

            .image-text-section img {
                flex: 0 0 100%;
            }
        }

        /* Additional Spacing */
        section {
            margin: 50px 0;
        }

        .section-title {
            color: #0d6efd;
            font-size: 2em;
            margin-bottom: 30px;
            text-align: center;
            font-weight: 700;
        }

        .divider {
            height: 2px;
            background: linear-gradient(90deg, transparent, #0d6efd, transparent);
            margin: 40px 0;
        }

        /* Image Modal/Lightbox */
        .clickable-image {
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .clickable-image:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }

        .image-modal {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.9);
            cursor: pointer;
        }

        .image-modal img {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            max-width: 90%;
            max-height: 90%;
            box-shadow: 0 0 50px rgba(0,0,0,0.5);
        }

        .image-modal .close-modal {
            position: absolute;
            top: 20px;
            right: 40px;
            color: white;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            z-index: 10000;
        }

        .image-modal .close-modal:hover {
            color: #0d6efd;
        }
.language-selector .dropdown-menu {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    padding: 10px;
    min-width: 200px;
    margin-top: 10px;
}

.language-selector .dropdown-item {
    padding: 10px 15px;
    color: #495057;
    text-decoration: none;
    display: block;
    border-radius: 5px;
    transition: background-color 0.2s;
}
        
.language-selector .dropdown-menu {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    padding: 10px;
    min-width: 200px;
    margin-top: 10px;
}

.language-selector .dropdown-item {
    padding: 10px 15px;
    color: #495057;
    text-decoration: none;
    display: block;
    border-radius: 5px;
    transition: background-color 0.2s;
}        

.large-emoji {
  font-size: 1.2em; 
    color: dodgerblue;
}
