.contact-forms-page-responsive {
  background-color: #fff;
  min-height: calc(100vh - 300px);
}
.contact-forms-page-responsive .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
}
@media screen and (max-width: 768px) {
  .contact-forms-page-responsive .container {
    padding: 40px 15px;
  }
}
.contact-forms-page-responsive .page-title {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #333;
}
@media screen and (max-width: 768px) {
  .contact-forms-page-responsive .page-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
.contact-forms-page-responsive .intro-text {
  margin-bottom: 50px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .contact-forms-page-responsive .intro-text {
    margin-bottom: 30px;
  }
}
.contact-forms-page-responsive .intro-text p {
  margin-bottom: 15px;
  line-height: 1.8;
  color: #333;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .contact-forms-page-responsive .intro-text p {
    font-size: 14px;
    line-height: 1.7;
  }
}
.contact-forms-page-responsive .intro-text p:last-child {
  margin-bottom: 0;
}
.contact-forms-page-responsive .contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .contact-forms-page-responsive .contact-cards {
    gap: 15px;
  }
}
.contact-forms-page-responsive .contact-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.contact-forms-page-responsive .contact-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
  background-color: #f5f5f5;
}
.contact-forms-page-responsive .contact-card .card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 30px;
  text-decoration: none;
  color: inherit;
}
@media screen and (max-width: 768px) {
  .contact-forms-page-responsive .contact-card .card-link {
    padding: 20px;
  }
}
.contact-forms-page-responsive .contact-card .card-link:hover .arrow-icon svg path {
  transform: translateX(3px);
}
.contact-forms-page-responsive .contact-card .card-content {
  flex: 1;
  padding-right: 20px;
}
.contact-forms-page-responsive .contact-card .card-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .contact-forms-page-responsive .contact-card .card-title {
    font-size: 16px;
    margin-bottom: 8px;
  }
}
.contact-forms-page-responsive .contact-card .card-description {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .contact-forms-page-responsive .contact-card .card-description {
    font-size: 13px;
    line-height: 1.5;
  }
}
.contact-forms-page-responsive .contact-card .arrow-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-forms-page-responsive .contact-card .arrow-icon svg {
  width: 24px;
  height: 24px;
}
.contact-forms-page-responsive .contact-card .arrow-icon svg path {
  transition: transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  .contact-forms-page-responsive .pc-only {
    display: none;
  }
}