/* contacts-section */
   
  
    /* contacts-section */
    .contacts-section {
      width: 100%;
      padding: 50px 2px;
      box-sizing: border-box;
      background-color: var(--wood-light);
    }

    .contacts-container {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      background: white;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      overflow: hidden;
      border: 1px #2a6496 solid;
      max-width: 1200px;
      margin: 0 auto; 
    }

    .contacts-info {
      flex: 1;
      min-width: 300px;
      padding: 40px;
      box-sizing: border-box;
    }

    .contacts-title {
      font-size: 28px;
      color: var(--wood-accent);
      margin-bottom: 30px;
      position: relative;
    }

    .contacts-title:after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 60px;
      height: 3px;
      background: var(--wood-accent);
    }

    .contact-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 25px;
    }

    .contact-icon {
      font-size: 22px;
      color: #2a6496;
      margin-right: 15px;
      margin-top: 3px;
    }

    .contact-text {
      flex: 1;
    }

    .contact-text h3 {
      font-size: 18px;
      color: #333;
      margin-bottom: 5px;
    }

    .contact-text p, .contact-text a {
      font-size: 16px;
      color: #555;
      transition: color 0.3s;
    }

    .contact-text a:hover {
      color: var(--wood-accent);
    }

    .map-container {
      flex: 1;
      min-width: 300px;
      min-height: 400px;
    }

    .map-container iframe {
      width: 100%;
      height: 100%;
      border: none;
    }