*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Hero Section */
        .hero-section {
            width: 1600px;
            max-width: 98%;
            margin: 0 auto;
            margin-top: 110px;
            margin-bottom: 30px;
            /* height: 600px; */
            background-image: url('/img/webdanny-course-bg.webp');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            padding: 80px 20px;
            min-height: 40vh;
            border-radius: 12px;
            position: relative;
        }

        .hero-text {
            max-width: 50%;
            padding: 40px;
            /* background-color: rgba(255, 255, 255, 0.7); */
            border-radius: 10px;
        }

        .hero-text p {
            font-size: 16px;
            margin: 0 0 6px;
            color: #f5f5f5;
        }

        .hero-text h1 {
            font-family: 'Playfair Display', serif;
            font-size: 48px;
            margin: 0;
            color: #fff;
        }

  .wd-cr-fr-section {
  padding: 20px;
}
.wd-cr-fr-container {
  max-width: 1200px;
  margin: 60px auto;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}
.wd-cr-fr-image-side {
  flex: 1;
  min-width: 300px;
}
.wd-cr-fr-image-side img {
  max-width: 500px;
  width: 100%;
  border-radius: 10px;
}
.wd-cr-fr-form-side {
  flex: 1;
  min-width: 320px;
}
.wd-cr-fr-form-title {
  margin-bottom: 20px;
  font-size: 1.8rem;
}
.wd-cr-fr-form-side form {
  display: flex;
  flex-direction: column;
}
.wd-cr-fr-form-side label {
  margin-bottom: 5px;
  font-weight: 500;
}
.wd-cr-fr-form-side input,
.wd-cr-fr-form-side textarea {
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}
.wd-cr-fr-form-side .wd-cr-fr-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 15px;
}
.wd-cr-fr-form-side button {
  padding: 12px;
  border: none;
  background: #161616;
  color: white;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}
.wd-cr-fr-form-side button:hover {
  background: #7106e4;
}

        /* Responsive Design */
        @media (max-width: 1200px) {
            .hero-text {
                max-width: 70%;
            }
        }

        @media (max-width: 768px) {
            .hero-section {
                margin-top: 90px;
                border-radius: 8px;
            }

            .hero-text {
                max-width: 90%;
                padding: 20px;
            }

            .hero-text h1 {
                font-size: 36px;
            }
        }


@media (max-width: 520px) {
            .hero-section {
                display: none;
            }
        }