/* Reset and global styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Roboto', sans-serif;
  color: #333;
  background-color: #f9f9f9;
  line-height: 1.6;
}

/* Header styles */
header {
  background: #2c3e50;
  color: #44daed;
  padding: 20px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.logo-container img {
  max-width: 120px;
}
.header-content {
  text-align: center;
}
.header-content h1 {
  font-size: 2.5em;
}
.header-content h2 {
  font-size: 1.3em;
  color: #bdc3c7;
}

/* Navigation styles */
nav {
  background: #34495e;
  padding: 10px 0;
}
nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
}
nav li {
  margin: 0 20px;
}
nav a {
  color: #ecf0f1;
  font-weight: bold;
  transition: color 0.3s;
}
nav a:hover {
  color: #3498db;
}

/* Main content styles */
main {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.services {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  flex: 1;
  min-width: 220px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.card-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}

/* About section */
.about {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

/* Contact section */
.contact {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

/* Footer styles */
footer {
  background: #2c3e50;
  color: #ecf0f1;
  text-align: center;
  padding: 10px 0;
  box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1);
}
