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

body {
  font-family: 'Helvetica Neue', sans-serif;
  color: #1a1a1a;
  background: url('./content/bg6.png') no-repeat center center;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.container {
  max-width: 1200px;
  width: 100%;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  animation: fadeDown 1s ease-out;
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo {
  width: 130px;
  height: 40px;
  left: -25px;
}

.cta span {
  font-size: 0.9rem;
  margin-right: 16px;
  color: #333;
}

.btn {
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  margin-bottom: 48px;
  animation: fadeInUp 1.2s ease-out;

}

.text-content h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.3;
}

.text-content .highlight {
  color: #1e1e1e;
}

.text-content p {
  color: #3b3b3b;
  font-size: 1.1rem;
  max-width: 480px;
}

.image-content img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  animation: float 6s ease-in-out infinite;
}

.services {
  text-align: center;
  margin-bottom: 40px;
  animation: fadeInUp 1.4s ease-out;
}

.services h2 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.service-list {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  font-size: 1rem;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
  transition: transform 0.3s ease;
}

.service-list li:hover {
  transform: scale(1.1);
}

.footer {
  text-align: center;
  font-size: 0.9rem;
  color: #555;
  padding-top: 20px;
  border-top: 1px solid #ccc;
  animation: fadeInUp 1.6s ease-out;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .main {
    gap: 30px;
  }

  .text-content h1 {
    font-size: 2.4rem;
  }

  .text-content p {
    font-size: 1rem;
  }

  .image-content img {
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  body {
    padding: 20px;
  }

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

  .main {
    flex-direction: column;
    align-items: vertical;
    justify-content: center;
    gap: 40px;
  }

  .text-content h1 {
    font-size: 2rem;
  }

  .text-content p {
    font-size: 0.95rem;
  }

  .image-content img {
    max-width: 300px;
  }

  .service-list {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .text-content h1 {
    font-size: 1.8rem;
  }

  .text-content p {
    font-size: 0.9rem;
  }

  .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  .service-list {
    flex-direction: column;
    gap: 15px;
  }
}