* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Georgia", serif;
  background-color: #000;
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Navigation */
nav {
  background-color: #000;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-family: "Arial", sans-serif;
}

.logo {
  display: inline-block;
}

.logo img {
  max-width: 50px;
  display: block;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  position: relative;
  color: #c6c3c3;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Main Container */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
  flex: 1;
}

/* Logo Brand */
.brand-logo {
  text-align: center;
  margin-bottom: 60px;
}

.brand-logo h1 {
  font-family: "Italianno", cursive;
  font-size: 80px;
  font-weight: 400;
  letter-spacing: 2px;
  margin: 0;
}

/* Page Title */
.page-title {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 30px;
  text-transform: uppercase;
}

/* Intro Text */
.intro-text {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 50px;
  text-align: left;
}

/* Steps Section */
.step {
  margin-bottom: 50px;
}

.step-number {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #fff;
  color: #000;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-weight: bold;
  margin-right: 15px;
  font-size: 18px;
}

.step-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.step-content {
  font-size: 16px;
  line-height: 1.8;
  padding-left: 55px;
  color: #ddd;
}

.contact-highlight {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 15px;
  border-radius: 5px;
  margin-top: 10px;
  font-size: 18px;
  font-weight: bold;
}

.contact-highlight a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s;
}

.contact-highlight a:hover {
  opacity: 0.7;
}

/* Note Section */
.note-section {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #fff;
  padding: 30px;
  margin-top: 60px;
}

.note-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.note-content {
  font-size: 16px;
  line-height: 1.8;
  color: #ddd;
}

/* Footer */
.footer {
  text-align: center;
  padding: 50px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  font-family: "Italianno", cursive;
  font-size: 40px;
  margin-bottom: 20px;
}

.footer-link {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 2px;
  transition: opacity 0.3s;
}

.footer-link:hover {
  opacity: 0.7;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 25px;
  font-size: 24px;
  margin-top: 30px;
}

.social-icons a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s;
}

.social-icons a:hover {
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
  .brand-logo h1 {
    font-size: 60px;
  }

  .page-title {
    font-size: 24px;
  }

  .intro-text {
    font-size: 16px;
  }

  .step-title {
    font-size: 18px;
  }

  .step-content {
    font-size: 14px;
    padding-left: 0;
    margin-top: 10px;
  }

  .step-number {
    display: block;
    margin-bottom: 10px;
  }

  .note-section {
    padding: 20px;
  }

  .nav-links {
    gap: 15px;
  }

  .nav-links a {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .brand-logo h1 {
    font-size: 50px;
  }

  .container {
    padding: 40px 15px;
  }

  .page-title {
    font-size: 20px;
  }
}
