 body {
      font-family: 'Segoe UI', sans-serif;
      margin: 0;
      padding: 0;
      background-color:#f6a8b1;
      color: #333;
    }

    .intro-container {
      max-width: 1200px;
      margin: 50px auto;
      padding: 40px;
      background-color: #ffffff;
      border-radius: 20px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
      display: flex;
      gap: 30px;
      align-items: center;
    }

    .intro-text {
      flex: 1;
    }

    .intro-text h1 {
      font-size: 36px;
      margin-bottom: 20px;
      color: #bf4e30;
    }

    .intro-text p {
      font-size: 18px;
      line-height: 1.6;
    }

    .intro-img {
      flex: 1;
    }

    .intro-img img {
      width: 100%;
      border-radius: 12px;
    }

    @media (max-width: 768px) {
      .intro-container {
        flex-direction: column;
        padding: 20px;
      }
    }
	