/* General Styles */
body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

h1, h2, h3, h4 {
  color: #2c3e50;
}

h1 {
  font-size: 2.2em;
  margin-bottom: 5px;
}

h2 {
  font-size: 1.5em;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 20px;
  color: #7f8c8d;
}

h3 {
  font-size: 1.3em;
  border-bottom: 2px solid #3498db;
  padding-bottom: 5px;
  margin-top: 30px;
  color: #3498db;
}

h4 {
  font-size: 1.1em;
  margin-bottom: 5px;
}

h4 span {
  font-weight: normal;
  color: #7f8c8d;
}

a {
  color: #3498db;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  padding-left: 20px;
}

li {
  margin-bottom: 8px;
}

/* Header Styles */
header {
  margin-bottom: 30px;
}

.contact-info {
  font-size: 0.9em;
  color: #7f8c8d;
  margin-bottom: 10px;
}

.summary {
  font-size: 1em;
  line-height: 1.5;
}

/* Experience Section */
.job {
  margin-bottom: 25px;
}

.job h4 {
  margin-bottom: 10px;
}

.job ul {
  margin-top: 5px;
}

/* Skills Section */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.skills-grid div {
  margin-bottom: 15px;
}

.skills-grid h4 {
  margin-bottom: 5px;
  font-size: 1em;
}

/* Education Section */
.education-item {
  margin-bottom: 15px;
}

.education-item p {
  margin-top: 5px;
  font-style: italic;
}

/* Project Section */
.project h4 {
  margin-top: 15px;
  margin-bottom: 5px;
}

.project p {
  margin: 5px 0;
}

/* Footer */
footer {
  margin-top: 40px;
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #eee;
}

.visitor-counter {
  font-size: 0.9em;
  color: #7f8c8d;
}

/* Responsive Design */
@media (max-width: 768px) {
  body {
      padding: 15px;
  }
  
  .skills-grid {
      grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  h1 {
      font-size: 1.8em;
  }
  
  h2 {
      font-size: 1.2em;
  }
  
  .contact-info {
      font-size: 0.8em;
  }
}

.counter-box {
  background-color: #f3f4f6;
  border: 2px solid #d1d5db;
  padding: 10px 20px;
  border-radius: 12px;
  text-align: center;
  font-size: 14px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

#counter-value {
  font-size: 20px;
  font-weight: bold;
  display: block;
  color: #111827;
}
