body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f8f8f8;
  color: #333;
  line-height: 1.6;
}

header {
  background: #444;
  color: white;
  padding: 20px;
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 2.5rem;
}

header h2 {
  font-size: 1rem;
  font-weight: 300;
}

section {
  padding: 20px;
  max-width: 900px;
  margin: auto;
}

h3 {
  border-bottom: 2px solid #444;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.contact div {
  display: flex;
  align-items: center;
  gap: 8px;
}

ul {
  list-style: none;
  padding: 0;
}

li::before {
  content: "• ";
  color: #444;
}

.experiences {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

footer {
  background: #444;
  color: white;
  text-align: center;
  padding: 10px;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .contact, .experiences {
    grid-template-columns: 1fr;
  }
}

.accordion {
  background-color: #eee;
  cursor: pointer;
  padding: 10px;
  border: none;
  outline: none;
  transition: background-color 0.3s ease;
  width: 100%;
  text-align: left;
  margin-top: 5px;
  font-weight: bold;
}

.accordion.active, .accordion:hover {
  background-color: #ccc;
}

.panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: white;
  padding: 0 10px;
}