* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, html {
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fdf4e3;
  color: #2b1e1e;
}

header {
  width: 100%;
  padding: 20px 0;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 2px;
  color: #221b1b;
}

.container {
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100vh - 80px);
  padding: 0 5vw;
  gap: 40px;
}

.content {
  flex: 1;
  max-width: 600px;
}

.content h1 {
  font-size: 3.5rem;
  font-family: 'Georgia', serif;
  margin-bottom: 20px;
}

.content p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.buttons {
  display: flex;
  gap: 15px;
}

.btn {
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn.primary {
  background-color: #ec5a5a;
  color: #fff;
}

.btn.primary:hover {
  background-color: #d44848;
}

.btn.secondary {
  background-color: #fff;
  color: #333;
  border: 2px solid #333;
}

.btn.secondary:hover {
  background-color: #f4f4f4;
}

.portrait {
  flex: 1;
  display: flex;
  justify-content: center;
}

.portrait img {
  max-height: 80vh;
  max-width: 100%;
  border: 4px solid #2b1e1e;
  border-radius: 12px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    height: auto;
    padding: 5vh 5vw;
    gap: 20px;
  }

  .content {
    text-align: center;
    max-width: 100%;
  }

  .content h1 {
    font-size: 2.5rem;
  }

  .content p {
    font-size: 1rem;
  }

  .buttons {
    justify-content: center;
    flex-direction: column;
  }

  .btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    text-align: center;
  }

  .portrait img {
    max-height: 60vh;
  }
}
