<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Base Styles */
/* Additional CSS Classes for Templates */

/* Page Header */
.page-header {
  background-color: var(--primary);
  color: white;
  padding: 3rem 0;
  text-align: center;
}

.page-header h2 {
  color: white;
  margin-bottom: 1rem;
}

/* Steps Section - Mobile First Design */
.steps-section {
  padding: 2rem 0;
  background-color: white;
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.step-box {
  background-color: var(--light);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  overflow: hidden;
}


.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  min-width: 60px;
  height: 100%;
  padding: 1.5rem 0;
}

.step-content {
  padding: 1.5rem;
  flex: 1;
}

.step-content h3 {
  margin: 0 0 0.5rem 0;
  color: var(--primary);
  font-size: 1.2rem;
}

.step-content p {
  margin: 0;
  color: var(--dark);
  line-height: 1.4;
}

/* Detail Section */
.detail-section {
  background-color: var(--light);
  padding: 3rem 0;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.detail-box {
  background-color: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.detail-box h3 {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--primary);
}

.detail-box h3 i {
  margin-right: 0.5rem;
  color: var(--accent);
}

/* CTA Section */
.cta-section {
  background-color: var(--primary);
  color: white;
  text-align: center;
  padding: 3rem 0;
}

.cta-section h2 {
  color: white;
  margin-bottom: 1rem;
}

.button-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
  justify-content: center;
  align-items: center;
}

.primary-btn {
  background-color: var(--accent);
  color: var(--dark);
  font-weight: bold;
}

.primary-btn:hover {
  background-color: #ffe066;
  text-decoration: none;
}

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

.secondary-btn:hover {
  background-color: rgba(255,255,255,0.1);
  text-decoration: none;
}

