/* Resetting some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

/* Container */
.container {
  width: 80%;
  margin: 0 auto;
}

/* Navigation */
.navbar {
  background-color: #2c3e50;
  padding: 20px 0;
}

.navbar .logo {
  color: white;
  font-size: 1.8rem;
  font-weight: bold;
  display: inline-block;
}

.navbar .nav-links {
  list-style: none;
  float: right;
}

.navbar .nav-links li {
  display: inline;
  margin-left: 20px;
}

.navbar .nav-links a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
}

.navbar .nav-links a:hover {
  color: #f39c12;
}

/* Hero Section */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 0;
  background-color: #3498db;
  color: white;
}

.hero .hero-text {
  flex: 1;
}

.hero .hero-text h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero .hero-text p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.hero .cta-button {
  background-color: #f39c12;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1rem;
}

.hero .hero-image {
  flex: 1;
  text-align: right;
}

.hero .hero-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
}

/* Features Section */
.features {
  padding: 60px 0;
  background-color: #ecf0f1;
  text-align: center;
}

.features h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.feature-card p {
  font-size: 1.1rem;
}

/* Pricing Section */
.pricing {
  padding: 60px 0;
  background-color: #fff;
  text-align: center;
}

.pricing h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.pricing-card {
  background-color: #ecf0f1;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.pricing-card h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.pricing-card p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.cta-button {
  background-color: #3498db;
  color: white;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1rem;
}

.cta-button:hover {
  background-color: #298
