 .page-content {
    padding: 30px 0 60px;
  }

  .page-title {
    font-size: 24px;
    font-weight: 700;
    color: #003f74;
    margin-bottom: 24px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .page-subtitle {
    font-size: 20px;
    font-weight: 700;
    color: #003f74;
    margin-bottom: 8px;
  }

  .contact-sidebar {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 24px;
  }

  .contact-sidebar__title {
    font-size: 18px;
    font-weight: 700;
    color: #003f74;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e0e0e0;
  }

  .contact-info {
    margin-bottom: 0;
    font-style: normal;
  }

  .contact-info__item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #555;
  }

  .contact-info__item i {
    font-size: 16px;
    color: #0387f4;
    margin-top: 3px;
    flex-shrink: 0;
  }

  .contact-info__item a {
    color: #0387f4;
    text-decoration: none;
  }

  .contact-info__item a:hover {
    text-decoration: underline;
  }

  .contact-map {
    border-radius: 12px;
    overflow: hidden;
  }

  .social-links {
    display: flex;
    gap: 12px;
  }

  .social-links__item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #003f74;
    color: #fff;
    font-size: 18px;
    transition:
      background 0.3s ease,
      transform 0.3s ease;
  }

  .social-links__item:hover {
    background: #0387f4;
    transform: scale(1.1);
    color: #fff;
  }

  .form-control:focus {
    border-color: #0387f4;
    box-shadow: 0 0 0 0.2rem rgba(3, 135, 244, 0.15);
  }