/* General Styles */
html, body {
  font-family: 'Inter', 'Roboto', sans-serif;
  overflow-x: auto;
}

body {
  margin: 0;
  padding: 0;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.nav-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 20px;
}

.nav-container .logo {
  display: flex;
  justify-content: start;
  margin: 0;
  padding: 0;
}

.logo img {
  height: 1.9rem;
  margin-top: 0px;
}

.logo-button-container {
  margin-top: 1px;
}

.logo-button {
  font-family: 'Roboto', sans-serif;
  background: #06b6d4;
  color: #fff;
  padding: 8px 12px;
  text-decoration: none;
  border-radius: 10px;
  font-size: 1rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.logo-button:hover {
  background: #08b1cf;
  transform: translateY(-5px);
}

/* Hero Section */
.hero {
  background: #475569;
  color: #fff;
  padding: 0 0 100px 0;
  text-align: center;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.hero p {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.container .hero-last {
  margin-bottom: 40px;
}

.cta-button {
  font-family: 'Roboto', sans-serif;
  background: #06b6d4;
  color: #fff;
  padding: 16px 20px;
  text-decoration: none;
  border-radius: 10px;
  font-size: 1rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
  background: #08b1cf;
  transform: translateY(-5px);
}

/* Problem Section */
.problem {
  padding: 60px 0;
  text-align: center;
}

.problem h2 {
  font-size: 1.8rem;
  margin-bottom: 40px;
}

.problem-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.problem-item {
  background: #f1f5f9;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.problem-item h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.problem-item p {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  color: #666;
}

.problem-lead {
  font-size: 1.1rem;
  margin-top: 40px;
}

.problem-solved {
  font-size: 1.1rem;
}

/* Solution Section */
.solution {
  background: #64837e linear-gradient(to right, #64837e, #64837e);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.solution h2 {
  font-size: 1.8rem;
  margin-bottom: 40px;
}

.solution-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.solution-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

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

.solution-item h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.solution-item p {
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
}

.cta-button2 {
  font-family: 'Roboto', sans-serif;
  background: #ff7f50;
  color: #fff;
  padding: 16px 20px;
  text-decoration: none;
  border-radius: 10px;
  font-size: 1rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.cta-button2:hover {
  background: #f77b4e;
  transform: translateY(-5px);
}

/* Future Section */
.future {
  padding: 80px 0;
  text-align: center;
  background: #475569;
  color: #fff;
}

.future h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.future h3 {
  margin-bottom: 30px;
}

.future p {
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-family: 'Roboto', sans-serif;
}

/* Footer */
footer {
  background-color: #2c3e50;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}

footer h3 {
  font-size: 5rem;
}

footer p {
  margin: 0;
  font-size: 0.9rem;
  font-family: 'Roboto', sans-serif;
}

.cta-button3 {
  font-family: 'Roboto', sans-serif;
  background: #06b6d4;
  color: #fff;
  padding: 16px 20px;
  text-decoration: none;
  border-radius: 10px;
  font-size: 1rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.cta-button3:hover {
  background: #08b1cf;
  transform: translateY(-5px);
}

.policy-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px;
}

.policy-container a {
  color: #f5f5f5;
  text-decoration: none;
  font-weight: bold;
  margin: 0 10px;
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url('./assets/app_bg.png');
  background-size: cover;
  background-position: center;
  z-index: -1;
  opacity: 0.2;
}

.content {
  position: relative;
  z-index: 1;
  padding: 20px;
  color: white;
}

/* Responsive Design */
@media (min-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .problem-grid,
  .solution-grid {
    flex-direction: row;
    gap: 20px;
  }

  .problem-item,
  .solution-item {
    flex: 1;
  }
}

@media screen and (max-width: 600px) {
  .background {
    background-image: url('./assets/app_bg_mobile.png');
  }
}


@media (max-width: 375px) {
  .logo img {
    height: 1.6rem;
  }

  .logo-button-container {
    margin-top: -1px;
  }

  .logo-button {
    font-family: 'Roboto', sans-serif;
    padding: 5px 8px;
    font-size: 0.9rem;
  }
}
