* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  color: #000;
  overflow-x: hidden;
  background-color: #fff;
}

/* Hero Page */
.hero-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.hero-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  width: 200px;
  height: auto;
  margin-bottom: 30px;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 40px;
  letter-spacing: 2px;
  font-family: 'Courier New', Courier, monospace;
}

.cta-button {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 15px 50px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  font-family: 'Courier New', Courier, monospace;
}

.cta-button:hover {
  background-color: #333;
}

/* About Page */
.about-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background-color: #fff;
  padding: 300px 20px 20px;
  position: relative;
}

.about-content {
  max-width: 900px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 0;
}

.about-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #000;
  margin-bottom: 30px;
  font-family: 'Courier New', Courier, monospace;
  width: 100%;
}

.about-content p strong {
  font-weight: 700;
}

.contact-section {
  margin-top: 20px;
  margin-bottom: 0;
  text-align: center;
}

.contact-section h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  font-family: 'Courier New', Courier, monospace;
}

.email {
  font-size: 16px;
  font-family: 'Courier New', Courier, monospace;
}

.footer-info {
  background-color: #fff;
  padding: 60px 20px 40px;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.studio-name {
  font-size: 12px;
  color: #ccc;
  margin-bottom: 3px;
  font-family: 'Courier New', Courier, monospace;
  font-weight: 400;
}

.founded {
  font-size: 12px;
  color: #ccc;
  font-family: 'Courier New', Courier, monospace;
  font-weight: 400;
}

.footer-cat {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 36px;
  }

  .about-page {
    padding: 180px 20px 20px;
  }

  .about-content {
    max-width: 100%;
    padding: 0 15px;
  }

  .about-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .contact-section {
    margin-top: 15px;
  }

  .contact-section h2 {
    font-size: 20px;
  }

  .email {
    font-size: 14px;
  }

  .footer-info {
    padding: 40px 20px 30px;
  }

  .footer-cat {
    width: 50px;
    right: 10px;
    bottom: 10px;
  }

  .studio-name,
  .founded {
    font-size: 11px;
  }
}

