body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
    sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #d4edda;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.container {
  display: flex;
  max-width: 900px;
  width: 100%;
  margin: 40px 20px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  animation: slideUp 0.6s ease-out;
}

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

.image {
  flex: 1;
  padding: 40px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: white;
}

.image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.text {
  flex: 1;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: white;
}

h1 {
  margin-bottom: 16px;
  color: #2c3e50;
  font-weight: 700;
  font-size: 2.5em;
  letter-spacing: -1px;
  line-height: 1.2;
}

.text p {
  color: #555;
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 24px;
}

.social-buttons {
  display: flex;
  gap: 12px;
  margin-top: auto;
  flex-wrap: nowrap;
}

.social-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background: #a8d5ba;
  border: 2px solid #7fb896;
  border-radius: 8px;
  color: #2c3e50;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95em;
  transition: all 0.3s ease;
  cursor: pointer;
  flex: 1 1 0;
  min-width: 0;
}

.social-button:hover {
  background: #6ba87e;
  border-color: #5a9570;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(107, 168, 126, 0.4);
  text-decoration: none;
}

.social-button svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.social-button span {
  white-space: nowrap;
}

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

  .container {
    flex-direction: column;
    margin: 0;
    border-radius: 16px;
  }

  .image {
    padding: 30px;
  }

  .text {
    padding: 40px 30px;
  }

  h1 {
    font-size: 2em;
  }

  .social-buttons {
    flex-direction: row;
    gap: 8px;
  }

  .social-button {
    flex: 1;
    justify-content: center;
    padding: 10px 12px;
    font-size: 0.85em;
  }
}
