body {
  background: #f5f6fa;
  font-family: "Helvetica Neue", Helvetica, Arial, "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  margin: 0;
  padding: 0;
  color: #222;
  height: 100%;
  overflow-x: hidden;
}

html {
  height: 100%;
}

/* 艾特颜色 */
.at-color {
  color: #f39c12;
}

/* 主题颜色 */
.theme-color {
  color: #1e90ff;
}

/* 红色 */
.red-color {
  color: #ff0000;
}

/* 加粗 */
.bold {
  font-weight: bold;
}

.container {
  max-width: 1200px;
  margin: 40px auto 0 auto;
  display: flex;
  gap: 32px;
}

.left-panel {
  flex: 1.8;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  padding: 36px 32px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.right-panel {
  position: relative;
  flex: 1;
  min-width: 320px;
  max-width: 360px;
}

.sticky-wrapper {
  position: relative;
  height: 100%;
}

.main-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a6fb4;
  margin-bottom: 8px;
}

.sub-title {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 24px;
}

.article {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.article-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e6e6e6;
}

.author-nickname {
  font-weight: 600;
  color: #1a6fb4;
  font-size: 1.1rem;
}

.article-content {
  font-size: 1.08rem;
  line-height: 1.8;
  color: #222;
  margin-bottom: 8px;
}

.article-img {
  width: 100%;
  border-radius: 5px;
  margin-top: 8px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

.comment-section {
  margin-top: 24px;
  background: #f8fafc;
  border-radius: 10px;
  padding: 20px 18px 16px 18px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.03);
}

.comment-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a6fb4;
  margin-bottom: 12px;
}

.comment-list {
  margin-bottom: 16px;
}

.comment-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.comment-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #e6e6e6;
}

.comment-content {
  background: #fff;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.98rem;
  color: #333;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
}

.comment-form {
  display: flex;
  gap: 10px;
  align-items: center;
}

.comment-input {
  flex: 1;
  border: 1px solid #d0d7de;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 1rem;
  outline: none;
  transition: border 0.2s;
}

.comment-input:focus {
  border-color: #1a6fb4;
}

.comment-btn {
  background: #1a6fb4;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 18px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}

.comment-btn:hover {
  background: #155a8a;
}

.guide-card {
  position: sticky;
  top: 40px;
  width: 100%;
  background: #f8fafc;
  border-radius: 14px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
  padding: 28px 18px 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  z-index: 10;
}

.guide-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #1a6fb4;
}

.guide-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a6fb4;
}

.guide-wechat {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 6px;
}

.guide-qr {
  width: 90%;
  border-radius: 8px;
  background: #fff;
  object-fit: cover;
  border: 1px solid #e6e6e6;
}

.guide-btn {
  margin-top: 10px;
  background: #1a6fb4;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 28px;
  font-size: 1.08rem;
  cursor: pointer;
  transition: background 0.2s;
}

.guide-btn:hover {
  background: #155a8a;
}

.copyright {
  background: #eaf2fa;
  text-align: center;
  padding: 28px 10px 18px 10px;
  font-size: 0.98rem;
  color: #666;
  margin-top: 48px;
  border-top: 1px solid #d0d7de;
}

.copyright a {
  color: #1a6fb4;
  text-decoration: none;
  margin: 0 6px;
  font-weight: 500;
}

.copyright a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .container {
    flex-direction: column;
    gap: 18px;
    padding: 0;
    margin: 0;
  }
  .left-panel {
    border-radius: 0;
    padding: 20px;
  }
  .right-panel {
    display: none;
  }
}

/* 导游名称高亮样式 */
.guide-name-highlight {
  color: #ff3b30;
  font-weight: 600;
}

/* 微信号样式 */
.wechat-id {
  color: #ff3b30;
  font-weight: bold;
  cursor: pointer;
  padding: 2px 4px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.wechat-id:hover {
  background-color: #f0f7ff;
  box-shadow: 0 2px 8px rgba(0, 102, 221, 0.15);
}

/* 查看二维码按钮 */
.view-qr-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  margin-left: 4px;
}

.qr-icon {
  object-fit: contain;
}

