* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Nunito Sans', sans-serif;
}

body {
  background: #ecf4f3;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* Container */
.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 60px;
  border-radius: 16px;
  width: 90%;
  max-width: 1100px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Text */
.content {
  max-width: 500px;
}

h1 {
  font-size: 100px;
  color: #000000;
  margin-bottom: 10px;
}

h2 {
  font-size: 60px;
  margin-bottom: 60px;
}

h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

p {
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Buttons */
.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.btn {
  padding: 12px 20px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.2s;
}

.btn.primary {
  background: #2A9D8F;
  color: white;
}

.btn.primary:hover {
  background: #097C6E;
}

.btn.secondary {
  background: #eee;
  color: #333;
}

.btn.secondary:hover {
  background: #ddd;
}

.btn.outline {
  border: 1px solid #ccc;
  color: #333;
}

.btn.outline:hover {
  background: #f5f5f5;
}
.image img {
  max-width: 400px;
  width: 100%;
}


.image img {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@media (max-width: 900px) {
  .container {
    flex-direction: column;
    text-align: center;
  }

  .image {
    margin-top: 30px;
  }

  h1 {
    font-size: 70px;
  }
}
