@media (max-width: 768px) {
    /* Styles for tablets and mobile devices */
  }
  @media (max-width: 480px) {
    /* Styles for smaller mobile devices */
  }

/* Container styling */
.container1 {
    display: flex;
    align-items: center;
    padding: 30px;
    max-width: 800px; /* Adjusted to make it narrower */
    margin: auto;
   
    border-radius: 8px;
   
}

/* Left side (image) styling */
.container1 .image {
    flex: 1;
    max-width: 350px; /* Smaller width for the image */
    padding-right: 30px;
}

.container1 .image img {
    width: 130%;
    height: 350px;
    border-radius: 6px;
    transition: transform 0.3s ease, opacity 0.3s ease; /* Smooth transition */
  width: 100%; /* Adjust width as needed */
  display: block;
}

img:hover {
    transform: scale(1.1); /* Scale the image to 110% */
    opacity: 0.8; /* Make the image slightly transparent */
  }

/* Right side (content) styling */
.container1 .content {
    flex: 2; /* Gives more space to content */
}

.container1 .content h2 {
    font-size: 1.5em;
    margin-bottom: 8px;
    color: #333;
    margin-left: 70px;
}

.container1 .content p {
    font-size: 0.9em;
    color: #666;
    line-height: 1.4;
    margin-left: 70px;
}