/* style.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background: #f4f6f9;
  color: #2c3e50;
  line-height: 1.6;
}

.container {
  max-width: 900px;
  margin: 30px auto;
  padding: 30px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

nav {
  margin-bottom: 30px;
  text-align: center;
  background: #3498db;
  padding: 10px;
  border-radius: 8px;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
  font-weight: 500;
}

nav a:hover {
  text-decoration: underline;
}

h1, h2 {
  color: #3498db;
}

h2 {
  color: #2980b9;
  border-bottom: 2px solid #ecf0f1;
  padding-bottom: 5px;
  margin-bottom: 15px;
}

p, ul {
  margin-bottom: 15px;
}

ul {
  padding-left: 20px;
}

a {
  color: #3498db;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.contact a {
  color: #3498db;
}

footer {
  text-align: center;
  margin-top: 50px;
  color: #95a5a6;
  font-size: 0.9em;
}