  
  body {
      font-family: Arial, sans-serif;
      line-height: 1.6;
      margin: 0;
      padding: 0;
      background: #f4f4f9;
      color: #333;
    }
    header {
      background: #0056b3;
      color: #fff;
      padding: 2rem 1rem;
      text-align: center;
      margin-bottom: 20px;
     
    }

/* header links */
.contact-header {
  margin-top: 10px;
  font-size: 0.95rem;
}

.contact-header a {
  color: #fff;
  text-decoration: none;
  margin: 0 5px;
}

.contact-header a:hover {
  text-decoration: underline;
}

    header h1 { margin: 0; }
    header p { margin: 0.5rem 0 0; font-style: italic; }
    .container {
      max-width: 900px;
      margin: auto;
      padding: 2rem;
      background: #fff;
    }
    section { margin-bottom: 2rem; }
    h2 {
      color: #0056b3;
      border-bottom: 2px solid #ddd;
      padding-bottom: 0.5rem;
    }
    ul { list-style: disc; padding-left: 20px; }
    .skills-columns {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1rem;
    }
    footer {
      text-align: center;
      background: #0056b3;
      color: #fff;
      padding: 1rem;
      margin-top: 0;
     
    }


    /* Social Media Icons */
  .social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    text-align: center;
    background: #222;      
    padding: 10px 0;
    margin: 0;             
  }

  .social-links a {
    display: block;
    color: #fff;           
    text-decoration: none;
    padding: 10px;
    transition: background 0.3s;
  }

  .social-links a:hover {
    background: #444;     
  }

  /* Buttons container */
.cv-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin: 10px 0;

}

.cv-actions button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s ease;
}

.cv-actions button:hover {
  background-color: #005bb3;
}

/* Hide buttons when printing CV*/
@media print {
  .no-print {
    display: none !important;
  }
}
