* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}
.container {
  max-height: 100%;
  height: 600px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px;
}
.cta-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-content {
  margin-top: -40px;
  display: flex;
  align-items: center;
  justify-content: start; /* Centers the content horizontally */
  gap: 250px; /* Adjust the space between the image and the heading */
}

.logo {
  max-width: 330px; /* Adjust the size of the logo */
  height: 175px;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.main-content {
  display: flex;
  align-items: center;
  /* gap: 1rem; */
  margin-top: -40px;
  margin-bottom: 2rem;
}
.text-content {
  margin-left: 23px;
  flex: 1;
}
.image-container {
  flex: 1;
  max-height: 100%; /* Updated: Allowing for 200px max height */
  display: flex;
  align-items: center;
  justify-content: center; /* Centering the image */
}
.main-image {
  margin-top: 20px;
  height: 410px; /* Set image height to 200px */
  width: auto; /* Maintain aspect ratio */
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
p {
  margin-top: 30px;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}
.feature-list {
  list-style-type: none;
  margin-bottom: 2rem;
}
.feature-list li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}
.feature-list li:before {
  content: "✓";
  color: #3498db;
  font-weight: bold;
  margin-right: 10px;
}
.cta-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.custom-label {
  display: inline-block;
  background-color: #e74c3c; /* Red background */
  color: white;
  padding: 10px 20px;
  border-radius: 20px; /* Rounded edges */
  font-weight: bold;
  font-size: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional shadow for 3D effect */
  position: relative;
}

.custom-label:before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid #e74c3c; /* Match background color */
}

.quick-contracts-heading {
  margin-left: -100px;
  margin-bottom: -10px;
}

@media (max-width: 768px) {
  .main-content {
    flex-direction: column;
  }
}

/* send shubham */

/* add padding to main container above
.container{
padding: 80px;
}

*/

/* Small devices (phones, max-width: 576px) */
@media (max-width: 576px) {
  .container {
    padding: 20px;
    height: 100vh;
    max-height: 100vh;
  }
  .header-content {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .logo {
    max-width: 150px;
    height: auto;
  }
  .quick-contracts-heading {
    margin-left: 0;
    font-size: 1.6rem;
    text-align: center;
  }
  .main-content {
    flex-direction: column;
    align-items: center;
    margin-top: 0;
    text-align: center;
    gap: 10px;
  }
  .main-image {
    height: 200px;
  }
  .cta-button {
    padding: 8px 16px;
  }
  p,
  .feature-list li {
    font-size: 0.9rem;
  }
}

/* Medium devices (tablets, min-width: 577px and max-width: 768px) */
@media (min-width: 577px) and (max-width: 768px) {
  .container {
    padding: 30px;
    height: 100vh;
    max-height: 100vh;
  }
  .header-content {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .logo {
    max-width: 200px;
    height: auto;
  }
  .quick-contracts-heading {
    margin-left: 0;
    font-size: 1.8rem;
    text-align: center;
  }
  .main-content {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 0;
    text-align: center;
  }
  .main-image {
    height: 250px;
  }
  .cta-button {
    padding: 10px 20px;
  }
  p,
  .feature-list li {
    font-size: 1rem;
  }
}

/* Large devices (tablets/small laptops, min-width: 769px and max-width: 992px) */
@media (min-width: 769px) and (max-width: 992px) {
  .container {
    padding: 40px;
    height: 100vh;
    max-height: 100vh;
  }
  .header-content {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 50px;
  }
  .logo {
    max-width: 250px;
    height: auto;
  }
  .quick-contracts-heading {
    font-size: 2rem;
    margin-left: 0;
    text-align: center;
  }
  .main-content {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
  }
  .main-image {
    height: 300px;
  }
}

/* Extra large devices (desktops, min-width: 993px) */
@media (min-width: 993px) {
  .container {
    padding: 10px;
    height: 100vh;
    max-height: 100vh;
  }
  .header-content {
    flex-direction: row;
    justify-content: start;
    gap: 100px;
  }
  .logo {
    max-width: 300px;
    height: auto;
  }
  .quick-contracts-heading {
    font-size: 2.2rem;
    margin-left: 0;
    text-align: left;
  }
  .main-content {
    flex-direction: row;
    gap: 40px;
  }
  .main-image {
    height: 350px;
  }
  .cta-button {
    padding: 12px 24px;
  }
}

/* Bigger screens (1440px and above) */
@media (min-width: 1440px) {
  .container {
    padding: 60px;
    height: 100vh;
    max-height: 100vh;
  }
  .header-content {
    gap: 250px;
  }
  .logo {
    max-width: 330px;
  }
  .quick-contracts-heading {
    font-size: 2.5rem;
    margin-left: -100px; /* Apply the requested margin-left */
    text-align: left;
  }
  .main-content {
    gap: 50px;
  }
  .main-image {
    height: 400px;
  }
  .cta-button {
    padding: 14px 28px;
  }
}
@media (min-width: 1920px) {
  .container {
    padding: 70px;
  }
  .header-content {
    gap: 300px;
  }
  .logo {
    max-width: 350px;
  }
  .quick-contracts-heading {
    font-size: 2rem;
    margin-left: -150px;
  }
  .main-content {
    gap: 60px;
  }
  .main-image {
    height: 450px;
  }
  .cta-button {
    padding: 16px 32px;
  }
}
.quick-contracts-heading_main_div {
  display: flex;
  align-items: center;
  gap: 10px;
}
