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

body {
  font-family: 'Montserrat', sans-serif;
  background: #0d0d0d;
  color: #ffffff;
  line-height: 1.6;
}

header {
  padding: 3rem 2rem 1rem;
  text-align: center;
  background: linear-gradient(135deg, #FF6B00, #C1121F);
}

h1 {
  font-weight: 700;
  margin-bottom: 1rem;
}

p.lead {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

section {
  padding: 3rem 2rem;
  max-width: 1000px;
  margin: auto;
}

#map {
  height: 400px;
  margin: 2rem 0;
  border: 4px solid #FF6B00;
  border-radius: 10px;
  overflow: hidden;
}

.progressBar-container {
  width: 100%;
  background: #333;
  border-radius: 10px;
  overflow: hidden;
}

.mt-2 {
  margin-top: 2rem;
}

.text-center {
  text-align: center;
}

.flex {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  background: #ff4500;
  color: #fff;
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s ease;
  display: inline-block;
}

.btn-cv:hover {
  background: #cc3700;
}

.btn-linkedin {
  background: #0077b5;
}

.btn-linkedin:hover {
  background: #185a7a;
}

.story {
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 10px;
  margin-top: 2rem;
  color: #f0f0f0;
}

.img-portfolio {
  max-width: 180px;
  width: 100%;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.profile {
  text-align: center;
  margin-top: 3rem;
}

.profile img {
  width: 150px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.profile p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

footer {
  padding: 3rem 2rem;
  text-align: center;
  color: #ccc;
  max-width: 1000px;
  margin: auto;
}

footer p {
  margin-bottom: 1.5rem;
}

footer a {
  color: #fff;
  text-decoration: none;
}

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

.copyright {
  color: #777;
}

form input,
form textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
  border: none;
  border-radius: 5px;
  background: #333;
  color: white;
}

form button {
  background: #ff4500;
  color: white;
  padding: 1rem 2rem;
  border: none;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

form button:hover {
  background: #cc3700;
}

@media (max-width: 600px) {
  header, section, footer {
    padding: 2rem 1rem;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  #map {
    height: 300px;
  }
}
