* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #1a1a1a;
}

.banner {
    background-image: url('../Assets/Hero-bg.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 100vh;
    padding: 20px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.nav {
    position: absolute;
    top: 20px;
    left: 40px;
    right: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 80px);
}

.logo {
    font-size: 20px;
    font-weight: bold;
    color: #4f46e5;
}

.signup-btn {
    background-color: #4f46e5;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
}

.banner-content {
    text-align: center;
}

.banner-content h1 {
    font-size: 2.5em;
    color: #1a1a1a;
    font-weight: 800;
    margin-bottom: 20px;
}

.focus-btn {
    background-color: #4f46e5;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
}

.action-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  gap: 280px;
  text-align: center;
}

.action-text {
  max-width: 600px;
  text-align: left;
}

.action-text h2 {
  font-size: 28px;
  margin-bottom: 15px;
  align-items: left;
}

.action-text p {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 25px;
  align-items: left;
}

.preview-btn {
  background-color: #4f46e5;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
}

.action-image img {
  max-width: 100%;
  border-radius: 20px;
}

.users-section {
  background-color: #eaeaff;
  text-align: center;
  padding: 60px 20px;
  border-radius: 20px;
  margin: 60px 20px;
}

.users-section h2 {
  font-size: 34px;
  margin-bottom: 30px;
}

.stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 120px;
}

.stats div {
  text-align: center;
  margin: 10px 20px;
}

.stats h3 {
  font-size: 102px;
  color: #4f46e5;
}

.stats p {
  font-size: 14px;
  color: #6b7280;
}

.review {
  background-color: #f5f7ff;
  padding: 80px 20px;
  text-align: center;
}

.review-heading {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
}

.review-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.review-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 15px;
}

.stars img {
  width: 20px;
  height: 20px;
}

.review-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.review-card p {
  font-size: 14px;
  color: #4b4b4b;
  margin-bottom: 20px;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviewer img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.reviewer-info span {
  font-size: 14px;
  font-weight: 500;
}

.reviewer-info small {
  display: block;
  font-size: 12px;
  color: #888;
}

.newsletter-section {
  background-color: #f5f7ff;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.newsletter-container {
  display: flex;
  max-width: 1000px;
  width: 100%;
  gap: 50px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.newsletter-text h2 {
  font-size: 78px;
  font-weight: 700;
  color: #000;
  text-align: left;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  max-width: 400px;
}

.newsletter-form label {
  font-size: 14px;
  color: #333;
  text-align: left;
}

.newsletter-form input,
.newsletter-form textarea {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  width: 100%;
  resize: none;
}

.newsletter-form textarea {
  min-height: 100px;
}

.newsletter-form button {
  background-color: #4f46e5;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.footer {
  background-color: #f9f9ff;
  text-align: center;
  padding: 60px 20px;
}

.footer-logo {
  font-size: 48px;
  color: #4f46e5;
  font-weight: 800;
  margin-bottom: 20px;
}

.footer-description {
  color: #7d7d93;
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-nav a {
  color: #7d7d93;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: #4f46e5;
}

.signup-btn:hover,
.focus-btn:hover,
.preview-btn:hover,
.newsletter-form button:hover {
  background-color: #3f3cc5;
  transition: background-color 0.3s ease;
}


@media (max-width: 768px) {
    .banner {
        height: auto;
        padding: 20px;
        background-size: cover;
        background-position: center;
    }

    .nav {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        padding: 10px 0;
        flex-direction: column;
        align-items: center;
    }

    .logo {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .signup-btn {
        padding: 8px 15px;
        font-size: 14px;
    }

    .banner-content {
        padding: 0 10px;
    }

    .banner-content h1 {
        font-size: 1.5em;
        margin-bottom: 15px;
    }

    .focus-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .action-section {
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
        text-align: center;
    }

    .action-text {
        max-width: 100%;
        text-align: center;
    }

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

    .action-text p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .live-preview-btn {
        background-color: #4f46e5;
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 8px;
        font-weight: bold;
        cursor: pointer;
        font-size: 14px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        transition: background-color 0.3s ease;
        margin-top: 10px;
    }

    .live-preview-btn:hover {
        background-color: #3f3cc5;
    }

    .preview-btn {
        padding: 10px 15px;
        font-size: 12px;
    }

    .action-image img {
        max-width: 100%;
        border-radius: 10px;
    }

    .users-section {
        padding: 30px 10px;
        margin: 30px 10px;
    }

    .users-section h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .stats {
        flex-direction: column;
        gap: 20px;
    }

    .stats div {
        margin: 0;
    }

    .stats h3 {
        font-size: 48px;
    }

    .stats p {
        font-size: 12px;
    }

    .review {
        padding: 40px 10px;
    }

    .review-heading {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .review-cards {
        flex-direction: column;
        align-items: center;
    }

    .review-card {
        width: 100%;
        max-width: 300px;
        margin-bottom: 20px;
    }

    .stars img {
        width: 16px;
        height: 16px;
    }

    .review-card h3 {
        font-size: 14px;
    }

    .review-card p {
        font-size: 12px;
    }

    .reviewer img {
        width: 30px;
        height: 30px;
    }

    .reviewer-info span {
        font-size: 12px;
    }

    .reviewer-info small {
        font-size: 10px;
    }

    .newsletter-section {
        padding: 40px 10px;
    }

    .newsletter-container {
        flex-direction: column;
        gap: 20px;
    }

    .newsletter-text h2 {
        font-size: 36px;
        text-align: center;
    }

    .newsletter-form {
        max-width: 100%;
    }

    .newsletter-form label {
        font-size: 12px;
    }

    .newsletter-form input,
    .newsletter-form textarea {
        padding: 10px;
        font-size: 12px;
    }

    .newsletter-form textarea {
        min-height: 80px;
    }

    .newsletter-form button {
        padding: 10px;
        font-size: 12px;
    }

    .footer {
        padding: 30px 10px;
    }

    .footer-logo {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .footer-description {
        font-size: 14px;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 10px;
    }

    .footer-nav a {
        font-size: 12px;
    }
}