.service-center-wrapper {
  background: #fafbfc;
  min-height: 100vh;
  padding-bottom: 40px;
  max-width: 1400px;
}

.banner-container {
  position: relative;
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: top 0.3s ease;
}

body.nav-scrolled .banner-container {
  top: 70px;
}

.service-center-wrapper {
  padding-top: 150px;
  transition: padding-top 0.3s ease;
}

body.nav-scrolled .service-center-wrapper {
  padding-top: 70px;
}

.breadcrumb {
  width: 100%;
  margin: 0 auto;
  padding: 20px 0 20px;
  padding-left: 12%;
  z-index: 10;
}

.service-center-content {
  width: 80%;
  display: flex;
  align-items: flex-start;
  max-width: 1400px;
  margin: 0 auto;
  gap: 40px;
  padding: 0 20px;
}

.sidebar {
  width: 220px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  padding-bottom: 20px;
}

.sidebar-title {
  font-size: 20px;
  font-weight: bold;
  color: #222;
  padding: 24px 0 16px;
  text-align: center;
  border-bottom: 1px solid #f0f0f0;
}

.sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-list li {
  padding: 16px 0;
  text-align: center;
  color: #666;
  font-size: 16px;
  cursor: pointer;
  border-left: 4px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.sidebar-list li.active,
.sidebar-list li:hover {
  background: #f5f7fa;
  color: #1a3c8b;
  border-left: 4px solid #1a3c8b;
}

.main-content {
  flex: 1;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 30px;
}

.content-section {
  display: none;
}

.content-section.active {
  display: block;
}

.content-title {
  font-size: 24px;
  font-weight: bold;
  color: #222;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid #1a3c8b;
}

.apply-intro,
.feedback-intro,
.download-intro {
  margin-bottom: 30px;
  line-height: 1.6;
  color: #444;
}

.download-card,
.document-item {
  width: 100%;
  display: flex;
  align-items: center;
  background: #f9f9f9;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
}

.file-icon,
.doc-icon {
  font-size: 40px;
  margin-right: 15px;
}

.download-btn,
.submit-btn {
  background: #1a3c8b;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background 0.3s;
}

.download-btn:hover,
.submit-btn:hover {
  background: #0d2a6e;
}

.transport-info {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.map-section {
  flex: 2;
  width: 100%;
  min-width: 0;
}

.map-with-markers {
  position: relative;
  width: 100%;
  min-height: 320px;
  background-color: #f0f0f0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.location-marker {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -100%);
  text-align: center;
}

.marker-dot {
  width: 12px;
  height: 12px;
  background: #1a3c8b;
  border: 2px solid #fff;
  border-radius: 50%;
}

.marker-label {
  margin-top: 6px;
  background: rgba(255, 255, 255, 0.9);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
}

.contact-info {
  background: #f9f9f9;
  border-radius: 6px;
  padding: 20px;
  border: 1px solid #e8e8e8;
  flex: 1;
}

.contact-item {
  display: flex;
  margin-bottom: 12px;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 10px;
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item .label {
  width: 100%;
  color: #666;
  font-weight: 500;
  flex-shrink: 0;
}

.qr-codes {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}

.qr-item {
  flex: 1;
  min-width: 120px;
  text-align: center;
}

.qr-code {
  width: 100px;
  height: 100px;
  background: #eaeaea;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  color: #888;
  border-radius: 4px;
}

.transport-methods {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.transport-method {
  flex: 1;
  min-width: 200px;
  display: flex;
  gap: 15px;
  background: #f9f9f9;
  padding: 15px;
  border-radius: 6px;
}

.method-icon {
  font-size: 24px;
}

.feedback-form {
  max-width: 600px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  box-sizing: border-box;
}

.documents-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 900px) {
  .service-center-wrapper {
    padding-top: 60px;
  }

  .service-center-content {
    flex-direction: column;
    gap: 20px;
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
    align-items: stretch;
  }

  .sidebar {
    width: 100%;
    max-width: 100%;
    order: 1;
    box-sizing: border-box;
  }

  .main-content {
    order: 2;
    padding: 24px 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .transport-info {
    flex-direction: column;
  }

  .map-section,
  .map-with-markers {
    width: 100%;
  }

  .map-with-markers {
    width: 100%;
    aspect-ratio: 4 / 3;
    min-height: 320px;
    max-height: 500px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #ffffff;
  }

  .map-with-markers span,
  .location-marker,
  .marker-label {
    display: none;
  }

  .transport-methods {
    flex-direction: column;
  }

  .contact-info {
    flex-direction: column;
  }

  .qr-codes {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .service-center-wrapper {
    padding-top: 60px;
  }

  .breadcrumb {
    padding: 15px 0;
    padding-left: 5%;
    font-size: 13px;
  }

  .service-center-content {
    width: 100%;
    padding: 0 12px;
    box-sizing: border-box;
  }

  .main-content {
    padding: 20px 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .content-title {
    font-size: 20px;
  }

  .map-with-markers {
    width: 100%;
    aspect-ratio: 4 / 3;
    min-height: 300px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #ffffff;
  }

  .transport-method {
    min-width: 100%;
  }

  .qr-item {
    min-width: 100px;
  }

  .qr-code {
    width: 80px;
    height: 80px;
  }

  .feedback-form {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .service-center-content {
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
  }

  .main-content {
    padding: 15px 10px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .content-title {
    font-size: 18px;
  }

  .map-with-markers {
    width: 100%;
    aspect-ratio: 1 / 1;
    min-height: 260px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #ffffff;
  }

  .contact-item {
    flex-direction: column;
    gap: 5px;
  }

  .contact-item .label {
    font-size: 13px;
  }

  .qr-code {
    width: 70px;
    height: 70px;
  }

  .form-group input,
  .form-group textarea {
    font-size: 13px;
    padding: 8px 10px;
  }

  .download-card,
  .document-item {
    padding: 15px;
    flex-direction: column;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
  }

  .file-icon,
  .doc-icon {
    font-size: 32px;
    margin-right: 0;
    margin-bottom: 10px;
  }
}