/* 评论输入框样式 */
.comment-input {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
  padding: 24px;
  background: linear-gradient(135deg, #f8f9ff 0%, #f5f6fa 100%);
  border-radius: 20px;
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.comment-input input {
  flex: 1;
  padding: 16px 24px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 16px;
  font-size: 15px;
  color: #1a1a1a;
  background: #fff;
  transition: all 0.3s ease;
  outline: none;
}

.comment-input input:focus {
  border-color: #1a6fb4;
  box-shadow: 0 0 0 4px rgba(26, 111, 180, 0.1);
}

.comment-input button {
  padding: 14px 28px;
  background: linear-gradient(135deg, #1a6fb4 0%, #155a8a 100%);
  color: white;
  border: none;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.comment-input button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 111, 180, 0.3);
}

/* 快速留言模块样式 */
.quick-contact {
  margin-top: 30px;
  padding: 24px;
  background: #f8fafc;
  border-radius: 16px;
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.quick-contact h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1a6fb4;
  margin-bottom: 12px;
  text-align: center;
}

.quick-contact p {
  margin-bottom: 16px;
  color: #666;
  font-size: 15px;
  text-align: center;
}

.message-btn {
  background: #1a6fb4;
  color: white;
  border: none;
  border-radius: 12px;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.message-btn:hover {
  background: #155a8a;
  box-shadow: 0 4px 12px rgba(26, 111, 180, 0.2);
}

/* 悬浮按钮样式 */
.floating-buttons {
  position: fixed;
  right: 16px;
  bottom: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.float-btn svg {
  width: 20px;
  height: 20px;
  fill: #1a6fb4;
}

.float-btn:first-child svg {
  fill: #07c160;
}

.float-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* 移动端显示悬浮按钮 */
@media (max-width: 900px) {
  .floating-buttons {
    display: flex;
  }
}

@media (min-width: 901px) {
  .floating-buttons {
    display: none;
  }
}

/* 弹窗基础样式 */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1001;
  width: 90%;
  max-width: 500px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.modal-content {
  padding: 24px;
  animation: slideUp 0.3s ease;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.modal-header h4 {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}

.close-btn {
  background: none;
  border: none;
  font-size: 24px;
  color: #666;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: all 0.2s ease;
}

.close-btn:hover {
  color: #333;
}

/* 表单样式 */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
}

.required {
  color: #ff3b30;
  margin-left: 4px;
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid #d2d2d7;
  border-radius: 12px;
  font-size: 14px;
  color: #1a1a1a;
  background: #fff;
  transition: all 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #1a6fb4;
  box-shadow: 0 0 0 4px rgba(26, 111, 180, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* 手机号输入组合 */
.phone-input-group {
  display: flex;
  gap: 8px;
}

.country-select {
  padding: 12px 16px;
  padding-right: 36px;
  border: 1px solid #d2d2d7;
  border-radius: 12px;
  font-size: 14px;
  color: #1a1a1a;
  background: #fff;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  min-width: 140px;
  outline: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.country-select:focus {
  border-color: #1a6fb4;
  box-shadow: 0 0 0 4px rgba(26, 111, 180, 0.1);
}

.phone-input-group input {
  flex: 1;
}

/* 自定义国家选择器 */
.custom-country-select {
  position: relative;
  min-width: 90px;
}

.selected-country {
  padding: 12px 16px;
  border: 1px solid #d2d2d7;
  border-radius: 12px;
  font-size: 14px;
  color: #1a1a1a;
  background: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  box-sizing: border-box;
}

.selected-country:hover {
  border-color: #1a6fb4;
}

.dropdown-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  color: #666;
}

.dropdown-arrow.rotated {
  transform: rotate(180deg);
}

.country-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #d2d2d7;
  border-radius: 12px;
  margin-top: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  max-height: 200px;
  min-width: 200px;
  overflow-y: auto;
}

.country-option {
  padding: 12px 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
  color: #1a1a1a;
  border-bottom: 1px solid #f0f0f0;
}

.country-option:last-child {
  border-bottom: none;
}

.country-option:hover {
  background: #f8fafc;
}

.country-option.selected {
  background: #1a6fb4;
  color: #fff;
}

.country-option.selected:hover {
  background: #155a8a;
}

/* 联系方式选项 */
.contact-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 4px;
}

.radio-group {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid #d2d2d7;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #fff;
}

.radio-group:hover {
  background: #f8fafc;
}

.radio-group.selected {
  border-color: #1a6fb4;
  background: rgba(26, 111, 180, 0.05);
}

.radio-group input[type="radio"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #d2d2d7;
  border-radius: 50%;
  margin: 0;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  padding: 0;
}

.radio-group input[type="radio"]:checked {
  border-color: #1a6fb4;
  background: #fff;
}

.radio-group input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: #1a6fb4;
  border-radius: 50%;
}

.radio-group label {
  font-size: 15px;
  color: #1a1a1a;
  cursor: pointer;
  margin: 0;
}

/* 提交按钮 */
.submit-btn {
  background: #1a6fb4;
  color: white;
  border: none;
  border-radius: 12px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.submit-btn:hover:not(:disabled) {
  background: #155a8a;
  box-shadow: 0 4px 12px rgba(26, 111, 180, 0.2);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* 二维码弹窗样式 */
.qr-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease;
}

.qr-modal-content {
  background: white;
  width: 90%;
  max-width: 350px;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  animation: slideUp 0.3s ease;
}

.qr-modal-header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
}

.guide-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.modal-guide-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.modal-guide-name {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.guide-tag {
  font-size: 12px;
  background: #fff4e5;
  color: #ff9500;
  padding: 2px 8px;
  border-radius: 12px;
  font-weight: 500;
}

.qr-modal-body {
  padding: 24px;
  text-align: center;
}

.modal-qr-code {
  width: 260px;
  height: 260px;
  border-radius: 12px;
  cursor: pointer;
}

.qr-modal-footer {
  padding: 20px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  border-top: 1px solid #f0f0f0;
}

.secondary-btn {
  padding: 8px 20px;
  background: #f5f5f7;
  color: #666;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 4px;
}

.secondary-btn:hover {
  background: #eee;
}

.primary-btn {
  padding: 8px 20px;
  background: #07c160;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.primary-btn:hover {
  background: #06b054;
  box-shadow: 0 4px 12px rgba(7, 193, 96, 0.2);
}

/* 复制成功弹窗 */
.copy-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}

.copy-content {
  position: relative;
  background: white;
  padding: 30px;
  border-radius: 16px;
  width: 90%;
  max-width: 320px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  animation: slideUp 0.3s ease;
}

.copy-content .close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 20px;
  color: #999;
  cursor: pointer;
  padding: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.copy-content .close-btn:hover {
  background: #f5f5f5;
  color: #666;
}

.copy-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.copy-header svg {
  color: #07c160;
  width: 48px;
  height: 48px;
}

.copy-header h3 {
  margin: 0;
  color: #333;
  font-size: 20px;
  font-weight: 600;
}

.copy-content p {
  color: #666;
  font-size: 15px;
  margin: 8px 0;
  word-break: break-all;
}

.copy-footer {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.copy-footer .secondary-btn,
.copy-footer .primary-btn {
  flex: 1;
  padding: 12px 0;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center; /* 确保文字居中 */
  display: flex;
  align-items: center;
  justify-content: center;
}

.copy-footer .secondary-btn {
  background: #f5f5f5;
  color: #333;
}

.copy-footer .primary-btn {
  background: #07c160;
  color: white;
}

.copy-footer .secondary-btn:hover {
  background: #ebebeb;
}

.copy-footer .primary-btn:hover {
  background: #06b054;
}

/* 成功提示弹窗 */
.success-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease;
}

.success-content {
  background: white;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  width: 90%;
  max-width: 320px;
  animation: slideUp 0.3s ease;
}

.success-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: #34c759;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-icon svg {
  width: 36px;
  height: 36px;
  fill: white;
}

.success-content h3 {
  font-size: 20px;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.success-content p {
  font-size: 15px;
  color: #666;
  margin-bottom: 24px;
}

.success-btn {
  background: #1a6fb4;
  color: white;
  border: none;
  border-radius: 12px;
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.success-btn:hover {
  background: #155a8a;
  box-shadow: 0 4px 12px rgba(26, 111, 180, 0.2);
}

/* 通用提示弹窗 */
.alert-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  backdrop-filter: blur(10px);
  animation: fadeIn 0.2s ease;
}

.alert-content {
  background: rgba(255, 255, 255, 0.95);
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  max-width: 320px;
  width: 90%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  animation: slideUp 0.3s ease;
}

.alert-content p {
  margin-bottom: 20px;
  font-size: 15px;
  color: #1a1a1a;
  line-height: 1.4;
}

.alert-content button {
  background: #1a6fb4;
  color: white;
  border: none;
  border-radius: 12px;
  padding: 12px 32px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.alert-content button:hover {
  background: #155a8a;
  box-shadow: 0 4px 12px rgba(26, 111, 180, 0.2);
}

/* 评论注册弹窗 */
.comment-register-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  backdrop-filter: blur(10px);
  animation: fadeIn 0.2s ease;
}

.comment-register-modal .modal-content {
  background: rgba(255, 255, 255, 0.95);
  padding: 24px;
  border-radius: 20px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  animation: slideUp 0.3s ease;
}

/* 错误消息样式 */
.error-message {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: block;
}

/* 动画关键帧 */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* 移动端适配 */
@media (max-width: 768px) {
  .modal {
    width: 95%;
  }

  .modal-content {
    padding: 20px;
  }

  .qr-modal-content {
    width: 95%;
  }

  .modal-qr-code {
    width: 240px;
    height: 240px;
  }

  .country-select {
    min-width: unset;
    background-position: right 8px center;
  }

  .custom-country-select {
    min-width: unset;
  }

  .country-dropdown {
    max-height: 150px;
  }

  .copy-footer {
    flex-direction: column;
  }

  .comment-input {
    padding: 14px;
    gap: 12px;
  }

  .comment-input input {
    padding: 12px 16px;
    font-size: 14px;
  }

  .comment-input button {
    padding: 10px 15px;
    font-size: 14px;
  }

  .quick-contact {
    padding: 20px;
    margin-top: 24px;
  }

  .quick-contact p {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .comment-avatar {
    display: none;
  }
}
