
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: white;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  padding: 60px 0 40px;
  text-align: center;
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo {
  height: 120px;
  margin-bottom: 20px;
  animation: fadeIn 1.5s ease-out;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
  animation: fadeIn 1.5s ease-out 0.3s both;
}

/* Main Content */
main {
  padding: 20px 0 60px;
}

.intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  animation: fadeIn 1.5s ease-out 0.5s both;
}

.intro h2 {
  font-size: 1.8rem;
  color: #444;
  margin-bottom: 20px;
}

.intro p {
  font-size: 1.2rem;
  color: #666;
}

/* Services Section */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  animation: fadeIn 1.5s ease-out 0.7s both;
}

.service-card {
  background-color: #f8f8f8;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #333;
}

.service-card p {
  color: #666;
}

/* Footer */
footer {
  text-align: center;
  padding: 30px 0;
  border-top: 1px solid #eee;
  margin-top: 40px;
  color: #777;
}

footer a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #000;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .logo {
    height: 100px;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  .intro h2 {
    font-size: 1.5rem;
  }
  
  .intro p {
    font-size: 1rem;
  }
  
  .services {
    grid-template-columns: 1fr;
  }
}
