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

    :root {
      --color-primary: #0c4a8a;
      --color-primary-light: #1565c0;
      --color-secondary: #a52a2a;
      --color-secondary-light: #c62828;
      --color-accent: #f9a825;
      --color-accent-dark: #c17900;
      --color-background: #f8f8f8;
      --color-foreground: #1a2332;
      --color-muted: #e8e9eb;
      --color-muted-foreground: #64748b;
      --color-border: #d1d5db;
      --color-card: #ffffff;
      --shadow-soft: 0 2px 12px -3px rgba(26, 35, 50, 0.08);
      --shadow-medium: 0 4px 24px -6px rgba(26, 35, 50, 0.12);
      --shadow-strong: 0 12px 48px -12px rgba(26, 35, 50, 0.20);
      --shadow-elegant: 0 8px 32px -8px rgba(12, 74, 138, 0.15);
    }

    body {
      font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
      background-color: var(--color-background);
      color: var(--color-foreground);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Playfair Display', Georgia, serif;
      font-weight: 700;
      line-height: 1.2;
    }
   

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
    }

    /* Header Styles */
    .header-top {
      background: var(--color-primary);
      padding: 0.5rem 0;
      color: rgba(255, 255, 255, 0.9);
      font-size: 0.875rem;
    }

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

    .header-contact {
      display: flex;
      gap: 1.5rem;
    }

    .header-contact-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .header-main {
      background: var(--color-card);
      border-bottom: 2px solid rgba(12, 74, 138, 0.2);
      box-shadow: var(--shadow-soft);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .header-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.25rem 0;
    }

    .header-logo {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .logo-icon {
      width: 3.5rem;
      height: 3.5rem;
      background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
      border-radius: 0.75rem;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-medium);
    }

    .logo-icon svg {
      width: 2rem;
      height: 2rem;
      color: white;
    }

    .logo-text-small {
      font-size: 0.875rem;
      color: var(--color-muted-foreground);
      font-weight: 500;
      margin-bottom: 0.25rem;
    }

    .logo-text-main {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--color-foreground);
    }

    .logo-primary {
      color: var(--color-primary);
    }

    .logo-secondary {
      color: var(--color-secondary);
    }

    .header-info {
      text-align: right;
    }

    .header-info-small {
      font-size: 0.75rem;
      color: var(--color-muted-foreground);
    }

    .header-info-main {
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--color-primary);
    }

    /* Hero Section */
    .hero {
      background: linear-gradient(to bottom right, var(--color-primary) 0%, #0d5ba8 50%, var(--color-secondary) 100%);
      color: white;
      padding: 5rem 0;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 5rem;
      left: 2.5rem;
      width: 16rem;
      height: 16rem;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      filter: blur(80px);
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: 5rem;
      right: 2.5rem;
      width: 24rem;
      height: 24rem;
      background: var(--color-secondary);
      opacity: 0.1;
      border-radius: 50%;
      filter: blur(80px);
    }

    .hero-content {
      max-width: 64rem;
      margin: 0 auto;
      text-align: center;
      position: relative;
      z-index: 10;
    }

    .hero-badge {
      display: inline-block;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 9999px;
      padding: 0.5rem 1.5rem;
      margin-bottom: 1.5rem;
      font-size: 1rem;
      font-weight: 500;
    }

    .hero h1 {
      font-size: 3.75rem;
      margin-bottom: 1.5rem;
      line-height: 1.1;
    }

    .hero-accent {
      color: var(--color-accent);
    }

    .hero-subtitle {
      font-size: 1.5rem;
      margin-bottom: 1rem;
      font-weight: 300;
      opacity: 0.9;
    }

    .hero-description {
      font-size: 1.125rem;
      opacity: 0.8;
      max-width: 42rem;
      margin: 0 auto 2.5rem;
      line-height: 1.8;
    }

    .hero-cta {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      margin-bottom: 3rem;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 1rem 2rem;
      border-radius: 0.5rem;
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      border: none;
      text-decoration: none;
    }

    .btn-primary {
      background: var(--color-secondary);
      color: white;
      box-shadow: var(--shadow-strong);
    }

    .btn-primary:hover {
      transform: scale(1.05);
      box-shadow: 0 16px 56px -16px rgba(165, 42, 42, 0.4);
    }

    .hero-features {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: rgba(255, 255, 255, 0.9);
      font-size: 0.875rem;
    }

    .hero-stats {
      display: flex;
      justify-content: center;
      gap: 4rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

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

    .hero-stat-number {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--color-accent);
      margin-bottom: 0.25rem;
    }

    .hero-stat-label {
      font-size: 0.875rem;
      opacity: 0.8;
    }

    /* Form Section */
    .form-section {
      padding: 4rem 0;
      background: var(--color-background);
    }

    .form-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .form-header h1 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      color: var(--color-foreground);
    }

    .form-header p {
      font-size: 1.125rem;
      color: var(--color-muted-foreground);
      max-width: 42rem;
      margin: 0 auto;
      line-height: 1.8;
    }

    .form-card {
      max-width: 56rem;
      margin: 0 auto;
      background: var(--color-card);
      border-radius: 1rem;
      box-shadow: var(--shadow-elegant);
      border: 2px solid var(--color-border);
      transition: border-color 0.3s ease;
    }

    .form-card:hover {
      border-color: rgba(12, 74, 138, 0.3);
    }

    .form-card-header {
      padding: 2rem;
      background: linear-gradient(to right, rgba(12, 74, 138, 0.05), rgba(165, 42, 42, 0.05));
      border-bottom: 1px solid var(--color-border);
    }

    .form-card-title {
      font-size: 2rem;
      margin-bottom: 0.75rem;
      color: var(--color-foreground);
    }

    .form-card-description {
      font-size: 1rem;
      color: var(--color-muted-foreground);
      line-height: 1.6;
    }

    .form-card-body {
      padding: 2rem;
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      margin-bottom: 1.5rem;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .form-label {
      font-weight: 500;
      color: var(--color-foreground);
      font-size: 0.875rem;
    }

    .form-input,
    .form-select {
      padding: 0.75rem 1rem;
      border: 1px solid var(--color-input);
      border-radius: 0.5rem;
      background: var(--color-background);
      font-size: 1rem;
      font-family: inherit;
      transition: all 0.2s ease;
    }

    .form-input:focus,
    .form-select:focus {
      outline: none;
      border-color: var(--color-primary);
      box-shadow: 0 0 0 3px rgba(12, 74, 138, 0.1);
    }

    .btn-submit {
      width: 100%;
      padding: 1rem;
      background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
      color: white;
      font-size: 1.125rem;
      font-weight: 600;
      box-shadow: var(--shadow-medium);
    }

    .btn-submit:hover {
      opacity: 0.9;
    }

    /* Info Section */
    .info-section {
      padding: 6rem 0;
      background: rgba(232, 233, 235, 0.3);
    }

    .section-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .section-title {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      color: var(--color-foreground);
    }

    .section-subtitle {
      font-size: 1.125rem;
      color: var(--color-muted-foreground);
      max-width: 42rem;
      margin: 0 auto;
      line-height: 1.8;
    }

    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      max-width: 80rem;
      margin: 0 auto 5rem;
    }

    .benefit-card {
      background: var(--color-card);
      padding: 2rem;
      border-radius: 1rem;
      border: 2px solid var(--color-border);
      text-align: center;
      transition: all 0.3s ease;
    }

    .benefit-card:hover {
      box-shadow: var(--shadow-elegant);
      border-color: rgba(12, 74, 138, 0.3);
      transform: translateY(-4px);
    }

    .benefit-icon {
      width: 4rem;
      height: 4rem;
      margin: 0 auto 1.5rem;
      border-radius: 50%;
      background: rgba(12, 74, 138, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .benefit-icon svg {
      width: 2rem;
      height: 2rem;
      color: var(--color-primary);
    }

    .benefit-title {
      font-size: 1.25rem;
      margin-bottom: 0.75rem;
      color: var(--color-foreground);
    }

    .benefit-description {
      color: var(--color-muted-foreground);
      line-height: 1.6;
    }

    /* FAQ Section */
    .faq-section {
      padding: 6rem 0;
      background: var(--color-background);
    }

    .faq-container {
      max-width: 64rem;
      margin: 0 auto;
    }

    .faq-item {
      background: var(--color-card);
      border-radius: 1rem;
      margin-bottom: 1.5rem;
      box-shadow: var(--shadow-soft);
      border: 1px solid var(--color-border);
      overflow: hidden;
    }

    .faq-question {
      padding: 1.5rem 2rem;
      font-size: 1.125rem;
      font-weight: 600;
      color: var(--color-foreground);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background-color 0.3s ease;
    }

    .faq-question:hover {
      background-color: rgba(12, 74, 138, 0.05);
    }

    .faq-icon {
      transition: transform 0.3s ease;
    }

    .faq-answer {
      padding: 0 2rem;
      max-height: 0;
      overflow: hidden;
      transition: all 0.3s ease;
      color: var(--color-muted-foreground);
      line-height: 1.7;
    }

    .faq-item.active .faq-answer {
      padding: 0 2rem 2rem;
      max-height: 500px;
    }

    .faq-item.active .faq-icon {
      transform: rotate(180deg);
    }

    /* Related Links Section */
    .related-links-section {
      padding: 4rem 0;
      background: rgba(232, 233, 235, 0.3);
    }

    .links-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
      margin: 0 auto;
    }

    .link-card {
      background: var(--color-card);
      padding: 1.5rem;
      border-radius: 0.75rem;
      transition: all 0.3s ease;
      border: 1px solid var(--color-border);
      text-decoration: none;
      color: var(--color-foreground);
    }

    .link-card:hover {
      box-shadow: var(--shadow-elegant);
      transform: translateY(-4px);
      border-color: var(--color-primary);
    }

    .link-icon {
      width: 3rem;
      height: 3rem;
      margin: 0 auto 1rem;
      border-radius: 50%;
      background: rgba(12, 74, 138, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .link-icon svg {
      width: 1.5rem;
      height: 1.5rem;
      color: var(--color-primary);
    }

    .link-title {
      font-size: 1rem;
      font-weight: 600;
    }

    .link-description {
      font-size: 0.875rem;
      color: var(--color-muted-foreground);
      line-height: 1.5;
    }

    /* Additional SEO Content */
    .seo-content {
      padding: 4rem 0;
      background: var(--color-background);
    }

    .seo-content h1 {
      font-size: 2rem;
      margin-bottom: 1.5rem;
      color: var(--color-foreground);
    }

    .seo-content h3 {
      font-size: 1.5rem;
      margin: 2rem 0 1rem;
      color: var(--color-primary);
    }

    .seo-content p {
      margin-bottom: 1rem;
      line-height: 1.7;
      color: var(--color-foreground);
    }

    .seo-content ul {
      margin: 1rem 0 1rem 2rem;
    }

    .seo-content li {
      margin-bottom: 0.5rem;
      line-height: 1.6;
    }

    /* Footer */
    .footer {
      background: linear-gradient(to bottom right, var(--color-primary), var(--color-primary), var(--color-secondary));
      color: white;
      border-top: 4px solid var(--color-accent);
    }

    .footer-content {
      padding: 4rem 0 3rem;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 3rem;
      margin-bottom: 3rem;
    }

    .footer-section h3 {
      font-size: 1.25rem;
      margin-bottom: 1rem;
    }

    .footer-section p {
      color: rgba(255, 255, 255, 0.8);
      font-size: 0.875rem;
      line-height: 1.6;
    }

    .footer-list {
      list-style: none;
      font-size: 0.875rem;
    }

    .footer-list li {
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 0.5rem;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.2);
      padding-top: 2rem;
      text-align: center;
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.875rem;
    }

    .footer-bottom p {
      margin-bottom: 0.5rem;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .header-contact-item:last-child {
        display: none;
      }
      
      .header-info {
        display: none;
      }
      
      .hero h1 {
        font-size: 2.5rem;
      }
      
      .hero-subtitle {
        font-size: 1.25rem;
      }
      
      .hero-stats {
        gap: 2rem;
      }
      
      .form-grid {
        grid-template-columns: 1fr;
      }
      
      .benefits-grid {
        grid-template-columns: 1fr;
      }
      
      .links-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .footer-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 480px) {
      .links-grid {
        grid-template-columns: 1fr;
      }
    }

    /* Icons */
    .icon {
      width: 1rem;
      height: 1rem;
      display: inline-block;
      vertical-align: middle;
    }