body {
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  background: #fff;
  color: #333;
}

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

/* HEADER */
header {
  border-bottom: 1px solid #eee;
}

#header {
  /* display: flex; */
  max-width: 1280px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
  background: #fff;

  position: relative;
}

#header .logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;

  font-size: 24px;
  font-weight: bold;
  color: #333;
}

#header .logo img {
  width: 180px;
}

nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  transition: all 0.3s ease-in-out;
}

nav a:link,
nav a:visited {
  text-decoration: none;
  color: #636363;
  font-weight: 500;
  font-size: 16px;
}

nav a.active {
  font-weight: 600;
}

#header .cta-section {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

#header button {
  align-self: center;
  width: fit-content;
  font-size: 16px;
  font-weight: 500;
  background: #1a73e9;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
}

#header button:hover {
  background: #005fcc;
}

/* HERO SECTION */
.hero-section {
  width: 100%;
  padding: 50px 20px;
}

.hero-container {
  display: flex;
  /* flex-wrap: wrap; */
  max-width: 1280px;
  margin: auto;
  gap: 30px;
}
.hero-image {
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  border-radius: 9px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.features-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-card {
  background: white;
  border-radius: 9px;
  padding: 24px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: start;
  transition: all 0.3s;
}

.feature-card:hover {
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.15);
}

.feature-card span {
  color: #ffa500;
  /* font-size: 36px; */
  margin-right: 16px;
}

.card-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-content h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  padding: 0;
  margin: 0;
}

.card-content p {
  font-size: 14px;
  padding: 0;
  margin: 0;
}

/* PAGE SECTION */
.page-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.page-title {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 40px;
}

/* SOLUTIONS GRID */
.solutions-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.solution-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  padding: 48px 20px;
  text-align: center;
  font-weight: 600;
}

.solution-card h2 {
  font-size: 18px;
  font-weight: 600;
}

/* PRICING GRID */
.pricing-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.plan-card {
  background: white;
  border: 1px solid #ddd;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  position: relative;
}

.plan-card.popular {
  border: 2px solid #007bff;
}

.popular-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #007bff;
  color: white;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 0 16px 0 16px;
}

.plan-card h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.plan-card p.price {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 20px;
}

.plan-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.plan-card li {
  text-align: left;
  margin: 8px 0;
  display: flex;
  align-items: center;
}

.plan-card li span {
  color: green;
  margin-right: 8px;
}

.plan-card button {
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

.plan-card button.primary {
  background: #007bff;
  color: white;
}

.plan-card button.primary:hover {
  background: #005fcc;
}

/* FOOTER */
footer {
  width: 100%;
  text-align: center;
  padding: 20px;
  background: #fff;
  border-top: 1px solid #eee;
  color: #333;
  overflow: hidden;
}

footer ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 10px;
}
