/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body Styles */
  body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f8f8;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
  }
  
  /* Header Styles */
  header {
    text-align: center;
    padding: 20px 0;
    background-color: #009688;
    color: white;
  }
  
  header h1 {
    font-size: 3rem;
    margin: 0.5rem;
  }
  
  .subtitle {
    font-size: 1.2rem;
  }
  
  hr.divider {
    width: 50%;
    border: 1px solid #fff;
    margin: 20px auto;
  }
  
  /* Main Layout */
  main {
    display: flex;
    justify-content: space-between;
    padding: 20px;
  }
  
  /* Left Column */
  #left-column {
    width: 60%;
  }
  
  section {
    margin-bottom: 30px;
  }
  
  h2 {
    font-size: 1.5rem;
    color: #009688;
    margin-bottom: 15px;
  }
  
  a {
    color: #009688;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  .skills .tags-container {
    display: flex;
    gap: 10px;
  }
  
  .skill-tag {
    background-color: #ff7043;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
  }
  
  table {
    width: 100%;
    border-collapse: collapse;
  }
  
  table th, table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
  }
  
  table th {
    background-color: #009688;
    color: white;
  }
  
  table td {
    background-color: #f9f9f9;
  }
  
  /* Right Column */
  #right-column {
    width: 35%;
  }
  
  .about p {
    font-size: 1.1rem;
    line-height: 1.8;
  }
  
  .job {
    margin-bottom: 20px;
  }
  
  .job h3 {
    font-size: 1.3rem;
    color: #009688;
  }
  
  .job ul {
    list-style-type: square;
    margin-left: 20px;
  }
  
  .job ul li {
    font-size: 1rem;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    main {
      flex-direction: column;
    }
  
    #left-column, #right-column {
      width: 100%;
    }
  }
  