.banner {
  position: relative;
  margin-top: 80px;
  width: 100%;
  height: 560px;
}

.banner .banner-img {
  width: 100%;
  height: 100%;
}

.banner .banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-content {
  position: absolute;
  top: 52%;
  left: 60%;
  transform: translate(-50%, -50%);
  text-align: left;
  z-index: 10;
  color: #0066cc;
}

.banner-content h3 {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 16px;
}

.banner-content p {
  font-size: 36px;
  font-weight: 600;
  opacity: 0.9;
}

.company-profile {
  padding: 80px 20px 120px;
  background: #f8fafc;
}

.company-profile .wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.company-profile-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 60px;
}

.company-profile-content .company-text {
  flex: 1;
}

.company-profile-content h2 {
  font-size: 34px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 28px;
}

.company-profile-content p {
  font-size: 17px;
  line-height: 2;
  color: #475569;
  margin-bottom: 20px;
}


.company-profile-content .company-text p img {
  width: 100%;
  height: 100%;
  max-height: 600px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin: 0 20px;
}

.company-profile-content1 {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.company-profile-content1 .company-img1 {
  flex-shrink: 0;
  max-width: 500px;
  max-height: 500px;
  overflow: hidden;
}

.company-profile-content1 .company-img1 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.company-profile-content1 .company-text {
  flex: 1;
}

.company-profile-content1 p {
  font-size: 17px;
  line-height: 2;
  color: #475569;
  margin-bottom: 20px;
}

@media (max-width: 1200px) {
  .banner {
    height: 400px;
  }

  .company-profile .wrapper {
    max-width: 960px;
  }
}

@media (max-width: 992px) {
  .banner {
    height: 350px;
  }

  .company-profile .wrapper {
    max-width: 720px;
  }
  
  .company-profile-content .company-img,
  .company-profile-content1 .company-img1 {
    width: 350px;
    height: auto;
  }
  
  .company-profile-content h2 {
    font-size: 28px;
  }
  
  .company-profile-content p,
  .company-profile-content1 p {
    font-size: 16px;
  }

  .company-profile-content .company-text p:has(img) {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    align-items: start;
  }

  .company-profile-content .company-text p img {
    width: 100%;
    height: auto;
    max-height: none;
    margin: 0;
  }
}

@media (max-width: 768px) {
  .banner {
    height: 200px;
  }
  
  .company-profile .wrapper {
    max-width: 100%;
  }
  
.company-profile {
  padding: 40px 0px 60px;
}

  .company-profile-content,
  .company-profile-content1 {
    flex-direction: column;
    gap: 24px;
  }
  
  .company-profile-content1 {
    flex-direction: column-reverse;
  }

  .company-profile-content .company-img,
  .company-profile-content1 .company-img1 {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  
  .company-profile-content h2 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .company-profile-content p,
  .company-profile-content1 p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
  }

  .company-profile-content .company-text p:has(img) {
    display: none;
  }
}
