 body {
      background-color: #000;
      color: #fff;
      font-family: 'Montserrat', sans-serif;
      display: flex;
      justify-content: center;
      padding: 0;
      margin: 0;
    }

    .container {
      max-width: 600px;
      width: 100%;
      padding: 0 10px;
    }

    .top-div {
      padding-top: 16px;
      padding-bottom: 16px;
      display: flex;
      justify-content: center;
    }

    .bottom-div {
      padding-top: 16px;
      padding-bottom: 16px;
      display: flex;
      justify-content: center;
    }

    #google_translate_element > div {
      display: inline-block;
    }

    .profile-header {
      text-align: center;
      margin-bottom: 20px;
    }

    .profile-header img {
      border-radius: 50%;
      width: 130px;
      height: 130px;
      object-fit: cover;
      border: 2px solid #fff;
    }

    .perfil-text {
      font-size: 2rem;
      font-weight: 700;
      text-align: center;
      margin: 10px 0;
      line-height: 1.2;
      word-break: break-word;
      white-space: normal;
    }

    @media (max-width: 768px) {
      .perfil-text {
        font-size: 1.75rem;
      }
    }

    @media (max-width: 480px) {
      .perfil-text {
        font-size: 1.5rem;
      }
    }

    .profile-header .text-container {
      margin-top: 8px;
    }

    .profile-header .location-text {
      color: #fefefe;
      font-size: 16px;
      opacity: 0.8;
      margin-bottom: 8px;
      padding: 0 40px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .profile-header .location-text i {
      margin-right: 5px;
      color: #ff0;
    }

    .profile-header .description-text {
      color: #fefefe;
      font-size: 16px;
      margin-bottom: 8px;
      padding: 0 40px;
    }

    .social-icons {
      margin-top: 10px;
    }

    .social-icons a {
      color: #fff;
      margin: 0 10px;
      font-size: 1.5rem;
      text-decoration: none;
    }

    .social-icons a:hover {
      color: #ff0000;
    }

    .nav-link {
      display: flex;
      align-items: center;
      background-color: #333;
      color: #fff;
      padding: 10px;
      margin-bottom: 10px;
      border-radius: 20px;
      text-decoration: none;
      justify-content: space-between;
      transition: background-color 0.3s ease;
    }

    .nav-link img {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      margin-right: 10px;
    }

    .nav-link span {
      flex-grow: 1;
      text-align: center;
      font-weight: 700;
    }

    .nav-link:hover {
      background-color: #ff0000;
      color: #fff;
    }