:root {
  --primary-red: #dc3223;
  --primary-blue: #3117f4;
  --text-dark: #141826;
  --text-light: #656565;
  --background-light: #f7f7f7;
}

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--background-light);
  color: var(--text-dark);
  font-weight: 500;
}

.corporate-wrapper {
  max-width: 1100px;
  margin: 4rem auto;
  padding: 2rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.corporate-wrapper h1 {
  font-size: 40px;
  text-align: center;
  color: black;
  margin-bottom: 0.5rem;
}

.corporate-wrapper .subtitle {
  text-align: center;
  color: var(--primary-red);
  font-weight: 500;
  margin-bottom: 2rem;
}

.login-button {
  background-color: var(--primary-blue);
  color: white;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin: 1.5rem auto;
  text-align: center;
  transition: background-color 0.3s ease;
  max-width: 350px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.login-button:hover {
  background-color: #1e0edf;
}

.corporate-img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 2rem;
  object-fit: cover;
  justify-content: center;
}

.corporate-wrapper h2 {
  font-size: 24px;
  margin-top: 2rem;
  color: black;
}

.corporate-wrapper p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-light);
}

.corporate-wrapper ul {
  padding-left: 1.25rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
  color: var(--text-light);
}

.corporate-wrapper li {
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .corporate-wrapper {
    padding: 1rem;
  }

  .corporate-wrapper h1 {
    font-size: 32px;
  }

  .login-button {
    max-width: 250px;
    width: 100%;
    text-align: center;
  }
}
