.contact-section {
    color: #ffffff;
    padding: 1rem;
    border-radius: 8px;
    font-family: Arial, sans-serif;
    position: relative;
    border: 1px solid #c4a55f;
    margin: 15px;
  }

  /* Добавляем внешнюю рамку */
  .contact-section::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 1px solid #c4a55f;
    border-radius: 12px;
    pointer-events: none;
  }

  .contact-title {
    color: #c4a55f;
    font-size: 24px;
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-align: center;
  }

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

  .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #ffffff;
  }

  .contact-form {
    width: 100%;
  }

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

  .form-control {
    width: 100%;
    padding: 0.75rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: #000000;
    transition: border-color 0.3s;
  }

  .form-control:focus {
    outline: none;
    border-color: #c4a55f;
  }

.submit-btn-custom {
    background-color: transparent;
    color: #c4a55f;
    border: 1px solid #c4a55f;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    text-align: center;
    font-size: 14px;
  }
  /* Стили для группы кнопок */
  .map-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: 1rem;
  }

  .submit-btn-custom:hover {
    background-color: #c4a55f;
    color: #1a1f2e;
  }

  .contact-info a {
    color: #ffffff;
    text-decoration: none;
  }

  /* ========================================
     Стили для интерактивной карты Яндекс (iframe)
     ======================================== */

  /* Контейнер iframe карты */
  .yandex-map-iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }

  /* Адаптивные стили для мобильных устройств */
  @media (max-width: 768px) {
    .yandex-map-iframe {
      height: 450px;
    }
  }

  @media (max-width: 480px) {
    .yandex-map-iframe {
      height: 400px;
    }
  }