.form-group {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.form-group label {
  min-width: 80px;
  font-weight: 500;
}

.form-group input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.privacy-wrapper {
  margin-top: 30px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  width: 100%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.privacy-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #fff;
  border-bottom: none;
}

.privacy-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
}

.privacy-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #3617ce;
}

.privacy-checkbox label {
  font-size: 15px;
  cursor: pointer;
  color: #333;
}

.detail-toggle {
  padding: 8px 20px;
  background-color: #3617ce;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.detail-toggle:hover {
  opacity: 0.9;
}

.privacy-content {
  display: none;
  padding: 0 20px 20px 20px;
  background: #fff;
  color: #666;
}

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

.privacy-content p {
  margin-bottom: 8px;
  line-height: 1.6;
  font-size: 14px;
  color: #666;
}

.submit {
  margin-top: 20px;
}

.submit input[type="submit"] {
  width: 100%;
  padding: 15px;
  background-color: #3617ce;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 500;
}

@media (max-width: 600px) {
  .form-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .form-group label {
    min-width: auto;
  }

  .form-group input {
    width: 100%;
  }

  .privacy-wrapper {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .privacy-wrapper {
    margin-top: 20px;
    border-radius: 6px;
  }

  .privacy-header {
    padding: 15px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }

  .privacy-checkbox {
    gap: 8px;
  }

  .privacy-checkbox label {
    font-size: 14px;
    flex: 1;
  }

  .detail-toggle {
    padding: 6px 12px;
    font-size: 13px;
    margin-left: auto;
  }

  .privacy-content {
    padding: 0 15px 15px 15px;
  }

  .privacy-content p {
    font-size: 13px;
    margin-bottom: 6px;
  }
}

@media (max-width: 480px) {
  .privacy-header {
    padding: 12px;
  }

  .privacy-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
  }

  .privacy-checkbox label {
    font-size: 13px;
  }

  .detail-toggle {
    padding: 5px 10px;
    font-size: 12px;
  }

  .privacy-content {
    padding: 0 12px 12px 12px;
  }

  .privacy-content p {
    font-size: 12px;
    line-height: 1.5;
  }
}

header h1 {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 50px; /* 60px에서 축소 */
}

header h1 svg {
  height: 30px; /* 40px에서 축소 */
  width: auto;
}

header h1 span {
  font-size: 16px; /* 18px에서 축소 */
  white-space: nowrap;
  color: #fff;
}
/* ... existing code ... */

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 30px 0;
  background: #fff;
}

.social-links a {
  color: #666;
  font-size: 24px;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #3617ce;
}
