/* Base Styles */
body {
    font-family: 'Noto Sans KR', sans-serif;
    margin: 0;
    padding: 0;
    background: #fffaf9;
    color: #333;
  }
  
  h1, h2, h3 {
    color: #2c2c2c;
    margin-bottom: 1rem;
  }
  
  .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
  }
  
  /* Language Toggle */
  .lang-toggle {
    background: #fdfdfd;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    text-align: right;
  }
  
  .lang-toggle a {
    text-decoration: none;
    color: #f28c8c;
    font-weight: 600;
    margin: 0 0.25rem;
  }
  
  .lang-toggle a.active {
    text-decoration: underline;
  }
  
  /* Buttons */
  .btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: #f28c8c;
    color: white;
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 1rem;
    transition: background 0.3s ease;
    text-align: center;
  }
  
  .btn:hover {
    background: #e86a6a;
  }
  
  /* Hero Section */
  .hero {
    position: relative;
    background: linear-gradient(to bottom right, rgba(255,240,245,0.5), rgba(230,247,255,0.5)),
                url("assets/hero-illustration.png") no-repeat center center;
    background-size: cover;
    text-align: center;
    padding: 6rem 1.5rem;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.1);
    z-index: 0;
  }
  
  .hero-overlay {
    background: rgba(255, 255, 255, 0.75);
    padding: 2rem;
    border-radius: 16px;
    max-width: 600px;
    margin: 0 auto;
    z-index: 1;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  }
  
  .hero-overlay h1, .hero-overlay p {
    text-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  
  /* Sections */
  section {
    padding: 3rem 1.5rem;
  }
  
  .how-it-works {
    background: #fef9f7;
  }
  
  .steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    counter-reset: step-counter;
  }
  
  .step {
    position: relative;
    padding-left: 2.5rem;
    border-left: 3px solid #f28c8c;
    background: #fff;
    border-radius: 8px;
    padding: 1rem 1.5rem 1rem 2.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
  }
  
  .step::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: -1.2rem;
    top: 50%;
    transform: translateY(-50%);
    background: #f28c8c;
    color: #fff;
    font-size: 0.8rem;
    font-weight: bold;
    width: 24px;
    height: 24px;
    text-align: center;
    line-height: 24px;
    border-radius: 50%;
  }
  
  /* Why Section */
  .why {
    background: #f0f8ff;
  }
  
  .features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }
  
  .feature {
    background: #ffffff;
    padding: 1.25rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }
  
  /* FAQ */
  .faq-item {
    margin-bottom: 1.5rem;
    background: #fdfdfd;
    padding: 1rem;
    border-left: 4px solid #f28c8c;
    border-radius: 8px;
  }
  
  .faq-item h3 {
    margin-top: 0;
  }
  
  /* Footer */
  .contact {
    background: #f8f0ff;
    text-align: center;
    padding: 3rem 1.5rem 2rem;
  }
  
  .contact h2 {
    margin-bottom: 0.5rem;
  }
  
  .contact p {
    font-size: 1rem;
    max-width: 500px;
    margin: 0.5rem auto 1.5rem;
  }
  
  .contact-info p {
    margin: 0.25rem 0;
    font-size: 0.95rem;
    color: #555;
  }
  
  /* Matchmaker Section */
  .about-matchmaker {
    background: #fff9f9;
    padding: 4rem 1.5rem;
  }
  
  .matchmaker-card {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
  }
  
  .matchmaker-image {
    flex: 0 0 200px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }
  
  .matchmaker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .matchmaker-info {
    flex: 1 1 300px;
  }
  
  .matchmaker-info h2 {
    margin-top: 0;
    font-size: 1.8rem;
    color: #217596;
  }
  
  .matchmaker-info p {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .step, .feature {
      flex: 1 1 100%;
    }
  
    .features {
      grid-template-columns: 1fr;
    }
  
    .btn {
      display: block;
      width: auto;
      max-width: 90%;
      margin: 1rem auto 0;
      text-align: center;
      font-size: 1rem;
      padding: 0.8rem 1.5rem;
    }
  
    h1 {
      font-size: 1.75rem;
    }
  
    h2 {
      font-size: 1.4rem;
    }
  
    .hero {
      padding: 4rem 1rem;
    }
  
    .hero-overlay {
      padding: 1.5rem;
    }
  
    .faq-item {
      font-size: 0.95rem;
    }
  
    .contact p {
      font-size: 0.95rem;
    }
  
    .matchmaker-card {
      flex-direction: column;
      text-align: center;
    }
  
    .matchmaker-image {
      width: 160px;
      height: 160px;
      margin-bottom: 1rem;
    }
  
    .matchmaker-info h2 {
      font-size: 1.5rem;
    }
  
    .matchmaker-info p {
      font-size: 0.95rem;
    }
  }
  