    .profile-container {
      max-width: 1170px;
      margin: 40px auto;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      overflow: hidden;
    }

    .profile-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 30px;
      background: linear-gradient(135deg, #4cb8c4, #3cd3ad);
      color: #fff;
    }

    .profile-header img {
      width: 140px;
      height: 140px;
      border-radius: 50%;
      border: 4px solid #fff;
      object-fit: cover;
      margin-right: 30px;
    }

    .profile-header h1 {
      margin: 0;
      font-size: 2rem;
    }

    .profile-header p {
      margin: 5px 0 0;
      font-size: 1rem;
      opacity: 0.9;
    }

    .profile-header .btn {
        padding: 12px 22px;
        text-decoration: none;
        font-weight: bold;
        border-radius: 6px;
        transition: all 0.3s ease;
        color: var(--white);
        background: var(--btn-gradient);
    }

    .nurse-details-text {
        max-height: 400px;
        overflow-y: auto;
    }

    .profile-body {
      padding: 30px;
    }

    .section {
      margin-bottom: 25px;
    }

    .section h2 {
      font-size: 1.4rem;
      margin-bottom: 10px;
      color: #4cb8c4;
      border-bottom: 2px solid #eee;
      padding-bottom: 5px;
    }

    .info-list {
       display: flex;
       flex-direction: row;
       gap: 20%;
       list-style: none;
       padding: 0;
       margin: 0;
    }

    .info-list li {
      margin-bottom: 8px;
      font-size: 0.95rem;
    }

    .skills {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .skill {
      background: #e0f7f6;
      padding: 8px 15px;
      border-radius: 20px;
      font-size: 0.85rem;
      color: #00796b;
      font-weight: 600;
    }

    .contact a {
      display: inline-block;
      margin-right: 15px;
      text-decoration: none;
      color: #4cb8c4;
      font-weight: bold;
    }