/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #434344;
  color: #333;
  flex-direction: column;
  justify-content: center;
  display: flex;

}

nav {
    text-align: left;
    padding: 20px 10px;
}

#home {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.2em;
    color: #a0c4ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

#home:hover {
    color: #72a0ff;
    text-decoration: underline;
}

.services-section {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 1rem;
  height: 636px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #111827;
}

.service-card p {
  font-size: 1rem;
  color: #555;
}

footer {
    width: 100%;
    height: 40px;
    margin-bottom: 0%;
    position:relative;
    text-align: center;
    background-color: #434344;
    color: #ffffff;
    font-size: 0.9em;
    text-decoration: none;
    }
    
footer a {
    text-decoration: none;
    color: #ffffff;
}
