/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", Arial, sans-serif;
}

/* Background */
body {
  min-height: 100vh;
  background: linear-gradient(135deg, #3a6351 0%, #b1a85d 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

/* Layout container */
.container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 1rem;
  overflow: hidden;
}

/* Text section */
.text-section {
  flex: 1;
  color: white;
  padding: 2rem;
}

.brand {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.subtitle {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #c5c5c5;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.headline {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.description {
  color: #e0e0e0;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 500px;
}

/* Image section */
.image-section {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.image-section img {
  width: 100%;
  max-width: 480px;
  border-radius: 1rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive design */
@media (max-width: 900px) {
  .container {
    flex-direction: column;
    text-align: center;
  }

  .text-section {
    padding: 2rem 1.5rem;
  }

  .headline {
    font-size: 2.8rem;
  }

  .image-section {
    padding: 1.5rem;
  }
}
