* {
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
      margin: 0;
      background-color: #f2f2f2;
    }

    .container {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      background-color: #fff;
      max-width: 1100px;
      margin: 20px auto;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      margin-top: 125px;
    }

    .left {
      width: 40%;
      background-color: #e0f7fa;
      display: flex;
      flex-direction: column;
      align-items: center;
      /*justify-content: space-between; */
      padding: 20px;
    }

    .left img {
      width: 100%;
      height: 300px;
      border-radius: 10px;
    }

    .name-social {
      text-align: center;
      margin-top: 15px;
    
    }

    .name-social h2 {
      margin: 10px 0;
      font-size: 22px;
      color: #333;
    }

    .social-icons a {
      margin: 0 10px;
      text-decoration: none;
      font-size: 24px;
      color: #555;
      transition: color 0.3s;
    }

    .social-icons a:hover {
      color: #0288d1;
    }

    .right {
      width: 60%;
      padding: 30px;
      font-size: 16px;
      line-height: 1.6;
      color: #333;
      text-align: justify;
    }

    /* Responsive styles */
    @media (max-width: 768px) {
      .container {
        flex-direction: column;
      }

      .left, .right {
        width: 100%;
        padding: 20px;
      }

      .right {
        padding-top: 0;
      }
    }