html, body {
  height: 100%;
  overflow: hidden;
}

body {
  margin: 0;
  padding: 0;
  background: #ffffff;
  font-family: 'Roboto', sans-serif;
  color: #000000;
}

.container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 120px 120px;
  text-align: center;
  min-height: 100vh;
  box-sizing: border-box;
}

.title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 25px 0;
}

.subtitle {
  font-size: 24px;
  line-height: 1.37;
  margin: 0 0 60px 0;
}

.image-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  overflow: hidden;
}

.image-wrapper img {
  width: 100%;
  display: block;
  border-radius: inherit;
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fade-in 0.8s ease forwards;
}

@keyframes fade-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Adaptation for mobile */
@media (max-width: 768px) {
  .container {
    padding: 60px 25px;
  }

  .title {
    font-size: 34px;
  }

  .subtitle {
    font-size: 18px;
  }
}
