* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f0f0f0;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

#container {
  background: white;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  width: 90%;
  max-width: 1000px;
  padding: 40px;
  overflow: hidden;
  position: relative;
}

.page-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.page-layout .img-container {
  flex: 0 0 40%;
  position: relative;
  max-width: 320px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.page-layout .img-container img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.page-layout .img-container::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.6) 80%
  );
  pointer-events: none;
}

.text-content {
  flex: 1;
}

h1, h2 {
  color: #2c3e50;
  font-weight: bold;
  font-size: 28px;
  margin-bottom: 20px;
  margin-top: 10px;
}

p {
  margin-bottom: 16px;
  font-size: 19px;
}

p strong {
  display: block;
  background: #f9f9f9;
  padding: 10px 15px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logos {
  margin-top: 15px;
}

.logos img {
  width: 40px;
  margin-left: 10px;
  vertical-align: middle;
}

.nav-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

button {
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #0056b3;
}

.fade {
  animation: fadeIn 0.8s ease-in-out;
}

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