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

body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-y: hidden;
}

.container {
  margin-top: 24px;
  margin-bottom: 24px;
  max-width: 700px;
  width: 90%;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

h1 {
  text-align: center;
  color: #333;
  margin-bottom: 30px;
  font-weight: 700;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #555;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
  box-sizing: border-box;
}

input:focus,
textarea:focus {
  border-color: #667eea;
  outline: none;
  box-shadow: 0 0 5px rgba(102, 126, 234, 0.5);
}

button {
  width: 100%;
  padding: 15px;
  background: #667eea;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #5a67d8;
}

.resume {
  max-width: 900px;
  margin: 20px auto;
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.contact {
  text-align: center;
  margin-bottom: 30px;
  padding: 20px;
  background: #f1f3f4;
  border-radius: 8px;
}

.contact p {
  margin: 5px 0;
  font-size: 16px;
}

.contact a {
  color: #667eea;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

.section {
  margin-bottom: 30px;
}

.section h2 {
  color: #667eea;
  font-weight: 600;
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}

.section h2::before {
  content: "📄";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 20px;
}

.section p {
  line-height: 1.6;
  white-space: pre-line;
}

.skills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skills span {
  background: #e9ecef;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 14px;
}

.buttons {
  text-align: center;
  margin-top: 30px;
}

.buttons button {
  padding: 12px 24px;
  margin: 0 10px;
  background: #667eea;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.buttons button:hover {
  background: #5a67d8;
}

@media (max-width: 768px) {
  .resume {
    padding: 20px;
  }
  .contact {
    padding: 15px;
  }
}
