
    body {
      background-color: #ffffff;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      position: relative;
    }

    .svg-background {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0.05;
      z-index: -1;
      object-fit: cover;
    }

    main {
      flex: 1;
      padding-bottom: 80px;
    }

    .navbar-brand {
      color: #406d96 !important;
      font-weight: 700;
    }

    .profile-card {
      max-width: 1000px;
      margin: 4rem auto;
      background: white;
      border-radius: 1rem;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      display: flex;
      flex-wrap: wrap;
    }

    .profile-img-container {
      flex: 1 1 40%;
    }

    .profile-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      min-height: 300px;
    }

    .profile-content {
      flex: 1 1 60%;
      padding: 2rem;
    }

    .profile-content h2 {
      font-size: 2.2rem;
      font-weight: 700;
      color: #406d96;
    }

    .profile-content p {
      font-size: 1.1rem;
      color: #555;
      margin-bottom: 1rem;
    }

    footer {
      background-color: #406d96;
      color: white;
      margin-top: auto;
      padding: 2rem 0;
    }

    footer a {
      color: white;
      margin: 0 0.5rem;
      font-size: 1.25rem;
    }

    .btn-primary {
      background-color: #406d96 !important;
      border-color: #406d96 !important;
    }

    .whatsapp-fixed {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      background: #25D366;
      color: white;
      border: none;
      border-radius: 50px;
      padding: 0.75rem 1.5rem;
      font-size: 1rem;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .whatsapp-fixed:hover {
      transform: scale(1.05);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    }

    @media (max-width: 768px) {
      .profile-card {
        flex-direction: column;
        margin: 2rem 1rem;
      }
    }
