body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #f7f9fb;
  color: #222;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1a2238;
  padding: 1rem 2rem;
}
.logo {
  color: #fff;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 2px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
nav ul li a:hover {
  color: #e94560;
}
.hero {
  background: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
  color: #fff;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(26,34,56,0.7);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}
.cta-btn {
  background: #e94560;
  color: #fff;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
}
.cta-btn:hover {
  background: #fff;
  color: #e94560;
}
main {
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: auto;
}
.about, .services, .gallery {
  margin-bottom: 3rem;
}
.about h2, .services h2, .gallery h2 {
  color: #1a2238;
  margin-bottom: 1rem;
  font-size: 2rem;
}
.about p {
  max-width: 700px;
  margin: auto;
  font-size: 1.1rem;
}
.service-cards {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(26,34,56,0.08);
  padding: 1.5rem;
  max-width: 320px;
  text-align: center;
  transition: transform 0.2s;
}
.card:hover {
  transform: translateY(-8px) scale(1.03);
}
.card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 1rem;
}
.card h3 {
  color: #e94560;
  margin-bottom: 0.5rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.gallery-grid img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(26,34,56,0.08);
  transition: transform 0.2s;
}
.gallery-grid img:hover {
  transform: scale(1.04);
}
footer {
  background: #1a2238;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  margin-top: 2rem;
}
@media (max-width: 800px) {
  .service-cards {
    flex-direction: column;
    align-items: center;
  }
  nav ul {
    gap: 1rem;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
}
.contact-section {
  max-width: 500px;
  margin: 3rem auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(26,34,56,0.08);
  padding: 2rem;
  text-align: center;
}
.contact-section h2 {
  margin-bottom: 1.5rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  resize: none;
}
.contact-form button {
  background: #e94560;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 0.8rem;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.contact-form button:hover {
  background: #1a2238;
}
.company-info {
  margin-top: 1.5rem;
  background: #f7f9fb;
  border-radius: 8px;
  padding: 1rem;
  font-size: 1rem;
  color: #222;
}
.company-info h3 {
  margin-bottom: 0.5rem;
  color: #e94560;
} 