:root { --navy: #1a2e4a; --navy2: #0f1e30; --orange: #f97316; --green: #22a45d; --white: #ffffff; --offwhite: #f8f9fc; --gray: #6b7280; --border: #e2e8f0; --text: #374151; --red: #dc2626; --red-bg: #fef2f2; --amber-bg: #fffbeb; --amber: #d97706; } * { margin:0; padding:0; box-sizing:border-box; } html { scroll-behavior: smooth; } body { font-family: 'Nunito Sans', sans-serif; background: var(--offwhite); color: var(--text); } /* ── TOPBAR ── */ .topbar { background: var(--navy2); color: #94a3b8; font-size: 13px; padding: 9px 24px; text-align: center; } .topbar a { color: #fed7aa; text-decoration: none; margin: 0 10px; } .topbar a:hover { text-decoration: underline; } /* ── NAVBAR ── */ .navbar { background: white; box-shadow: 0 2px 16px rgba(0,0,0,0.08); padding: 14px 24px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 100; } .logo { display: flex; align-items: center; gap: 11px; text-decoration: none; } .logo-mark { width: 46px; height: 46px; background: var(--navy); border-radius: 10px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; } .logo-mark::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: var(--orange); } .logo-mark svg { width: 26px; height: 26px; } .logo-main { font-family: 'Poppins', sans-serif; font-size: 18px; font-weight: 800; color: var(--navy); } .logo-main span { color: var(--orange); } .logo-sub { font-size: 10px; color: var(--gray); text-transform: uppercase; letter-spacing: 1.5px; } .nav-back { display: inline-flex; align-items: center; gap: 7px; background: var(--navy); color: white; padding: 9px 20px; border-radius: 7px; font-weight: 700; font-size: 13.5px; text-decoration: none; transition: background 0.2s; } .nav-back:hover { background: #2a4a6e; } /* ── PAGE HEADER ── */ .page-header { background: linear-gradient(110deg, var(--navy) 0%, #1b3d72 100%); color: white; padding: 60px 24px; text-align: center; } .page-header h1 { font-family: 'Poppins', sans-serif; font-size: clamp(26px,4vw,42px); font-weight: 800; margin-bottom: 12px; } .page-header p { color: #bfdbfe; font-size: 15.5px; max-width: 560px; margin: 0 auto; line-height: 1.7; } .page-header .updated { display: inline-block; background: rgba(249,115,22,0.2); border: 1px solid rgba(249,115,22,0.4); color: #fed7aa; padding: 5px 16px; border-radius: 100px; font-size: 12.5px; font-weight: 700; margin-top: 18px; } /* ── TABS ── */ .tabs-wrap { background: white; border-bottom: 2px solid var(--border); position: sticky; top: 74px; z-index: 90; } .tabs { max-width: 900px; margin: 0 auto; display: flex; padding: 0 24px; } .tab { padding: 16px 28px; font-weight: 700; font-size: 14.5px; color: var(--gray); cursor: pointer; border-bottom: 3px solid transparent; margin-bottom: -2px; transition: all 0.2s; text-decoration: none; } .tab:hover, .tab.active { color: var(--orange); border-bottom-color: var(--orange); } /* ── CONTENT ── */ .content { max-width: 900px; margin: 0 auto; padding: 48px 24px 80px; } /* Alert box */ .alert-box { border-radius: 14px; padding: 24px 28px; display: flex; gap: 16px; margin-bottom: 36px; } .alert-box.warning { background: var(--amber-bg); border: 2px solid #fcd34d; } .alert-box.danger { background: var(--red-bg); border: 2px solid #fca5a5; } .alert-box .al-icon { font-size: 30px; flex-shrink: 0; } .alert-box h3 { font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 8px; } .alert-box.warning h3 { color: #92400e; } .alert-box.danger h3 { color: #7f1d1d; } .alert-box p { font-size: 14.5px; line-height: 1.72; } .alert-box.warning p { color: #78350f; } .alert-box.danger p { color: #7f1d1d; } .alert-box strong { font-weight: 800; } /* Section */ .tnc-section-block { margin-bottom: 40px; } .tnc-section-block h2 { font-family: 'Poppins', sans-serif; font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--border); display: flex; align-items: center; gap: 10px; } .tnc-section-block h2 .sec-num { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; background: var(--orange); color: white; border-radius: 50%; font-size: 13px; flex-shrink: 0; } /* Paragraph */ .tnc-section-block p { font-size: 14.5px; color: var(--text); line-height: 1.78; margin-bottom: 14px; } .tnc-section-block p strong { color: var(--navy); font-weight: 700; } /* List */ .tnc-list { list-style: none; margin: 14px 0; } .tnc-list li { display: flex; gap: 10px; align-items: flex-start; padding: 9px 0; border-bottom: 1px solid #f1f5f9; font-size: 14.5px; line-height: 1.68; } .tnc-list li:last-child { border-bottom: none; } .tnc-list li .li-ico { flex-shrink: 0; margin-top: 1px; font-size: 15px; } .tnc-list li strong { color: var(--navy); } /* Guarantee box */ .guarantee-box { background: #f0fdf4; border: 1.5px solid #86efac; border-radius: 12px; padding: 22px 26px; margin: 20px 0; } .guarantee-box h4 { font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 700; color: #14532d; margin-bottom: 12px; } .guarantee-box ul { list-style: none; } .guarantee-box ul li { display: flex; gap: 9px; font-size: 14px; color: #166534; padding: 6px 0; border-bottom: 1px solid #d1fae5; } .guarantee-box ul li:last-child { border-bottom: none; } .guarantee-box ul li::before { content: '✓'; font-weight: 900; color: var(--green); flex-shrink: 0; } /* No guarantee box */ .no-guarantee-box { background: var(--red-bg); border: 1.5px solid #fca5a5; border-radius: 12px; padding: 22px 26px; margin: 20px 0; } .no-guarantee-box h4 { font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 700; color: #7f1d1d; margin-bottom: 12px; } .no-guarantee-box ul { list-style: none; } .no-guarantee-box ul li { display: flex; gap: 9px; font-size: 14px; color: #991b1b; padding: 6px 0; border-bottom: 1px solid #fecaca; } .no-guarantee-box ul li:last-child { border-bottom: none; } .no-guarantee-box ul li::before { content: '✗'; font-weight: 900; color: var(--red); flex-shrink: 0; } /* Non-refundable highlight */ .nonrefund-box { background: var(--amber-bg); border: 2px solid #fcd34d; border-radius: 12px; padding: 22px 26px; margin: 20px 0; } .nonrefund-box h4 { font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 700; color: #78350f; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; } .nonrefund-box p { font-size: 14px; color: #92400e; line-height: 1.7; margin-bottom: 8px; } .nonrefund-box p:last-child { margin-bottom: 0; } .nonrefund-box strong { color: #7c2d12; } /* Divider */ .tnc-divider { border: none; border-top: 2px solid var(--border); margin: 44px 0; } /* Contact box */ .contact-box { background: var(--navy); border-radius: 14px; padding: 28px 32px; text-align: center; margin-top: 40px; } .contact-box h3 { font-family: 'Poppins', sans-serif; font-size: 18px; font-weight: 700; color: white; margin-bottom: 8px; } .contact-box p { color: #94a3b8; font-size: 14px; margin-bottom: 20px; } .contact-box .cbtns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; } .cbtn { display: inline-flex; align-items: center; gap: 8px; padding: 11px 24px; border-radius: 8px; font-weight: 700; font-size: 14px; text-decoration: none; transition: all 0.2s; } .cbtn-wa { background: #25D366; color: white; } .cbtn-wa:hover { background: #1da851; } .cbtn-email { background: rgba(255,255,255,0.1); color: white; border: 1px solid rgba(255,255,255,0.2); } .cbtn-email:hover { background: rgba(255,255,255,0.2); } /* Privacy section */ .privacy-content { display: none; } .privacy-content.active { display: block; } .terms-content { display: block; } .terms-content.hidden { display: none; } /* Footer */ footer { background: #07101d; color: #475569; padding: 28px 24px; text-align: center; font-size: 13px; } footer a { color: #94a3b8; text-decoration: none; margin: 0 10px; } footer a:hover { color: var(--orange); }
✉ info@visacontinent.com 📞 +1 (713) 925-3880 | 📍 4601 Red Bluff Rd, Pasadena, TX 77503
📋 Terms & Conditions 🔒 Privacy Policy
⚠️

Important Notice — Please Read Before Proceeding

Visa Continent provides professional visa consultancy and documentation services. We are not an embassy, consulate, or government body. We do not issue visas and we cannot guarantee visa approvals. The final decision on every visa application rests solely with the relevant Schengen Embassy or Consulate.

1 Our Services — What Visa Continent Does

Visa Continent is a professional visa consultancy agency based in Pasadena, Texas, USA. We specialize in helping non-US passport holders — including Green Card holders, H-1B, L-1, F-1, TN, O-1, E-2, and J-1 visa holders — apply for Schengen visas from the United States.

Our services include, but are not limited to:

  • Free eligibility assessment and consultancy
  • Complete document preparation, review, and organization
  • Embassy appointment booking at VFS Global and consulates across the US
  • Flight itinerary and hotel reservation letters for visa purposes
  • Schengen-compliant travel insurance arrangement
  • Cover letter and supporting document drafting
  • Refusal analysis and reapplication support
  • Full guidance and 24/7 WhatsApp support throughout the process

2 Visa Guarantee Policy

We want to be completely transparent with our clients. Here is exactly what we can and cannot guarantee:

✅ What Visa Continent DOES Guarantee:

  • We will prepare your visa application file to the highest professional standard, meeting all embassy requirements
  • We will present the strongest possible case for your visa approval based on your personal circumstances
  • We will review your documents at an "investigation level" — checking every detail that embassies scrutinize
  • We will provide you with accurate, honest advice about your chances and how to improve them
  • We will book your embassy appointment and provide all required supporting letters
  • We will support you throughout the entire process until a final decision is made
  • If you were previously refused, we will analyze the refusal and rebuild your application to directly address the embassy's concerns

✗ What Visa Continent CANNOT Guarantee:

  • Visa approval is NOT guaranteed — this decision belongs exclusively to the Embassy or Consulate
  • No visa consultancy agency anywhere in the world is legally permitted to guarantee a visa approval
  • We cannot guarantee specific processing timelines, as these are set independently by each embassy
  • We cannot guarantee approval where applicants provide false, incomplete, or misleading information
  • We are not responsible for refusals due to factors outside our control such as prior immigration violations, criminal records, security concerns, or sudden changes in embassy policy

3 Payment & Non-Refundable Fee Policy

💳 Important: All Fees Are Strictly Non-Refundable

All service fees paid to Visa Continent are strictly non-refundable regardless of the outcome of the visa application — including cases where the visa is refused, delayed, or where the applicant withdraws after the process has commenced.

Our fees cover professional consultancy work, document preparation, appointment booking, and administrative services — not the visa decision itself.

The Schengen Embassy visa fee (paid directly to the embassy or VFS Global) is also non-refundable under all circumstances — this is official embassy policy and is entirely outside Visa Continent's control.

  • 📌Service fees are due before work commences on your file
  • 📌No refund will be issued if the visa is refused, even after appeal
  • 📌No refund will be issued if the applicant cancels after document preparation has begun
  • 📌No refund will be issued if the applicant misses their embassy appointment without prior notice
  • 📌In cases of applicant error or provision of false documents, no refund applies and the service is terminated immediately

4 Client Responsibilities

  • 👤The client is fully responsible for providing accurate, truthful, and complete information and documents to Visa Continent
  • 👤Any submission of false, forged, or misleading documents will immediately void our service agreement with no refund
  • 👤The client must attend their embassy appointment on the scheduled date and time with all prepared documents
  • 👤The client must inform Visa Continent of any previous visa refusals, overstays, or immigration violations before work commences
  • 👤The client must ensure their US residency document (Green Card, visa) is valid for at least 3 months beyond their planned return date
  • 👤Visa Continent is not liable for appointment cancellations or missed deadlines caused by the client's failure to act on time

5 Limitation of Liability

Visa Continent's total liability in any circumstance shall not exceed the total service fee paid by the client for the specific service in question.

Visa Continent is not liable for:

  • ⚠️Visa refusals, delays, or complications caused by embassy decisions
  • ⚠️Loss of travel bookings, flights, hotels, or any consequential financial loss due to visa refusal
  • ⚠️Any changes in embassy requirements, fees, or policies after our service agreement commences
  • ⚠️Delays caused by the client's failure to provide documents or respond to requests in a timely manner

6 Governing Law & Disputes

These Terms and Conditions are governed by the laws of the State of Texas, United States of America. Any disputes arising from our services shall first be addressed through good-faith communication between both parties. If unresolved, disputes shall be subject to the jurisdiction of the courts of Harris County, Texas.

By paying our service fee and proceeding with our consultancy, you confirm that you have read, understood, and agreed to all terms stated in this document.


Questions About Our Terms?

Our team is happy to explain any part of our terms before you proceed.

🔒

Your Privacy Matters to Us

Visa Continent is committed to protecting your personal information. We collect only what is necessary for your visa application and never sell or share your data for marketing purposes.

1 Information We Collect

When you use our services or contact us, we may collect the following information:

  • 📋Personal identification: Full name, date of birth, nationality, passport details
  • 📋Contact information: Email address, phone/WhatsApp number, US address
  • 📋Immigration documents: Green Card, US visa, employment authorization
  • 📋Financial information: Bank statements (for document review purposes only — we never store bank account numbers)
  • 📋Travel history: Previous visas, travel dates, refusal history
  • 📋Website usage: Form submissions, page visits (no personal tracking without consent)

2 How We Use Your Information

  • To prepare and process your Schengen visa application
  • To communicate with you about your application status
  • To book embassy appointments on your behalf
  • To arrange travel insurance and supporting reservations
  • To respond to your inquiries and provide customer support

3 Information Sharing

We share your personal data only with parties directly necessary for your visa application:

  • 🏛️Embassies & Consulates: Required for the visa application submission
  • 🏢VFS Global: For appointment booking and document processing
  • 🛡️Insurance providers: To arrange your Schengen travel insurance

We never sell, rent, or share your personal data with advertisers, marketers, or any unauthorized third parties.

4 Data Security

We take reasonable technical and organizational measures to protect your personal data against unauthorized access, loss, or misuse. All document sharing is conducted through secure channels.

However, please be aware that no method of transmission over the internet is 100% secure. If you have concerns about sharing sensitive documents, contact us to discuss secure transfer options.

5 Data Retention

We retain your personal data for a maximum of 2 years after the completion of your visa service, unless a longer retention period is required by law. After this period, your data is securely deleted.

6 Your Rights

  • 👤Access: You may request a copy of the personal data we hold about you at any time
  • 👤Correction: You may request correction of inaccurate personal data
  • 👤Deletion: You may request deletion of your data, subject to legal obligations
  • 👤To exercise any of these rights, email us at info@visacontinent.com

7 Contact — Privacy Concerns

If you have any questions or concerns about how we handle your personal data, please contact our team directly:


Privacy Questions?

We're happy to answer any questions about how your data is handled.