/* Stylish gallery section */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  padding: 2rem 0;
  background: var(--accent);
  justify-items: center;
}

.gallery-img {
  width: 100%;
  max-width: 320px;
  border-radius: 1rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  transition: transform 0.3s, box-shadow 0.3s;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.gallery-img:hover {
  transform: scale(1.04) translateY(-6px);
  box-shadow: 0 8px 32px rgba(0,117,255,0.18);
  z-index: 1;
}
/* Primary color */
:root {
  --primary: #0075FF;
  --text: #222;
  --bg: #fff;
  --accent: #f5f7fa;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

header {
  background: var(--primary);
  color: #fff;
  padding: 2rem 0 1rem 0;
  text-align: center;
}

header .tagline {
  font-size: 1.2rem;
  margin-top: 0.5rem;
  font-weight: 400;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--accent);
  padding: 2rem 0;
  gap: 2rem;
}

.hero-img {
  width: 100%;
  max-width: 500px;
  border-radius: 1rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.hero-content {
  text-align: center;
}

.services, .about, .contact {
  padding: 2rem 0;
  text-align: center;
}

.services ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
}

.services li {
  margin: 0.5rem 0;
  font-size: 1.1rem;
}

footer {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  margin-top: 2rem;
}

@media (min-width: 700px) {
  .hero {
    flex-direction: row;
    justify-content: center;
    text-align: left;
  }
  .hero-content {
    max-width: 400px;
    margin-left: 2rem;
    text-align: left;
  }
}
