  :root {
      --primary-color: #124d70;
      --secondary-color: #f8f9fa;
      --accent-color: #6290a0;
      --text-color: #333;
      --light-text: #6c757d;
  }

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

  .cover {
      width: 100%;
      background-size: cover;
      background-position: center;
      position: relative;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .title-position {
      position: relative;
      z-index: 10;
      text-align: center;
      padding: 2rem;
  }

  .tagline h1 {
      font-size: 2.5rem;
      font-weight: 700;
      color: white;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      margin-bottom: 1rem;
  }

  .company-name h2 {
      font-size: 2rem;
      font-weight: 600;
      color: white;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }

  .section-title {
      font-size: 1.8rem;
      font-weight: 600;
      margin-bottom: 2rem;
      color: var(--primary-color);
      position: relative;
      padding-bottom: 0.5rem;
  }

  .section-title:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background-color: var(--accent-color);
  }

  .btn-primary-custom {
      background-color: var(--accent-color);
      border-color: var(--accent-color);
      color: white;
      font-weight: 600;
      padding: 0.75rem 1.5rem;
      border-radius: 50px;
      transition: all 0.3s ease;
  }

  .btn-primary-custom:hover {
      background-color: #e05a2b;
      border-color: #e05a2b;
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .contact-info-box {
      background-color: white;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      padding: 2rem;
      margin-bottom: 2rem;
  }

  .social-icon {
      font-size: 1.5rem;
      margin: 0 0.5rem;
      color: var(--primary-color);
      transition: transform 0.3s ease;
  }

  .social-icon:hover {
      transform: translateY(-3px);
      color: var(--accent-color);
  }

  .location-badge {
      background-color: var(--secondary-color);
      border-radius: 50px;
      padding: 0.5rem 1rem;
      font-weight: 500;
      display: inline-block;
      margin-bottom: 1rem;
  }

  footer {
      background-color: var(--primary-color) !important;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  footer a {
      transition: all 0.3s ease;
  }

  footer a:hover {
      color: var(--accent-color) !important;
      text-decoration: underline !important;
  }

  @media (max-width: 768px) {
      .tagline h1 {
          font-size: 2rem;
      }

      .company-name h2 {
          font-size: 1.5rem;
      }

      .title-position {
          padding: 1rem;
      }
  }