* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, sans-serif;
}

body {
  color: #111;
  background: #fff;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

.navbar {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid #eee;
  z-index: 10;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}

.logo {
  font-weight: 600;
}

.nav-links a {
  margin-left: 24px;
  text-decoration: none;
  color: #333;
}

.btn-outline {
  border: 1px solid #ccc;
  padding: 6px 12px;
  border-radius: 6px;
}

.hero {
  padding: 120px 0;
  text-align: center;
}

.hero h1 {
  font-size: 36px;
  max-width: 700px;
  margin: auto;
}

.hero p {
  max-width: 700px;
  margin: 20px auto 32px;
  color: #555;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #cfcfcf;
  padding: 8px 16px;
  border-radius: 8px;

  font-size: 14px;
  font-weight: 500;
  color: #2c3e50;
  background: transparent;
  text-decoration: none;
  cursor: pointer;

  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.15s ease;
}


.btn-outline:hover {
  background-color: #2c3e50;          
  color: #ffffff;
  border-color: #2c3e50;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}


.btn-outline:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.15);
}



.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background-color: #2c3e50;
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 8px;

  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;

  transition:
    background-color 0.2s ease,
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.btn-primary:hover {
  background-color: #1f2d3a;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}



.section {
  padding: 100px 0;
  margin-bottom: 40px;
}

.section.light {
  background: #fafafa;
}

.section h2 {
  text-align: center;
  margin-bottom: 60px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card {
  background: #fff;
  border: 1px solid #eee;
  padding: 24px;
  border-radius: 10px;

  transition: 
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  border-color: #e2e2e2;
}

.card.simple {
  background: transparent;
  border: none;
}

.tags span {
  display: inline-block;
  margin: 6px 6px 0 0;
  background: #f1f1f1;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  text-align: center;
}

.step span {
  display: inline-block;
  background: #eee;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  line-height: 32px;
  margin-bottom: 12px;
}

.cta {
  padding: 120px 0;
  text-align: center;
  background: #fff;
}

.contact-btn{
  margin-top: 10px;
}

