* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f2f5;
    color: #333;
    line-height: 1.6;
  }
  
  .resume-container {
    display: flex;
    flex-direction: row;
    max-width: 1200px;
    margin: 40px auto;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  .left-column {
    width: 30%;
    background-color: #fafafa;
    padding: 20px;
    border-right: 1px solid #e6e6e6;
  }
  
  .profile h1 {
    font-size: 1.8rem;
    margin-bottom: 5px;
  }
  
  .profile .location {
    font-size: 0.95rem;
    color: #555;
  }
  
  .contact-info ul {
    list-style: none;
    margin-top: 15px;
  }
  
  .contact-info li {
    margin-bottom: 8px;
  }
  
  .contact-info a {
    color: #0073b1;
    text-decoration: none;
  }
  
  .contact-info a:hover {
    text-decoration: underline;
  }
  
  .disclaimer {
    margin-top: 20px;
    background-color: #fff9e6;
    border-left: 4px solid #f0c36d;
    padding: 10px;
    font-size: 0.9rem;
    line-height: 1.4;
  }
  
  .disclaimer strong {
    color: #ad6700;
  }
  
  .skills {
    margin-top: 25px;
  }
  
  .skills h2 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
  }
  
  .skills ul {
    list-style: none;
    margin-top: 10px;
  }
  
  .skills li {
    margin-bottom: 10px;
  }
  
  .right-column {
    width: 70%;
    padding: 20px 30px;
  }
  
  .right-column section h2 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #444;
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
  }
  
  .education-entry,
  .experience-entry,
  .project-entry {
    margin-bottom: 20px;
  }
  
  .education-entry h3,
  .experience-entry h3,
  .project-entry h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #2c3e50;
  }
  
  .education-entry .dates,
  .experience-entry .location-time {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin: 2px 0 10px;
  }
  
  .experience-entry .company {
    font-style: italic;
    color: #2c3e50;
  }
  
  .education-entry ul,
  .experience-entry ul,
  .project-entry ul {
    list-style: disc;
    margin-left: 1.2rem;
    margin-top: 5px;
  }
  
  .project-entry h3 {
    font-weight: 600;
    margin-bottom: 3px;
  }

  .project-entry .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  a {
    color: #0073b1;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  /* Responsive Design */
  @media (max-width: 900px) {
    .resume-container {
      flex-direction: column;
    }
  
    .left-column,
    .right-column {
      width: 100%;
      border-right: none;
    }
  
    .right-column {
      padding: 20px;
    }
  }
  
  .visitor-count-banner {
    width: 100%;
    background-color: #0073b1;
    color: #fff;
    text-align: center;
    font-size: 1.3rem;
    font-weight: bold;
    padding: 20px 0;
    margin-bottom: 10px;
  }
  
  .visitor-count-banner span#visitorCountValue {
    font-size: 1.4rem;
    margin-left: 5px;
  }
  