

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #f4f7fa;
  color: #333;
  line-height: 1.6;
  padding: 20px;
}

header {
  text-align: center;
  padding: 2rem 0;
  background-color: #ffffff;
  border-bottom: 2px solid #0073e6;
}

header h1 {
  font-size: 2.5rem;
  color: #0073e6;
}

header p {
  font-size: 1.2rem;
  color: #555;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 1rem 0;
  background-color: #eaf1f8;
  padding: 10px;
  border-radius: 10px;
}

nav a {
  text-decoration: none;
  color: #0073e6;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 5px;
}

nav a:hover {
  text-decoration: underline;
}

ul {
  list-style-type: square;
  margin: 1rem 0 1rem 1.5rem;
}

section {
  background-color: #fff;
  margin: 1.5rem auto;
  padding: 1.5rem;
  max-width: 900px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

section h2, section h3 {
  color: #0073e6;
  margin-bottom: 1rem;
  border-bottom: 2px solid #0073e6;
  padding-bottom: 0.3rem;
}

section p, section li {
  margin-bottom: 0.8rem;
}

a {
  color: #0073e6;
}

a:hover {
  text-decoration: underline;
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

button[type="submit"] {
  background-color: #0073e6;
  color: #fff;
  padding: 10px;
  border: none;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #005bb5;
}

footer {
  text-align: center;
  margin-top: 2rem;
  padding: 1rem;
  background-color: #0073e6;
  color: white;
  font-size: 0.9rem;
}

.download-cv {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  background-color: #0073e6;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.download-cv:hover {
  background-color: #005bb5;
}

@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: ;
  }

  section {
    padding: 1rem;
  }

  header h1 {
    font-size: 2rem;
  }
}
