@font-face {
    font-family: 'alfont-regular';
    src: url('../fonts/alfont-regular.woff2') format('woff2'),
         url('../fonts/alfont-regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'alfont-boldi';
    src: url('../fonts/alfont-bold-italic.woff2') format('woff2'),
         url('../fonts/alfont-bold-italic.woff') format('woff');

}

    html, body {
      height: 100%;
      margin: 0;
      padding: 0;
    }

    /* Center container vertically */
    .container {
      display: flex;
      align-items: center;
      min-height: 100vh;
      padding: 2rem 0;
    }


    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Custom column adjustments for 70/30 split */
    .eight-columns {
      width: 65.33333%;
    }

    .four-columns {
      width: 30.66667%;
      margin-left: 4%;
    }

    /* Typography enhancements */
    .content-section h4 {
      font-size: 2.5rem;
      font-weight: 600;
      color:#181a25;
      margin-bottom: 2rem;
      -webkit-background-clip: text;
      background-clip: text;
      line-height: 1.2;
    }

    .content-section p {
      font-size: large;
      line-height: 1.7;
      color: #666;
      margin-bottom: 2rem;
    }

    .content-section em {
      color: #888;
      font-size: small;
    }


    @keyframes pulse {
      0%, 100% {
        opacity: 1;
      }
      50% {
        opacity: 0.8;
      }
    }

    /* Profile image styling */
    .image-section {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100%;
    }

    .profile-image {
      width: 250px;
      height: 250px;
      border-radius: 50%;
      object-fit: cover;
      border: 4px solid rgba(255, 255, 255, 0.8);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      background: #f5f5f5;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #999;
      font-size: 0.9rem;
      text-align: center;
      flex-direction: column;
    }

    .profile-image:hover {
      transform: scale(1.05);
    }

    .profile-image small {
      font-size: 0.7rem;
      margin-top: 0.5rem;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .content-wrapper {
        padding: 2rem;
        margin: 1rem;
      }

      .row {
        flex-direction: column;
      }

      .eight-columns,
      .four-columns {
        width: 100%;
        margin-left: 0;
        margin-bottom: 2rem;
      }

      .content-section {
        text-align: center;
      }

      .content-section h4 {
        font-size: 2rem;
      }

      .profile-image {
        width: 200px;
        height: 200px;
      }
    }

    @media (max-width: 480px) {
      .content-wrapper {
        padding: 1.5rem;
      }

      .content-section h4 {
        font-size: 2.25rem;
      }

      .content-section p {
        font-size: 1.75rem;
      }

      .profile-image {
        width: 180px;
        height: 180px;
      }
        .content-section em {
      color: #888;
      font-size: medium;
    }
    }