* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, Arial, sans-serif;
}

body {
  line-height: 1.6;
  color: #0f2f35;
}

/* Containers */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
}

/* Navbar */
.navbar {
  background: #ffffff;
  border-bottom: 1px solid #eee;
}

.nav-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 36px;
  width: auto;
  display: block;
}

nav a {
  margin-left: 22px;
  text-decoration: none;
  color: #0f2f35;
  font-weight: 500;
}

.btn-outline {
  border: 1px solid #d26f4c;
  padding: 8px 16px;
  border-radius: 20px;
  color: #d26f4c;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #0f2f35, #1f4b53);
  color: #ffffff;
  text-align: center;
}

.hero h1 {
  font-size: 44px;
  margin-bottom: 20px;
}

.hero span {
  color: #d26f4c;
}

.hero p {
  max-width: 720px;
  margin: auto;
  opacity: 0.9;
}

.cta-group {
  margin-top: 30px;
}

.btn-primary {
  background: #d26f4c;
  color: #ffffff;
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  margin-right: 10px;
}

.btn-secondary {
  border: 1px solid #ffffff;
  padding: 12px 26px;
  border-radius: 30px;
  color: #ffffff;
  text-decoration: none;
}

/* Sections */
.section.light {
  background: #ffffff;
}

.section.dark {
  background: #0f2f35;
  color: #ffffff;
}

.section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
}

.center-text {
  text-align: center;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.card {
  background: #f6f9fa;
  padding: 26px;
  border-radius: 16px;
}

.dark-card {
  background: rgba(255, 255, 255, 0.08);
}

/* Solutions */
.solution {
  margin-bottom: 32px;
}

.solution ul {
  margin-left: 20px;
}

/* Lists */
.inline-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

/* CTA */
.cta-section {
  background: #d26f4c;
  color: #ffffff;
  text-align: center;
}

.cta-section .btn-primary {
  background: #ffffff;
  color: #d26f4c;
  display: inline-block;
  margin-top: 20px;
}

.email {
  margin-top: 14px;
  opacity: 0.9;
}

/* Footer */
footer {
  background: #0f2f35;
  color: #ffffff;
  text-align: center;
  padding: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }

  nav a {
    margin-left: 14px;
  }

  .logo img {
    height: 30px;
  }
}
