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

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f4f4f4;
}

/* Navigation Bar */
nav {
  background: #333;
  color: #fff;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav .logo {
  font-size: 1.5rem;
}

nav ul {
  list-style: none;
  display: flex;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

nav ul li a:hover {
  color: #04c;
}

/* Header */
header {
  background: #e3e3e3;
  padding: 40px 0;
  text-align: center;
}

.header-content h1 {
  margin-bottom: 20px;
}

.header-content p {
  margin-bottom: 30px;
}

.cta-button {
  background: #333;
  color: #fff;
  padding: 10px 30px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease-in-out;
}

.cta-button:hover {
  background: #04c;
}

/* Sections */
section {
  padding: 40px 0;
  text-align: center;
}

/* Pricing Cards */
.pricing-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  position: relative;
  bottom: 0;
  width: 100%;
}
