* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

.hero {
  height: 70vh;
  background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.scroll-btn {
  padding: 10px 20px;
  background-color: #FFE66D;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: #333;
  border-radius: 5px;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 40px;
  background-color: #f9f9f9;
}

.feature-card {
  text-align: center;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.icon-speed, .icon-resolution, .icon-connectivity, .icon-durability, .icon-eco, .icon-maintenance {
  font-size: 2rem;
  margin-bottom: 10px;
}

.content-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 20px;
}

.subsection-title {
  font-size: 1.5rem;
  margin-top: 30px;
  margin-bottom: 15px;
}

.content-section h2 {
  font-size: 2.5rem;
  color: #FF6B6B; /* Coral Red for main section headings */
  margin-bottom: 20px;
  font-weight: bold;
  border-bottom: 3px solid #FF6B6B; /* Underline effect */
  padding-bottom: 5px;
}

.content-section h3 {
  font-size: 2rem;
  color: #4ECDC4; /* Turquoise for subsection headings */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.content-section h4 {
  font-size: 1.5rem;
  color: #333; /* Darker color for smaller headings */
  margin-top: 25px;
  margin-bottom: 10px;
  font-weight: bold;
}

.paragraph {
  margin-bottom: 20px;
  line-height: 1.8;
}

.blockquote {
  font-style: italic;
  color: #555;
  border-left: 4px solid #ccc;
  padding-left: 15px;
  margin: 20px 0;
}

blockquote::before {
  content: open-quote;
}

blockquote::after {
  content: close-quote;
}

strong {
  color: #FF6B6B;
}

em {
  color: #4ECDC4;
}

a {
  color: #4ECDC4; /* Turquoise color for links */
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: #FF6B6B; /* Coral Red color on hover */
  text-decoration: underline;
}

/* Table Styles */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 1rem;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

th, td {
  border: 1px solid #ddd;
  padding: 10px 15px;
  text-align: left;
}

th {
  background-color: #FF6B6B;
  color: #fff;
  font-weight: bold;
}

tr:nth-child(even) {
  background-color: #f2f2f2;
}

tr:hover {
  background-color: #f1f1f1;
}

/* List Styles */
ul, ol {
  margin: 20px 0;
  padding-left: 40px; /* Indent for list items */
  line-height: 1.8;
}

ul li {
  list-style-type: disc;
  margin-bottom: 10px;
}

ol li {
  list-style-type: decimal;
  margin-bottom: 10px;
}

/* Nested List Styles */
ul ul, ol ol {
  margin-top: 10px;
  margin-bottom: 10px;
}

ul ul li, ol ol li {
  list-style-type: circle; /* Different bullet style for nested lists */
}

.gallery {
  padding: 40px;
  background-color: #fff;
}

.gallery h2 {
  text-align: center;
  margin-bottom: 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

.footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 20px;
}

.footer-content {
  max-width: 800px;
  margin: auto;
}

.social-icons i {
  font-size: 1.5rem;
  margin: 0 10px;
  cursor: pointer;
}
