/* Colors based on Mintos site */
:root {
  --dark-green: #134e4a;
  --green-light: #2dd4bf;
  --green-lighter: #6ee7b7;
  --background: #f9faf7;
  --text-color: #134e4a;
  --text-muted: #4b5563;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--background);
  color: var(--text-color);
  line-height: 1.5;
  margin-left: 20px;
  margin-right: 20px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background: white;
  padding: 15px 0;
  box-shadow: 0 1px 3px rgb(0 0 0 / 0.1);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 40px;
}

nav ul.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav ul.nav-links li a {
  text-decoration: none;
  color: var(--dark-green);
  font-weight: 600;
  font-size: 1rem;
}

nav ul.nav-links li a:hover {
  text-decoration: underline;
}

.header-actions {
  display: flex;
  gap: 10px;
}

.btn {
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 6px;
  border: 1.5px solid var(--dark-green);
  cursor: pointer;
  font-size: 0.95rem;
  transition: background-color 0.3s ease;
}

.login-btn {
  background: transparent;
  color: var(--dark-green);
}

.login-btn:hover {
  background-color: var(--green-light);
  color: white;
  border-color: var(--green-light);
}

.create-account-btn {
  background-color: var(--dark-green);
  color: white;
  border: none;
}

.create-account-btn:hover {
  background-color: var(--green-light);
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 0;
  gap: 40px;
}

.hero-text {
  max-width: 520px;
}

.hero-text h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--dark-green);
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--text-muted);
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.primary-btn {
  background-color: var(--dark-green);
  color: white;
  border: none;
}

.primary-btn:hover {
  background-color: var(--green-light);
}

.learn-more {
  color: var(--dark-green);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.learn-more:hover {
  text-decoration: underline;
}

/* Hero graphic */
.hero-graphic {
  position: relative;
  max-width: 280px;
  text-align: center;
}

.info-box {
  background: white;
  padding: 20px;
  margin-top: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgb(0 0 0 / 0.05);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Stats */
.stats {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  padding-bottom: 60px;
}

.stat-item {
  text-align: center;
  max-width: 200px;
}

.stat-number {
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--dark-green);
  display: block;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }
  .hero-text {
    max-width: 100%;
  }
  .hero-graphic {
    max-width: 100%;
    margin-top: 40px;
  }
  .stats {
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
  }
  .stat-item {
    max-width: 100%;
  }
}
