  ul.dots { 
    list-style: disc; 
    padding-left: 1.2rem; 
  }

  ul.dots li::marker {
    color: #043160;  
  }

  /* Timeline Menu Styles */
  .timeline-menu {
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
  }

  
  .vertical-line {
    position: absolute;
    left: 67px;
    top: 25px;
    bottom: 25px;
    width: 4px;
    background: linear-gradient(to bottom, 
      #FFA500 0%, 
      #FFA500 25%, 
      #043160 25%, 
      #043160 100%);
    z-index: 1;
    transition: background 0.3s ease;
  }

  .timeline-row {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 2;
  }

  .date-tag {
    background-color: #043160;
    color: white;
    padding: 6px 8px;
    border-radius: 6px;
    font-size: 9px;
    font-weight: bold;
    text-align: center;
    line-height: 1.1;
    min-width: 40px;
    transition: background-color 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  }

  .date-tag.active {
    background-color: #FFA500;
  }

  .connector-line {
    width: 20px;
    height: 2px;
    background-color: #043160;
    transition: background-color 0.3s ease;
  }

  .connector-line.active {
    background-color: #FFA500;
  }

  
  .timeline-row .menu-item {
    margin-bottom: 0;
    flex: 1;
  }

  .timeline-row .menu-item a {
    font-size: 11px;
    padding: 8px 12px;
  }

  .gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    background:transparent;
    padding: 20px;
    overflow: hidden;
  }

  .gallery-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 20px;
  }

  .photo {
    flex: 0 0 calc(33.333% - 14px);
    background: transparent;
    cursor: pointer;
    transition: transform .3s ease, box-shadow .3s ease;
    position: relative;
    overflow: hidden;
  }

  .photo:hover {
    transform: scale(1.05);
    will-change: transform;
  }

  .photo-image {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .photo-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .3s ease;
    transform: scale(1.1);
  }

  /* Modal */
  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
  }

  .modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .modal img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
    cursor: pointer;
    animation: zoomIn 0.3s ease;
  }

  .modal .close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
  }

  .modal .close:hover {
    color: #ccc;
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  @keyframes zoomIn {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
  }

  /* Responsive */
  @media (max-width: 768px) {
    .photo {
        flex: 0 0 calc(50% - 10px);
    }
  }

  @media (max-width: 480px) {
    .photo {
        flex: 0 0 calc(100% - 0px);
    }
  }

  .section {
      margin-bottom: 60px;
  }


  .contacts-container {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-top: 20px;
  }

  .contact-container {
      perspective: 1000px;
      width: 300px;
      min-height: 90px;
      height: auto;
      position: relative;
  }

  .contact {
      width: 100%;
      height: 100%;
      min-height: 90px;
      position: relative;
      transform-style: preserve-3d;
      transition: transform 0.8s;
      border-radius: 15px;
      cursor: pointer;
  }


  .contact.flipped {
      transform: rotateY(180deg);
  }

  .contact-container:hover .contact {
      transform: scale(1.05);
  }

  .contact-container:hover .contact.flipped {
      transform: scale(1.05) rotateY(180deg);
  }

  .contact-front, .contact-back {
      position: absolute;
      width: 100%;
      min-height: 90px;
      height: auto;
      backface-visibility: hidden;
      border-radius: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 3px solid #043160;
      box-sizing: border-box;
  }

  .contact-front {
      background: #fff;
      gap: 1rem;
      padding: 5px;
      flex-direction: row;
      align-items: flex-start;
  }

  .circle {
      width: 85px;
      height: 85px;
      min-width: 85px;
      min-height: 85px;
      border-radius: 50%;
      background: #043160;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
  }

  .circle img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  .info {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 85px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .info h3 {
      margin: 0 0 5px 0;
      font-size: 1rem;
      color: #000;
      line-height: 1.2;
      font-weight: 700;
      word-wrap: break-word;
  }

  .info p {
      margin: 0;
      font-size: 0.85rem;
      color: #333;
      line-height: 1.3;
      word-wrap: break-word;
  }

  .info a {
      color: #043160;
      text-decoration: none;
      transition: color 0.3s;
      position: relative;
      z-index: 10;
      word-break: break-word;
  }

  .info a:hover {
      color: #0056b3;
      text-decoration: underline;
  }


    .contact-back {
        background: #043160;
        color: white;
        transform: rotateY(180deg);
        padding: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .contact-back p {
        font-size: 0.9rem;
        font-style: italic;
        text-align: center;
        margin: 0;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .contacts-container {
            flex-direction: column;
            align-items: center;
        }
        
        .contact-container {
            width: 100%;
            max-width: 320px;
        }

        .info h3 {
            font-size: 0.95rem;
        }

        .info p {
            font-size: 0.8rem;
        }

        .contact-back p {
            font-size: 0.85rem;
        }
    }

    @media (max-width: 480px) {
        .contact-container {
            min-height: 120px;
        }

        .contact {
            min-height: 120px;
        }

        .contact-front, .contact-back {
            min-height: 120px;
        }

        .circle {
            width: 75px;
            height: 75px;
            min-width: 75px;
            min-height: 75px;
        }

        .info {
            min-height: 75px;
        }

        .info h3 {
            font-size: 0.9rem;
        }

        .info p {
            font-size: 0.75rem;
        }

        .contact-back p {
            font-size: 0.8rem;
            padding: 10px;
        }
    }
