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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #d4d4d8 0%, #e4e4e7 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.container {
  max-width: 1200px;
  width: 100%;
  text-align: center;
}

.logo-container {
  margin-bottom: 50px;
}

.main-logo {
  max-width: 250px;
  width: 100%;
  height: auto;
  opacity: 0.9;
  border-radius: 10px;
  overflow: hidden;
}
.images-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.image-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.image-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px 0;
  opacity: 0.4;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #71717a;
  max-width: 150px;
}

.divider-icon {
  margin: 0 20px;
  font-size: 20px;
  color: #71717a;
}

h1 {
  font-size: 72px;
  font-weight: 300;
  letter-spacing: 20px;
  color: #52525b;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.subtitle {
  font-size: 18px;
  color: #71717a;
  margin-bottom: 10px;
  font-weight: 300;
}

.tagline {
  font-size: 18px;
  color: #3f3f46;
  font-weight: 500;
  margin-bottom: 50px;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 40px 0;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #a1a1aa;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.7);
  border: none;
  border-radius: 50px;
  font-size: 15px;
  color: #3f3f46;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.icon {
  width: 20px;
  height: 20px;
  opacity: 0.7;
}

footer {
  margin-top: 80px;
  font-size: 12px;
  color: #a1a1aa;
  letter-spacing: 2px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .main-logo {
    max-width: 250px;
  }
  .images-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  h1 {
    font-size: 40px;
    letter-spacing: 10px;
  }

  .subtitle,
  .tagline {
    font-size: 16px;
  }

  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }

  .contact-btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .main-logo {
    max-width: 200px;
  }
  .images-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 32px;
    letter-spacing: 8px;
  }
}
