/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f4f6f8;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Header */
.header {
  text-align: center;
  margin-bottom: 40px;
}

.header h1 {
  font-size: 2.8rem;
  color: #1f2937;
}

.header h3 {
  font-size: 1.4rem;
  color: #6b7280;
  margin-bottom: 10px;
}

.header p {
  color: #4b5563;
  margin: 5px 0;
}

.header a {
  color: #2563eb;
  text-decoration: none;
}

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

.header hr {
  margin: 20px auto;
  width: 60px;
  border: 2px solid #2563eb;
  border-radius: 5px;
}

/* Sections */
section {
  margin-bottom: 40px;
}

section h2 {
  font-size: 1.8rem;
  color: #1f2937;
  border-bottom: 2px solid #2563eb;
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 15px;
}

ul {
  list-style-type: disc;
  margin-left: 20px;
}

ul li {
  margin-bottom: 10px;
}

/* Job/Experience cards */
.job {
  background-color: #f9fafb;
  padding: 15px 20px;
  border-left: 4px solid #2563eb;
  border-radius: 8px;
  margin-bottom: 15px;
}

.job h3 {
  color: #1f2937;
  margin-bottom: 5px;
}

.job em {
  color: #6b7280;
  font-size: 0.9rem;
}

/* Links in projects */
.projects a {
  color: #2563eb;
  text-decoration: none;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    margin: 20px;
    padding: 15px;
  }

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

  section h2 {
    font-size: 1.5rem;
  }
}
