/* Base Styles */
body {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
  background-color: #f8f9fa;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  color: #333;
}

.container {
  width: 100%;
  max-width: 450px;
  padding: 2rem;
  background: white;
  border-radius: 1.5rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  text-align: center;
}

/* Logo Styles */
.logo {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 2rem;
  letter-spacing: -0.05rem;
}

.zizi {
  color: #C8A8FF; /* 연보라색 */
}

.bebe {
  color: #80F0DD; /* 연두색(민트색) */
}

/* Section & Form Styles */
.contact-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #444;
}

.contact-form {
  text-align: left;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #666;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: 0.75rem;
  font-size: 1rem;
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #C8A8FF;
  box-shadow: 0 0 0 3px rgba(200, 168, 255, 0.1);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

/* Main Content & Footer Styles */
.main-content {
  margin: 4rem 0;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #555;
}

.footer {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}

.partnership-btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: #f0f0f0;
  color: #666;
  text-decoration: none;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s;
}

.partnership-btn:hover {
  background: #e0e0e0;
  color: #444;
  transform: translateY(-2px);
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: #C8A8FF;
  color: white;
  border: none;
  border-radius: 0.75rem;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.submit-btn:hover {
  background: #b68aff;
}

.submit-btn:active {
  transform: scale(0.98);
}

.divider {
  margin: 2.5rem 0;
  border: 0;
  border-top: 1px solid #eee;
}
.comments-section {
  margin-top: 1rem;
  text-align: left;
}

