/*--------- Reset & Base Styles ---------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #222;
  background: #f7f8fa;
  line-height: 1.5;
}
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
a {
  text-decoration: none;
  color: inherit;
}
h2 {
  margin-bottom: 16px;
  color: #1a1a1a;
}
p {
  margin-bottom: 24px;
  color: #444;
}

/*--------- Header & Navigation ---------*/
.site-header {
  background: #ffffff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}
.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
}
.main-nav ul {
  display: flex;
  gap: 20px;
}
.main-nav li a {
  font-weight: 500;
  padding: 6px 8px;
  transition: color 0.3s ease;
}
.main-nav li a:hover {
  color: #0073e6;
}

/*--------- Hero Section ---------*/
.hero-section {
  background: linear-gradient(135deg, #0073e6, #00c6ff);
  color: #fff;
  text-align: center;
  padding: 120px 20px;
  position: relative;
  overflow: hidden;
}
.hero-section h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}
.hero-section p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 30px auto;
}
.btn {
  background: #fff;
  color: #0073e6;
  padding: 12px 24px;
  font-weight: bold;
  border-radius: 4px;
  display: inline-block;
  transition: background 0.3s ease, color 0.3s ease;
}
.btn:hover {
  background: #f0f0f0;
}
.animate-fade {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
}
.animate-fade.delay-1 {
  animation-delay: 0.6s;
}
.animate-fade.delay-2 {
  animation-delay: 1.2s;
}

/*--------- Insights Section ---------*/
.insights-section {
  background: #fff;
  padding: 80px 0;
}
.cards-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.insight-card {
  background: #f9f9f9;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.8s forwards;
}
.insight-card.delay-1 {
  animation-delay: 0.4s;
}
.insight-card.delay-2 {
  animation-delay: 0.8s;
}

/*--------- Accessories Section ---------*/
.accessories-section {
  background: #f4f8fd;
  padding: 80px 0;
}
.accessory-list {
  list-style: none;
  margin-top: 20px;
}
.accessory-list li {
  margin-bottom: 16px;
}
.accessory-list li strong {
  color: #0073e6;
}

/*--------- News Section ---------*/
.news-section {
  background: #fff;
  padding: 80px 0;
}
.news-block {
  background: #eef7ff;
  border-left: 4px solid #0073e6;
  padding: 20px 24px;
  margin: 24px 0;
  opacity: 0;
  transform: translateX(-20px);
  animation: slideRight 0.8s forwards;
}
.news-block.delay-1 {
  animation-delay: 0.5s;
}
.news-block.delay-2 {
  animation-delay: 1s;
}

/*--------- Reviews Section ---------*/
.reviews-section {
  background: #f4f8fd;
  padding: 80px 0;
}
.review-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.review-card {
  background: #fff;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #ddd;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
}
.review-card.delay-1 {
  animation-delay: 0.4s;
}
.review-card.delay-2 {
  animation-delay: 0.8s;
}

/*--------- FAQ Section ---------*/
.faq-section {
  background: #fff;
  padding: 80px 0;
}
.faq-section .faq-item {
  margin-bottom: 30px;
}
.faq-section .faq-item h4 {
  color: #0073e6;
}
.faq-section .faq-item p {
  margin-top: 8px;
  color: #444;
}

/*--------- About Section ---------*/
.about-section {
  background: #f4f8fd;
  padding: 80px 0;
}
.about-section p {
  margin-bottom: 24px;
}

/*--------- Footer ---------*/
.site-footer {
  background: #ffffff;
  text-align: center;
  padding: 40px 20px;
  font-size: 0.9rem;
  color: #666;
  border-top: 1px solid #e5e5e5;
}

/*--------- Animation Keyframes ---------*/
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(-20px);
    -webkit-transform: translateX(-20px);
    -moz-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    -o-transform: translateX(-20px);
}
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


.insights-section a {
  color: #0073e6;
  text-decoration: underline;
}

.about-section a {
  color: #0073e6;
  text-decoration: underline;
}