:root {
  --primary-color: #cc0000;
  --primary-hover: #e60000;
  --secondary-color: #333333;
  --text-color: #ffffff;
  --background-color: #1a1a1a;
  --card-background: #2a2a2a;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; /* System fonts */
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
}

/* Header Styles */
.main-header {
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 40px;
  width: auto;
}

.header-access-button {
  display: inline-block; /* Changed from flex */
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  background-color: var(--primary-color);
  color: white;
  font-size: 1rem;
}

.header-access-button:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
}

.nav-links a {
  color: var(--text-color);
  text-decoration: none;
  margin-left: 2rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-color);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 80px;
}

.hero-content {
  flex: 1;
  padding-right: 2rem;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #cccccc;
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Access Button */
.access-button-container {
  display: flex;
  justify-content: flex-start;
  margin-top: 2rem;
}

.access-button {
  display: inline-block; /* Changed from flex */
  padding: 1.2rem 2.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  background-color: var(--primary-color);
  color: white;
  font-size: 1.2rem;
  min-width: 250px; /* Adjusted min-width */
  text-align: center; /* Center text */
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.access-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(204, 0, 0, 0.4);
  background-color: var(--primary-hover);
}

/* Features Section */
.features-section {
  padding: 5rem 2rem;
  background-color: var(--card-background);
}

.features-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background-color: var(--background-color);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-card h3 {
  margin-bottom: 1rem;
  margin-top: 1rem; /* Added margin-top to compensate for removed icon */
  font-size: 1.5rem;
}

/* How It Works Section */
.how-it-works-section {
  padding: 5rem 2rem;
  background-color: var(--background-color);
}

.how-it-works-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
  background-color: var(--card-background);
  border-radius: 12px;
  transition: transform 0.3s ease;
  position: relative;
}

.step:hover {
  transform: translateY(-10px);
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.step-content {
  position: relative;
  z-index: 1;
}

.step-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.step-content p {
  color: #cccccc;
  line-height: 1.6;
}

/* Perfect Founders Section */
.perfect-founders-section {
  padding: 5rem 2rem;
  background-color: var(--card-background);
  display: flex;
  justify-content: center;
  align-items: center;
}

.perfect-founders-box {
  background: linear-gradient(135deg, #990000 0%, #cc0000 100%);
  padding: 3rem;
  border-radius: 16px;
  max-width: 800px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(204, 0, 0, 0.3);
  border: 1px solid rgba(230, 0, 0, 0.2);
}

.perfect-founders-box h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
  font-weight: 700;
}

.perfect-founders-box p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ffebeb;
  margin-bottom: 2rem;
}

.perfect-founders-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: #ffffff;
  color: #990000;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.perfect-founders-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
  background-color: #fff5f5;
}

/* Footer */
.main-footer {
  background-color: var(--secondary-color);
  padding: 3rem 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo img {
  height: 40px;
  width: auto;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: var(--text-color);
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
    padding-top: 120px;
  }

  .hero-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .access-button-container {
    justify-content: center;
  }

  .access-button {
    min-width: 220px; /* Adjusted for mobile */
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }

  .nav-links {
    display: none;
  }

  .footer-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }

  .steps-container {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .header-access-button {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  .perfect-founders-section {
    padding: 3rem 1.5rem;
  }

  .perfect-founders-box {
    padding: 2rem 1.5rem;
  }

  .perfect-founders-box h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .perfect-founders-box p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .perfect-founders-button {
    padding: 0.9rem 2rem;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
  }
}