/* Media Queries */
@media (min-width: 768px) {
  .steps-container {
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .detail-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .button-group {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 992px) {
  .steps-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step-details {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #ddd;
}

.step-details h4 {
  margin-bottom: 0.5rem;
}

.step-details ul {
  padding-left: 1.5rem;
}

/* Requirements Boxes */
.requirements {
  padding: 4rem 0;
  background-color: var(--light);
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.requirement-box {
  background-color: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.requirement-box h3 {
  border-bottom: 2px solid var(--primary);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.requirement-box ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.warning {
  color: var(--danger);
  font-weight: bold;
}

/* Contact Form Styles */
.contact {
  padding: 4rem 0;
  background-color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
}

.contact-info {
  background-color: var(--primary);
  color: white;
  padding: 2rem;
  border-radius: 10px;
}

.contact-info h3 {
  color: white;
  margin-bottom: 1.5rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.info-item i {
  margin-right: 1rem;
  font-size: 1.5rem;
  color: var(--accent);
}

.info-item h4 {
  margin-bottom: 0.25rem;
  color: white;
}

.contact-form-container {
  background-color: var(--light);
  padding: 2rem;
  border-radius: 10px;
}

/* Pricing Plans */
.pricing {
  padding: 4rem 0;
}

.pricing .card {
  position: relative;
  overflow: visible;
}

.pricing .card.featured {
  transform: scale(1.05);
  z-index: 2;
  border: 2px solid var(--accent);
}

.card-header {
  background-color: var(--primary);
  color: white;
  padding: 1.5rem;
  text-align: center;
  border-radius: 10px 10px 0 0;
  position: relative;
}

.featured .card-header {
  background-color: var(--secondary);
}

.tag {
  position: absolute;
  top: -15px;
  right: -15px;
  background-color: var(--accent);
  color: var(--dark);
  padding: 0.25rem 1rem;
  font-size: 0.8rem;
  font-weight: bold;
  border-radius: 30px;
}

.price {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 1rem 0;
}

.price span {
  font-size: 1rem;
  font-weight: normal;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.feature-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list i {
  color: var(--success);
  margin-right: 0.5rem;
}

/* Testimonials */
.testimonials {
  padding: 4rem 0;
  background-color: var(--light);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial {
  background-color: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.quote {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
}

.quote::before {
  content: '\201C';
  font-size: 4rem;
  position: absolute;
  left: -1.5rem;
  top: -1.5rem;
  color: #eee;
  z-index: 1;
}

.author {
  display: flex;
  align-items: center;
}

.author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
}

/* FAQ Brief Section */
.faq.brief {
  padding: 3rem 0;
  background-color: var(--light);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.text-center {
  text-align: center;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

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

.btn-outline:hover {
  background: rgba(255,255,255,0.2);
}
:root {
  --primary: #1a4c8a;
  --secondary: #0077cc;
  --accent: #ffd700;
  --light: #f5f8fa;
  --dark: #333;
  --success: #28a745;
  --danger: #dc3545;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--light);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Typography */
h1, h2, h3, h4 {
  margin-bottom: 1rem;
  line-height: 1.3;
  color: var(--primary);
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--secondary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.btn {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
}

.btn:hover {
  background: var(--secondary);
  text-decoration: none;
}

/* Header &amp; Navigation */
header {
  background-color: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo i {
  font-size: 2rem;
  color: var(--primary);
  margin-right: 0.5rem;
}

.logo h1 {
  font-size: 1.5rem;
  margin-bottom: 0;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary);
  cursor: pointer;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 2rem;
}

nav ul li a {
  font-weight: 500;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url(/img/airplane.jpg);
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 5rem 0;
}

.hero h2 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 2rem;
}

/* Feature Cards */
.features {
  padding: 4rem 0;
}

.features h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.card-icon {
  background: var(--primary);
  color: white;
  font-size: 2rem;
  padding: 2rem;
  text-align: center;
}

.card-content {
  padding: 1.5rem;
}

.card h3 {
  margin-bottom: 1rem;
}

/* Timeline */
.timeline {
  padding: 4rem 0;
  background-color: white;
}

.timeline h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.timeline-steps {
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
}

/* CTA Section */
.cta {
  background-color: var(--primary);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.cta h2 {
  color: white;
  margin-bottom: 1.5rem;
}

.cta p {
  max-width: 800px;
  margin: 0 auto 2rem;
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  max-width: 600px;
  margin: 4rem auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
}

/* FAQ */
.faq {
  padding: 4rem 0;
  background-color: white;
}

.faq h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-item {
  margin-bottom: 1.5rem;
  background: var(--light);
  padding: 1.5rem;
  border-radius: 5px;
}

.faq-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

/* Footer */
footer {
  background-color: var(--primary);
  color: white;
  padding: 3rem 0 1rem;
}

footer h3 {
  color: white;
  font-size: 1.2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col i {
  margin-right: 0.5rem;
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}

/* Responsive */
@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    text-align: center;
  }
  
  .mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 1rem;
  }
  
  nav {
    width: 100%;
    margin-top: 1rem;
  }
  
  nav ul {
    flex-direction: column;
    background: white;
    padding: 1rem 0;
    display: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  
  nav ul.show {
    display: block;
  }
  
  nav ul li {
    margin: 0;
    text-align: center;
    padding: 0.5rem 0;
  }
  
  .contact-grid,
  .requirements-grid {
    grid-template-columns: 1fr;
  }
  
  /* Process Timeline Responsive */
  .process-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 2rem;
  }
  
  .step-icon {
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
  
  .process-step:not(:last-child)::after {
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: calc(100% - 80px - 2rem);
  }
  
  .hero h2 {
    font-size: 1.75rem;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .pricing .card.featured {
    transform: none;
  }
  
  .card {
    margin-bottom: 1.5rem;
  }
}

/* FAA Fees Section */
.faa-fees {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

.fee-table {
  margin: 2rem 0;
  overflow-x: auto;
}

.fee-table table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.fee-table th,
.fee-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.fee-table th {
  background-color: #f8f9fa;
  font-weight: 600;
}


.fee-note {
  margin-top: 1.5rem;
  padding: 1rem;
  background-color: #fff3cd;
  border: 1px solid #ffeeba;
  border-radius: 4px;
}

/* Verification Process Section */
.verification {
  padding: 4rem 0;
}

.verification-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.step-icon {
  width: 48px;
  height: 48px;
  background: #007bff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.step-content h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.2rem;
  color: #333;
}

.step-content p {
  margin: 0;
  color: #666;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .verification-steps {
    grid-template-columns: 1fr;
  }
  
  .fee-table {
    margin: 1rem -1rem;
  }
  
  .fee-table th,
  .fee-table td {
    padding: 0.75rem;
  }
}
</pre></body></html>