/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body and Basic Styling */
  body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
  }
  
  .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
  }
  
  /* Header */
  .header {
    background-color: #5f0808;
    color: white;
    padding: 60px 0;
    text-align: center;
  }
  
  .header .name {
    font-size: 3.5rem;
    margin-bottom: 10px;
    font-weight: 700;
  }
  
  .header .title {
    font-size: 1.4rem;
    font-weight: 300;
    opacity: 0.9;
    letter-spacing: 1px;
  }
  
  /* Section Titles */
  h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #222;
    border-bottom: 2px solid #5f0808;
    display: inline-block;
    padding-bottom: 5px;
  }
  
  section {
    padding: 40px 0;
    background-color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  }

  /* About Section Specifics */
  .about p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #444;
    max-width: 800px;
  }
  
  /* Entries (Education, Experience, Projects) */
  .entry {
    margin-bottom: 30px;
  }
  
  .entry:last-child {
    margin-bottom: 0;
  }
  
  .entry h3 {
    font-size: 1.4rem;
    color: #5f0808;
    margin-bottom: 2px;
  }
  
  .entry .meta {
    font-size: 1rem;
    color: #666;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
  }
  
  .entry p {
    font-size: 1.05rem;
    color: #555;
  }
  
  /* Footer */
  .footer {
    background-color: #222;
    color: #aaa;
    padding: 30px 0;
    text-align: center;
    margin-top: 40px;
  }
  
  .footer p {
    font-size: 0.9rem;
  }
  
  /* Responsive */
  @media (max-width: 600px) {
    .header .name {
      font-size: 2.5rem;
    }
    .container {
      width: 90%;
    }
  }