@charset "UTF-8";
/* CSS Document */
CSS
/* Global Styles */



.container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h1, h2 {
 
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 24px;
}

p {
  font-size: 18px;
}

/* Hero Section */

.hero {

  background-size: 100% 300px;
  background-position: 0% 100%;
  padding: 100px 0;
  color: #fff;
  text-align: center;
}

.hero img {
  width: 100%;
  margin: 20px auto;
}

/* Features Section */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background-color: #f9f9f9;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

/* Testimonials Section */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background-color: #f9f9f9;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.testimonial-card p {
  font-size: 16px;
  margin-bottom: 10px;
}

.author {
  font-size: 14px;
  color: #666;
}

/* Specs Table */

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table th, .specs-table td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: left;
}

.specs-table th {
  background-color: #f9f9f9;
}

/* Call-to-Action Section */

.cta {
  background-image: linear-gradient(to bottom, #007bff, #0069d9);
  background-size: 100% 300px;
  background-position: 0% 100%;
  padding: 50px 0;
  color: #fff;
  text-align: center;
}

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

.btn {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}

.btn:hover {
  background-color: #0069d9;
}
