    body {
      margin: 0;
      font-family: 'Noto Sans KR', sans-serif;
      background-color: #fff;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .top-bar {
      background-color: #0017c1;
      color: white;
      padding: 10px 0;
    }

    .top-bar-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo img {
      height: 50px;
      padding: 0 12px;
    }

    .title-container {
      text-align: center;
      margin: 30px 0;
    }

    .main-title {
      font-size: 60px;
      font-weight: bold;
      color: #0017c1;
      margin: 0px 0;
    }

    .sub-title {
      font-size: 40px;
      font-weight: bold;
      color: #0017c1;
      margin: 0px 0;
    }

    .divider {
      height: 1.5px;
      background-color: #0017c1;
      margin: 20px auto;
      width: 100%;
    }

    .nav-links {
      display: flex;
      justify-content: center;
      gap: 30px;
      margin-bottom: 30px;
    }

    .nav-links a {
      position: relative;
      color: black;
      text-decoration: none;
      font-size: 16px;
      font-weight: 500;
      padding-bottom: 4px;
      transition: all 0.3s ease;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      height: 2px;
      width: 0%;
      background-color: #0017c1;
      transition: width 0.3s ease;
    }

    .nav-links a:hover::after {
      width: 100%;
    }
    h1 {
      font-size: 36px;
      font-weight: 800;
	  margin-top: 100px;
      margin-bottom: 100px;
	  text-align: center;
    }
    .step {
      margin-bottom: 80px;
	  text-align: center;
    }
    .step-title {
      font-size: 24px;
      font-weight: 700;
      border-bottom: 3px solid #2D4EF5;
      display: inline-block;
      padding-bottom: 5px;
      margin-bottom: 30px;
	  text-align: center;
    }
    .step img {
      width: 480px;
      border: 1px solid #ccc;
	  text-align: center;
	  margin-bottom: 80px;
    }
    footer {
      background-color: #0017c1;
      color: white;
      text-align: center;
      padding: 15px 0;
      font-size: 14px;
      margin-top: 50px;
    }

    html, body {
      height: 100%;
    }

    @media (max-width: 768px) {
      .container {
        padding: 0;
      }
	    .step img {
		width: 100%;
     }
	}