* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: linear-gradient(to right, #e4c9b6, #d7a49a);
  color: #000;
  line-height: 1.5;
}

header {
  padding: 1rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e8b8a5;
  flex-wrap: wrap;
  gap: 1rem;
  background: linear-gradient(to right, #d7a49a, #e4c9b6);
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 600;
}

.logo-area img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
}

nav a {
  margin: 0 0.5rem;
  text-decoration: none;
  color: #000;
  font-size: 0.9rem;
  white-space: nowrap;
}

nav a.active {
  border-bottom: 2px solid #000;
  font-weight: 600;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  padding: 3rem 3rem;
  min-height: calc(100vh - 140px);
  width: 100%;
}

.about-col {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.left-col {
  justify-content: flex-start;
}

.about-text-block h2 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.about-text-block p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.about-img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border: 1px solid #000;
  border-radius: 4px;
  display: block;
}

.center-col {
  text-align: center;
  align-items: center;
}

.small-img {
  max-width: 200px;
}

.center-col h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 0.5rem;
}

.center-col p {
  font-size: 0.9rem;
  max-width: 280px;
}

.right-col {
  align-items: center;
}

.right-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.logo-img {
  max-width: 150px;
}

.right-card p {
  font-size: 1rem;
  text-align: right;
  margin-top: 15%;
}

.btn-group {
  display: flex;
  gap: 0.8rem;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin-top: 40%;
}

.btn-black {
  background: #000;
  color: #fff;
  padding: 0.4rem 1.2rem;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.85rem;
  border: 1px solid #000;
  white-space: nowrap;
}

footer {
  padding: 1rem 3rem;
  border-top: 1px solid #e8b8a5;
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 0.5rem;
  background: linear-gradient(to right, #d7a49a, #e1dad3, #d7a49a);
}

@media (max-width: 768px) {
  header {
    padding: 1rem;
    justify-content: center;
    text-align: center;
    gap: 0.6rem;
  }

  nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.2rem;
  }

  nav a {
    font-size: 0.7rem;
    margin: 0 0.3rem;
    white-space: nowrap;
  }

  .about-container {
    grid-template-columns: 1fr;
    padding: 1.5rem;
    gap: 2rem;
  }

  .about-col {
    align-items: center;
    text-align: center;
  }

  .about-img,
  .small-img,
  .logo-img {
    max-width: 80%;
  }

  .about-text-block h2 {
    font-size: 1.3rem;
  }

  .about-text-block p,
  .center-col p,
  .right-card p {
    font-size: 0.85rem;
    text-align: center;
  }

  .right-card p {
    margin-top: 0;
  }

  .btn-group {
    justify-content: center;
    margin-top: 1rem;
  }

  footer {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    padding: 1rem;
  }
}
