* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
  background: #d8ccc3 url("background.jpg") center center / cover fixed no-repeat;
}

.page {
  max-width: 950px;
  margin: 30px auto;
  background: rgba(255, 255, 255, 0.95);
  padding: 30px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.header {
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.header h1 {
  margin: 0;
  font-size: 3rem;
  font-weight: 300;
  text-transform: uppercase;
  color: #2d2d2d;
}

.subtitle {
  margin: 8px 0 20px;
  color: #a7a09a;
  font-size: 1.1rem;
  text-transform: uppercase;
}

nav a {
  display: inline-block;
  margin-right: 18px;
  text-decoration: none;
  color: #333;
  font-size: 0.95rem;
}

nav a:hover {
  text-decoration: underline;
}

.hero {
  background: linear-gradient(90deg, #b0b0b0, #c9c9c9);
  color: white;
  padding: 35px 30px;
  margin-bottom: 30px;
}

.hero h2 {
  margin: 0 0 12px;
  font-size: 2.2rem;
  font-family: Georgia, serif;
  text-transform: uppercase;
}

.hero p {
  margin: 0;
  max-width: 650px;
  line-height: 1.7;
}

.section {
  padding: 20px 0 30px;
  border-top: 1px solid #e3e3e3;
}

.section h2 {
  margin: 0 0 18px;
  font-size: 2.2rem;
  font-weight: 300;
  color: #2d2d2d;
}

.section p {
  line-height: 1.7;
  margin: 0 0 14px;
}

.about-name {
  font-weight: bold;
  font-size: 1.1rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 20px;
}

.card {
  background: #f5f5f5;
  padding: 20px;
  border: 1px solid #e2e2e2;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.contact a {
  color: #333;
}

.footer {
  border-top: 1px solid #d9d9d9;
  margin-top: 10px;
  padding-top: 18px;
  text-align: center;
  color: #888;
  font-size: 0.9rem;
}

@media (max-width: 700px) {
  .page {
    margin: 10px;
    padding: 20px;
  }

  .header h1 {
    font-size: 2rem;
  }

  .hero h2,
  .section h2 {
    font-size: 1.7rem;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  nav a {
    margin-right: 12px;
    margin-bottom: 8px;
  }
}
.logo-slider {
  overflow: hidden;
  background: #f5f5f5;
  padding: 15px 0;
  margin-top: 30px;
}

.logo-track {
  display: flex;
  width: 200%;
  animation: scroll 25s linear infinite;
}

.logo-track img {
  height: 50px;
  margin: 0 40px;
  object-fit: contain;
}

.logo-track:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}