* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    background-color: #f3f4f6;
    display: flex;
    justify-content: center;
    padding: 20px;
  }
  
  .cv-container {
    width: 800px;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
  }
  
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #0f1336;
    color: #ffffff;
  }
  
  .profile-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-right: 20px;
    object-fit: cover;
  }


  .header-info h1 {
   
    font-size: 2em;
    margin-bottom: 5px;
    margin-right: 300px;
    color: #ffffff;
  }
  
  .header-info p {
    font-size: 1.2em;
    text-indent:50px;
    color: #ffffff;
    
  }
 

  
  .main-content {
    display: flex;
    padding: 20px;
  }
  
  .left-column, .right-column {
    padding: 20px;
  }
  
  .left-column {
    width: 35%;
    background-color: #467aec;
  }
  
  .right-column {
    width: 65%;
    color: #0f1336;
    
  }
  .right-column h2 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #0f1336;
    text-decoration: underline;
  }
  .left-column h2 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: white;
    text-decoration: underline;
  }
  
  section {
    margin-bottom: 20px;
  }
  
  .left-column p, li,a {
    font-size: 1em;
    line-height: 1.5;
    color: white
  }
  
  ul {
    list-style-type: none;
    padding: 0;
  }

  article {
    margin-top: 30px;
    
  }
  
  article h3 {
    font-size: 1.1em;
    margin-bottom: 5px;
    
  }
.summary{
    margin-bottom: 50px;
}
@media print {
    body {
        background-color: #ffffff;
        box-shadow: none;
    }

    .cv-container {
        box-shadow: none;
    }
    .download_btn{
        display: none;
    }
  
}