    .e-islemler-main {
      max-width: 1200px;
      margin: 0 auto;
      padding: 3rem 1.5rem;
      background-color:white;
    }

    /* Hero Section */
    .e-islemler-hero {
      text-align: center;
      margin-bottom: 3rem;
      position: relative;
    }

    .e-islemler-hero::after {
      content: '';
      position: absolute;
      bottom: -1.5rem;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
      border-radius: 2px;
      opacity: 0.6;
    }

    .e-islemler-title {
      font-size: clamp(2rem, 5vw, 3rem);
      font-weight: 700;
      color: var(--primary-color);
      letter-spacing: -0.02em;
    }

    /* Cards Grid */
    .e-islemler-cards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 2rem;
      padding-bottom:30px;
    }

    /* Card Link Wrapper */
    .e-islemler-card-link {
      color: inherit;
      display: block;
      height: 100%;
    }

    /* Card */
    .e-islemler-card {
      position: relative;
          background: linear-gradient(
        to bottom,
        var(--background-alt),
        var(--background-soft)
    );
      border-radius: 20px;
      padding: 2rem;
      height: 100%;
      display: flex;
      flex-direction: column;
      border: 1px solid var(--border-color);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
    }

    .e-islemler-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
    }

    .e-islemler-card-link:hover .e-islemler-card {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0, 156, 166, 0.15);
      border-color: rgba(0, 156, 166, 0.3);
    }

    .e-islemler-card-link:hover .e-islemler-card::before {
      transform: scaleX(1);
    }

    .e-islemler-card-link:focus {
      outline: 2px solid var(--secondary-color);
      outline-offset: 4px;
      border-radius: 20px;
    }

    /* Badge */
    .e-islemler-card-badge {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
      color: white;
      padding: 0.5rem 1rem;
      border-radius: 50px;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      box-shadow: 0 4px 12px rgba(0, 156, 166, 0.25);
      opacity: 0;
      transform: translateY(-5px) scale(0.9);
      transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .e-islemler-card-link:hover .e-islemler-card-badge {
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    /* Icon */
    .e-islemler-card-icon-wrapper {
      width: 72px;
      height: 72px;
      background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      box-shadow: 0 8px 20px rgba(0, 156, 166, 0.2);
      transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
      position: relative;
    }

    .e-islemler-card-icon-wrapper::after {
      content: '';
      position: absolute;
      inset: -3px;
      background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
      border-radius: 18px;
      opacity: 0;
      z-index: -1;
      transition: opacity 0.4s ease;
    }

    .e-islemler-card-link:hover .e-islemler-card-icon-wrapper {
      transform: scale(1.08) rotate(-5deg);
      box-shadow: 0 12px 28px rgba(0, 156, 166, 0.3);
    }

    .e-islemler-card-link:hover .e-islemler-card-icon-wrapper::after {
      opacity: 0.3;
      animation: pulse 2s ease infinite;
    }

    @keyframes pulse {
      0%, 100% { transform: scale(1); opacity: 0.3; }
      50% { transform: scale(1.1); opacity: 0; }
    }

    .e-islemler-card-icon-wrapper svg {
      width: 38px;
      height: 38px;
      fill: white;
      transition: transform 0.3s ease;
    }

    .e-islemler-card-link:hover .e-islemler-card-icon-wrapper svg {
      transform: scale(1.1);
    }

    /* Content */
    .e-islemler-card h3 {
      font-size: 1.75rem;
      font-weight: 700;
      color: var(--primary-color);
      margin-bottom: 0.5rem;
      letter-spacing: -0.01em;
      line-height: 1.3;
    }

    .e-islemler-card-subtitle {
      font-size: 0.875rem;
      color: var(--secondary-color);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 1rem;
      opacity: 0.9;
    }

    .e-islemler-card-description {
      font-size: 1rem;
      color: var(--text-color);
      line-height: 1.65;
      opacity: 0.8;
      margin-bottom: 1.5rem;
      flex-grow: 1;
    }

    /* Footer */
    .e-islemler-card-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 1.5rem;
      border-top: 1px solid var(--tersiyer-color);
      margin-top: auto;
    }

    .e-islemler-card-action {
      font-weight: 600;
      font-size: 1.125rem;
      color: var(--secondary-color);
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .e-islemler-card-link:hover .e-islemler-card-action {
      transform: translateX(4px);
      gap: 0.75rem;
    }

    .e-islemler-card-arrow {
      width: 48px;
      height: 48px;
      background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
      box-shadow: 0 4px 16px rgba(0, 156, 166, 0.25);
      flex-shrink: 0;
      position: relative;
    }

    .e-islemler-card-arrow::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
      border-radius: 50%;
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .e-islemler-card-link:hover .e-islemler-card-arrow {
      transform: scale(1.15) rotate(45deg);
      box-shadow: 0 6px 20px rgba(0, 156, 166, 0.4);
    }

    .e-islemler-card-link:hover .e-islemler-card-arrow::before {
      opacity: 1;
    }

    .e-islemler-card-arrow svg {
      width: 22px;
      height: 22px;
      stroke: white;
      stroke-width: 2.5;
      transition: transform 0.4s ease;
      position: relative;
      z-index: 1;
    }

    .e-islemler-card-link:hover .e-islemler-card-arrow svg {
      transform: rotate(-45deg);
    }

    /* Accessibility */
    .e-islemler-card-link:focus-visible {
      outline: 3px solid var(--secondary-color);
      outline-offset: 4px;
      border-radius: 20px;
    }

    @media (prefers-reduced-motion: reduce) {
      * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
    }

    /* Responsive */
    @media (min-width: 769px) and (max-width: 1024px) {
      .e-islemler-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
        margin: 0 auto;
      }
    }

    @media (max-width: 768px) {
      .e-islemler-main {
        padding: 2rem 1rem;
      }

      .e-islemler-hero {
        margin-bottom: 2.5rem;
      }

      .e-islemler-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 500px;
        margin: 0 auto;
      }

      .e-islemler-card {
        padding: 1.75rem;
      }

      .e-islemler-card-icon-wrapper {
        width: 64px;
        height: 64px;
      }

      .e-islemler-card-icon-wrapper svg {
        width: 32px;
        height: 32px;
      }

      .e-islemler-card h3 {
        font-size: 1.5rem;
      }
    }

    @media (max-width: 480px) {
      .e-islemler-main {
        padding: 1.5rem 1rem;
      }

      .e-islemler-hero::after {
        width: 60px;
        height: 3px;
      }

      .e-islemler-card {
        padding: 1.5rem;
      }

      .e-islemler-card-badge {
        top: 1.25rem;
        right: 1.25rem;
        padding: 0.4rem 0.875rem;
        font-size: 0.7rem;
      }

      .e-islemler-card-arrow {
        width: 44px;
        height: 44px;
      }

      .e-islemler-card-arrow svg {
        width: 20px;
        height: 20px;
      }

      .e-islemler-card-action {
        font-size: 1rem;
      }
    }