<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Tahoma', Arial, sans-serif;
        }

        body {
            background: #f8f9fa;
            color: #2c4454;
            line-height: 1.6;
        }

        /* Header */
        header {
            background: #2c4454;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 1rem;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            text-align: center;
        }

        /* Navigation */
        nav {
            background: #2c4454;
            color: white;
            padding: 1rem;
            margin-top: 60px;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 20px;
            justify-content: center;
        }

        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
        }

        /* Main Content */
        .main-container {
            max-width: 1200px;
            margin: 120px auto 40px;
            padding: 0 20px;
            display: flex;
            gap: 20px;
        }

        /* Sidebar */
        #sidebar {
            flex: 0 0 250px;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            padding: 1rem;
        }

        .ulvisas {
            list-style: none;
        }

        .ulvisas li {
            margin-bottom: 10px;
        }

        .ulvisas a {
            display: block;
            padding: 10px;
            background: #e8f4fa;
            border-radius: 8px;
            color: #2c4454;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .ulvisas a:hover {
            background: #2c4454;
            color: white;
        }

        /* Visa Card */
        .visa-card {
            flex: 1;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            padding: 2rem;
            margin-bottom: 2rem;
        }

        h1, h2, h3 {
            color: #2c4454;
            margin-bottom: 1.5rem;
        }

        h1 {
            font-size: 2.2rem;
            border-bottom: 3px solid #e8f4fa;
            padding-bottom: 1rem;
        }

        h2 {
            font-size: 1.8rem;
            margin-top: 2rem;
        }

        h3 {
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        /* Documents List */
        .documents-list {
            list-style: none;
            margin: 1.5rem 0;
        }

        .documents-list li {
            padding: 1rem;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .documents-list i {
            color: #2c4454;
            font-size: 1.2rem;
        }

        /* Price Box */
        .price-box {
            background: #e8f4fa;
            padding: 1.5rem;
            border-radius: 8px;
            text-align: center;
            margin: 2rem 0;
        }

        .price-box h2 {
            color: #2c4454;
            margin: 0;
            font-size: 2rem;
        }

        /* Other Visas Grid */
        .other-visas {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 2rem;
        }

        .visa-card-small {
            background: #fff;
            border-radius: 8px;
            padding: 1.5rem;
            text-align: center;
            transition: transform 0.3s ease;
            box-shadow: 0 2px 6px rgba(0,0,0,0.05);
        }

        .visa-card-small:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        /* Buttons */
        .btn-primary {
            background: #2c4454;
            color: white;
            padding: 12px 30px;
            border-radius: 25px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .btn-primary:hover {
            background: #365267;
            transform: translateY(-2px);
        }

        /* Footer */
        footer {
            background: #2c4454;
            color: white;
            padding: 2rem;
            text-align: center;
            margin-top: 40px;
        }

        footer a {
            color: white;
            text-decoration: none;
            margin: 0 10px;
        }

        footer a:hover {
            text-decoration: underline;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .main-container {
                flex-direction: column;
                margin-top: 100px;
                padding: 0 15px;
            }

            #sidebar {
                flex: 1;
                margin-bottom: 20px;
            }

            h1 {
                font-size: 1.8rem;
            }

            h2 {
                font-size: 1.4rem;
            }

            nav ul {
                flex-direction: column;
                gap: 10px;
            }

            .other-visas {
                grid-template-columns: 1fr;
            }
        }
		.contact-section a {
    transition: all 0.3s ease;
}

.contact-section a:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            padding: 40px 0;
        }

        .contact-form {
            background: #fff;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }

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

        input, textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #e8f4fa;
            border-radius: 8px;
            margin-top: 8px;
        }

        .contact-info {
            background: #e8f4fa;
            padding: 30px;
            border-radius: 12px;
        }
        .faq-container {
            max-width: 800px;
            margin: 40px auto;
        }

        .faq-item {
            background: #fff;
            margin-bottom: 15px;
            border-radius: 8px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.05);
        }

        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item.active .faq-answer {
            padding: 20px;
            max-height: 500px;
        }
        .policy-container {
            max-width: 800px;
            margin: 40px auto;
            line-height: 1.8;
        }

        .policy-section {
            margin-bottom: 40px;
            background: #fff;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        .about-section {
            padding: 60px 20px;
            background: #fff;
        }

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

        .mission-card {
            background: #e8f4fa;
            padding: 30px;
            border-radius: 12px;
            text-align: center;
        }

        .team-section {
            margin-top: 60px;
        }

        .team-member {
            text-align: center;
            margin: 20px;
            padding: 20px;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
/* Modal background */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1000; /* On top */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4); /* Black with opacity */
}

/* Modal content box */
.modal-content {
  background-color: #fefefe;
  margin: 10% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 90%;
  max-width: 500px;
  border-radius: 8px;
  position: relative;
}

/* Close button (x) */
.close {
  color: #aaa;
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #000;
}
</pre></body></html>