@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Poppins:wght@300;400;600&display=swap");

:root {
  color-scheme: light;
  --header-color: #0f3f3f;
  --accent: #08a29b;
  --card-bg: rgba(255, 255, 255, 0.88);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Poppins", sans-serif;
  background-image: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url("../img/bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #0b2525;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 40px 24px 32px;
  text-align: center;
}

.brand-logo {
  width: 250px;
  max-width: 70vw;
  margin: 0 auto;
}

.summary {
  margin-top: 28px;
  max-width: 680px;
  font-size: 15px;
  line-height: 1.75;
}

.brand-grid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 960px;
  gap: 24px;
  justify-content: center;
}

.brand-card {
  flex: 1 1 280px;
  border-radius: 20px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.brand-card img {
  width: 140px;
  height: auto;
}

.brand-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #1b2b2b;
}

.brand-card .cta-button {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.brand-card .cta-button:hover {
  transform: translateY(-2px);
}

.footer {
  width: 100%;
  max-width: 940px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(15, 63, 63, 0.2);
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 0.95rem;
  color: #0b2525;
}

.footer a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.footer a:hover {
  color: var(--accent);
}

@media (max-width: 640px) {
  .brand-card {
    padding: 24px 16px;
  }
  .summary {
    font-size: 1rem;
  }
}
