.portfolio-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: #fff;
    font-family: "Georgia", serif;
    color: #111;
  }
  
  .portfolio-section h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.3;
  }
  
  .portfolio-section p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #222;
  }
  
  .portfolio-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background-color: #0d3c78; /* deep blue like screenshot */
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 2px;
    transition: background 0.3s ease;
  }
  
  .portfolio-button:hover {
    background-color: #09284f;
  }
  
  .portfolio-button i {
    margin-left: 8px;
  }
  