* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #ffffff;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  padding: 15px 0;
}

.header-flex {
  display: flex;
  align-items: center;
}

.logo {
  height: 38px;
}

/* Hero Section */
.hero {
  background-image: url("https://s.aolcdn.com/membership/WAS/adg/hero2@2x.jpg");
  background-size: cover;
  background-position: center;
  padding: 80px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 420px;
}

/* Hero Text */
.hero-text {
  max-width: 520px;
}

.hero-text h1 {
  font-size: 36px;
  color: #000;
  margin-bottom: 15px;
}

.hero-text p {
  font-size: 18px;
  color: #000;
  margin-bottom: 25px;
}

/* CTA Button */
.cta-btn {
  display: inline-block;
  background: #0077cc;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
}

.cta-btn:hover {
  background: #005fa3;
}

/* Steps Section */
.steps {
  padding: 60px 0;
  background: #f8f9fb;
  text-align: center;
}

.steps h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.subtitle {
  margin-bottom: 40px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.step-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.step-card h3 {
  margin-bottom: 10px;
}

.step-image {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 15px;
}

/* System Requirements */
.requirements {
  padding: 60px 0;
}

.requirements h2 {
  text-align: center;
  margin-bottom: 25px;
}

.requirements ul {
  max-width: 600px;
  margin: auto;
  padding-left: 20px;
}

.requirements-cta {
  text-align: center;
  margin-top: 30px;
}

/* Footer */
.site-footer {
  background: #f1f1f1;
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    margin: auto;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .hero-text p {
    font-size: 16px;
  }
}
.bg-image-section {
  background-image: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi8lMNm98aYR_h_hW03orPh07Ug32-mpIpXM4WEIt4ZzeM44ha68e8eAY5d4HpMoe84BVecfjGl9uh2zJSLMHtYMX2op4bD0whGisKarpb3AopUBr6SnDsIEDPsphUNCGMKu8h2KqQ03X2gCty3Q15xDqgWJSv4r9xCCoQTMB0rx7n8ozFcKKcKYbE4SQ/s1536/laptop.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 250px; /* Adjust height as needed */
}
