/*
 * Allintellect — strefa: talenty
 *
 * Źródło: autorski CSS podstron allintellect.pl. Usunięte @import fontów
 * (ładowane przez wp_enqueue_style), ścieżki obrazów wskazują na motyw.
 */

/* Scoping all styles to only affect elements within .talent-hero-section */
        body {
            margin: 0;
            font-family: 'Comfortaa', sans-serif;
        }
        
        .talent-hero-section {
            width: 100%;
            height: 100vh;
            position: relative;
            overflow: hidden;
        }

        .talent-hero-section .hero {
            position: relative;
            background: url('../img/AdobeStock_616728193-Przekonwertowany-scaled.webp') no-repeat center center/cover;
            height: 100vh;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            overflow: hidden;
        }

        .talent-hero-section .hero-content {
            width: 100%;
            max-width: 1200px;
            position: relative;
            z-index: 2;
            padding: 30px;
            border-radius: 15px;
            /* Using a gradient background instead of semi-transparent overlay */
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
            /* Glass effect */
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0;
        }

        .talent-hero-section .logo-container {
            margin-bottom: 10px; /* Standard small spacing */
            position: relative;
            z-index: 3;
        }

        .talent-hero-section .logo {
            width: 525px; /* Keeping the larger size */
            display: block;
            margin: 0 auto; /* Center the logo */
            transform: scale(0.1); /* Start small */
            transition: transform 0.8s ease, filter 0.5s ease;
            transition-delay: 0s, 0.8s; /* Delay the color change until after zoom */
            filter: brightness(1); /* Start with original color */
        }

        .talent-hero-section .logo.active {
            transform: scale(1); /* Zoom to full size */
            filter: brightness(10); /* Change to white after zoom completes */
        }

        .talent-hero-section h1 {
            font-size: 2.2rem;
            margin: 0 0 30px 0;
            position: relative;
            z-index: 2;
            line-height: 1.2;
            padding: 0;
            text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
            letter-spacing: 1px;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.7s ease, transform 0.7s ease;
            transition-delay: 1s; /* Start after logo zoom is mostly complete */
            color: white;
            font-family: 'Comfortaa', sans-serif;
            font-weight: 700;
        }

        .talent-hero-section h1.active {
            opacity: 1;
            transform: translateY(0);
        }

        .talent-hero-section .buttons {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.7s ease, transform 0.7s ease;
            transition-delay: 1.3s; /* Start shortly after the text appears */
        }

        .talent-hero-section .buttons.active {
            opacity: 1;
            transform: translateY(0);
        }

        .talent-hero-section .buttons .btn {
            display: inline-block;
            padding: 14px 28px;
            margin: 10px;
            font-size: 1.1rem;
            color: white;
            text-decoration: none;
            background: rgba(255, 69, 0, 0.9);
            border-radius: 6px;
            transition: all 0.3s;
            font-family: 'Comfortaa', sans-serif;
            font-weight: 600;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
        }

        .talent-hero-section .buttons .btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }

        .talent-hero-section .buttons .btn:hover:before {
            left: 100%;
        }

        .talent-hero-section .buttons .btn.secondary {
            background: rgba(51, 51, 51, 0.9);
        }

        .talent-hero-section .buttons .btn:hover {
            background: rgba(51, 51, 51, 1);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }

        .talent-hero-section .buttons .btn.secondary:hover {
            background: rgba(255, 69, 0, 1);
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .talent-hero-section .hero-content {
                padding: 30px 20px;
                margin: 0 15px;
            }

            .talent-hero-section .logo {
                width: 350px;
            }

            .talent-hero-section h1 {
                font-size: 1.8rem;
            }

            .talent-hero-section .buttons .btn {
                padding: 12px 24px;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .talent-hero-section .logo {
                width: 280px;
            }

            .talent-hero-section h1 {
                font-size: 1.5rem;
            }

            .talent-hero-section .buttons .btn {
                padding: 10px 20px;
                font-size: 0.9rem;
                margin: 5px;
            }
        }

:root {
      --orange-primary: #FF7F00;
      --orange-dark: #E36000;
      --orange-light: #FF9933;
      --yellow-primary: #FFBD00;
      --yellow-light: #FFD24D;
      --purple-accent: #8A0064;
      --white: #ffffff;
      --black: #222222;
      --font-main: 'Comfortaa', sans-serif;
      --spacing-base: 20px;
      --card-radius: 16px;
    }
    
    html, body, h1, h2, h3, h4, h5, h6, p, a, span, div {
      font-family: 'Comfortaa', sans-serif !important;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Comfortaa', sans-serif !important;
    }

    body {
      background-color: var(--white);
      color: var(--black);
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
    }

    .header {
      background: linear-gradient(135deg, var(--orange-primary), var(--yellow-primary));
      color: var(--white);
      padding: calc(var(--spacing-base) * 3) var(--spacing-base);
      text-align: center;
    }

    .intro-title {
      font-size: clamp(32px, 5vw, 48px);
      font-weight: 700;
      color: var(--white);
      line-height: 1.2;
      margin-bottom: 16px;
      animation: fadeIn 0.8s;
    }

    .intro-text {
      font-size: clamp(16px, 2vw, 18px);
      max-width: 900px;
      margin: var(--spacing-base) auto 0;
      color: var(--white);
      font-weight: 400;
      animation: fadeIn 1s;
      padding: 0 var(--spacing-base);
    }
    
    .header strong {
      color: var(--white);
      font-weight: 700;
    }

    .content-section {
      padding: calc(var(--spacing-base) * 4) var(--spacing-base);
      max-width: 1200px;
      margin: 0 auto;
    }

    .intro-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: calc(var(--spacing-base) * 2);
      margin-top: calc(var(--spacing-base) * 1);
    }

    .intro-card {
      background: var(--white);
      padding: calc(var(--spacing-base) * 2);
      border-radius: var(--card-radius);
      text-align: left;
      transition: all 0.3s ease;
      animation: fadeInUp 0.8s forwards;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      border-top: 4px solid var(--orange-primary);
    }

    .intro-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    }

    .intro-card:nth-child(1) {
      animation-delay: 0.1s;
    }

    .intro-card:nth-child(2) {
      animation-delay: 0.3s;
    }

    .intro-card:nth-child(3) {
      animation-delay: 0.5s;
    }

    .intro-card h3 {
      font-size: 24px;
      color: var(--orange-primary);
      margin-bottom: 16px;
      font-weight: 700;
    }

    .intro-card p {
      color: var(--black);
      font-size: 16px;
      line-height: 1.6;
    }

    /* Style dla wyróżnień w kartach */
    .intro-card strong {
      color: var(--orange-dark);
      font-weight: 700;
    }

    .footer-section {
      background: linear-gradient(135deg, var(--orange-primary), var(--yellow-primary));
      padding: calc(var(--spacing-base) * 3);
      text-align: center;
      margin-top: calc(var(--spacing-base) * 2);
    }

    .footer-text {
      font-size: 20px;
      color: var(--white);
      font-weight: 600;
      padding-bottom: var(--spacing-base);
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
      }
      to {
        opacity: 1;
      }
    }

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

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .header, .content-section {
        padding: calc(var(--spacing-base) * 2) var(--spacing-base);
      }
      
      .intro-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-base);
      }
      
      .intro-card {
        padding: calc(var(--spacing-base) * 1.2);
      }
    }

:root {
      --orange-primary: #FF7F00;
      --orange-dark: #E36000;
      --orange-light: #FF9933;
      --yellow-primary: #FFBD00;
      --yellow-light: #FFD24D;
      --purple-accent: #8A0064;
      --white: #ffffff;
      --black: #222222;
      --font-main: 'Comfortaa', sans-serif;
      --spacing-base: 20px;
      --card-radius: 16px;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: var(--font-main) !important;
    }

    body {
      background-color: var(--white);
      color: var(--black);
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
    }

    .section-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: calc(var(--spacing-base) * 2) var(--spacing-base);
    }

    .talent-redirect-box {
      background: linear-gradient(135deg, var(--orange-primary), var(--yellow-primary));
      border-radius: var(--card-radius);
      padding: calc(var(--spacing-base) * 2.5);
      text-align: center;
      box-shadow: 0 8px 25px rgba(255, 127, 0, 0.15);
      position: relative;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .talent-redirect-box::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at 30% 50%, rgba(255, 189, 0, 0.3) 0%, transparent 60%),
                  radial-gradient(circle at 70% 20%, rgba(255, 153, 51, 0.2) 0%, transparent 50%);
      pointer-events: none;
    }

    .talent-redirect-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 35px rgba(255, 127, 0, 0.25);
    }

    .redirect-title {
      font-size: 28px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 15px;
      position: relative;
      z-index: 1;
    }

    .redirect-description {
      font-size: 18px;
      color: var(--white);
      margin-bottom: 25px;
      line-height: 1.6;
      position: relative;
      z-index: 1;
    }

    .redirect-button {
      background-color: var(--white);
      color: var(--orange-primary) !important;
      border: none;
      border-radius: 30px;
      padding: 14px 35px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-block;
      position: relative;
      z-index: 1;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .redirect-button:hover {
      background-color: var(--white);
      transform: scale(1.05);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    /* Icon na przycisku */
    .redirect-button::after {
      content: '→';
      margin-left: 10px;
      font-size: 18px;
      transition: transform 0.3s ease;
    }

    .redirect-button:hover::after {
      transform: translateX(3px);
    }

    @media (max-width: 768px) {
      .talent-redirect-box {
        padding: calc(var(--spacing-base) * 2);
      }

      .redirect-title {
        font-size: 24px;
      }

      .redirect-description {
        font-size: 16px;
      }
    }

:root {
      --orange-primary: #FF7F00;
      --orange-dark: #E36000;
      --orange-light: #FF9933;
      --yellow-primary: #FFBD00;
      --yellow-light: #FFD24D;
      --white: #ffffff;
      --black: #222222;
      --light-text: #6e6e73;
      --font-main: 'Comfortaa', sans-serif;
      --spacing-base: 20px;
      --card-radius: 16px;
      --transition: all 0.3s ease;
    }
    
    html, body, h1, h2, h3, h4, h5, h6, p, a, span, div {
      font-family: 'Comfortaa', sans-serif !important;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Comfortaa', sans-serif !important;
    }

    body {
      background-color: var(--white);
      color: var(--black);
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
    }

    .section-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: calc(var(--spacing-base) * 3) var(--spacing-base);
    }

    .section-title {
      font-size: clamp(28px, 4vw, 38px);
      font-weight: 600;
      color: var(--black);
      text-align: center;
      letter-spacing: -0.003em;
      line-height: 1.1;
      margin-bottom: 20px;
      background: linear-gradient(135deg, var(--orange-primary), var(--yellow-primary));
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      display: inline-block;
    }

    .section-subtitle {
      font-size: clamp(18px, 2.5vw, 22px);
      color: var(--black);
      text-align: center;
      font-weight: 400;
      max-width: 800px;
      margin: 0 auto 50px;
    }

    .title-container {
      text-align: center;
      margin-bottom: 40px;
    }

    /* Course Offerings */
    .courses-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-bottom: 60px;
    }

    .course-card {
      background: var(--white);
      border-radius: var(--card-radius);
      padding: 30px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
      transition: var(--transition);
      display: flex;
      flex-direction: column;
      height: 100%;
      border-top: 4px solid var(--orange-primary);
    }

    .course-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    }

    .course-title {
      font-size: 24px;
      font-weight: 700;
      color: var(--orange-primary);
      margin-bottom: 15px;
    }

    .course-subtitle {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 15px;
      color: var(--black);
    }

    .course-description {
      font-size: 16px;
      color: var(--black);
      line-height: 1.6;
      flex-grow: 1;
      margin-bottom: 20px;
    }

    .contact-button {
      background: linear-gradient(135deg, var(--orange-primary), var(--yellow-primary));
      color: white !important;
      border: none;
      border-radius: 30px;
      padding: 12px 25px;
      font-size: 16px;
      font-weight: 500;
      cursor: pointer;
      transition: var(--transition);
      align-self: flex-start;
      text-decoration: none;
      display: inline-block;
    }

    .contact-button:hover {
      transform: scale(1.05);
      box-shadow: 0 4px 15px rgba(255, 127, 0, 0.3);
    }

    @media (max-width: 768px) {
      .section-container {
        padding: calc(var(--spacing-base) * 1.5) var(--spacing-base);
      }
      
      .courses-grid {
        grid-template-columns: 1fr;
      }
    }

:root {
      --orange-primary: #FF7F00;
      --orange-dark: #E36000;
      --orange-light: #FF9933;
      --yellow-primary: #FFBD00;
      --yellow-light: #FFD24D;
      --white: #ffffff;
      --black: #222222;
      --light-text: #6e6e73;
      --font-main: 'Comfortaa', sans-serif;
      --spacing-base: 20px;
      --card-radius: 16px;
      --transition: all 0.3s ease;
    }
    
    html, body, h1, h2, h3, h4, h5, h6, p, a, span, div {
      font-family: 'Comfortaa', sans-serif !important;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Comfortaa', sans-serif !important;
    }

    body {
      background-color: var(--white);
      color: var(--black);
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
    }

    .section-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: calc(var(--spacing-base) * 3) var(--spacing-base);
    }

    .section-title {
      font-size: clamp(28px, 4vw, 38px);
      font-weight: 600;
      color: var(--black);
      text-align: center;
      letter-spacing: -0.003em;
      line-height: 1.1;
      margin-bottom: 20px;
      background: linear-gradient(135deg, var(--orange-primary), var(--yellow-primary));
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      display: inline-block;
    }

    .section-subtitle {
      font-size: clamp(18px, 2.5vw, 22px);
      color: var(--black);
      text-align: center;
      font-weight: 400;
      max-width: 800px;
      margin: 0 auto 50px;
    }

    .title-container {
      text-align: center;
      margin-bottom: 40px;
    }

    /* Course Offerings */
    .courses-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-bottom: 60px;
    }

    .course-card {
      background: var(--white);
      border-radius: var(--card-radius);
      padding: 30px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
      transition: var(--transition);
      display: flex;
      flex-direction: column;
      height: 100%;
      border-top: 4px solid var(--orange-primary);
    }

    .course-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    }

    .course-title {
      font-size: 24px;
      font-weight: 700;
      color: var(--orange-primary);
      margin-bottom: 15px;
    }

    .course-subtitle {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 15px;
      color: var(--black);
    }

    .course-description {
      font-size: 16px;
      color: var(--black);
      line-height: 1.6;
      flex-grow: 1;
      margin-bottom: 20px;
    }

    .contact-button {
      background: linear-gradient(135deg, var(--orange-primary), var(--yellow-primary));
      color: white !important;
      border: none;
      border-radius: 30px;
      padding: 12px 25px;
      font-size: 16px;
      font-weight: 500;
      cursor: pointer;
      transition: var(--transition);
      align-self: flex-start;
      text-decoration: none;
      display: inline-block;
    }

    .contact-button:hover {
      transform: scale(1.05);
      box-shadow: 0 4px 15px rgba(255, 127, 0, 0.3);
    }

    @media (max-width: 768px) {
      .section-container {
        padding: calc(var(--spacing-base) * 1.5) var(--spacing-base);
      }
      
      .courses-grid {
        grid-template-columns: 1fr;
      }
    }

:root {
      --orange-primary: #FF7F00;
      --orange-dark: #E36000;
      --orange-light: #FF9933;
      --yellow-primary: #FFBD00;
      --yellow-light: #FFD24D;
      --white: #ffffff;
      --black: #222222;
      --light-text: #6e6e73;
      --font-main: 'Comfortaa', sans-serif;
      --spacing-base: 20px;
      --card-radius: 16px;
    }
    
    html, body, h1, h2, h3, h4, h5, h6, p, a, span, div {
      font-family: 'Comfortaa', sans-serif !important;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Comfortaa', sans-serif !important;
    }

    body {
      background-color: var(--white);
      color: var(--black);
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
    }

    .section-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: calc(var(--spacing-base) * 3) var(--spacing-base);
    }

    .levels-container {
      background: var(--white);
      border-radius: var(--card-radius);
      padding: calc(var(--spacing-base) * 2);
      margin-bottom: calc(var(--spacing-base) * 2);
    }

    .levels-intro {
      text-align: center;
      margin-bottom: 40px;
    }

    .levels-intro h3 {
      font-size: 28px;
      font-weight: 600;
      margin-bottom: 15px;
      color: var(--black);
      background: linear-gradient(135deg, var(--orange-primary), var(--yellow-primary));
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      display: inline-block;
    }

    .levels-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .level-card {
      background: var(--white);
      border-radius: 14px;
      padding: 25px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border-top: 4px solid var(--orange-primary);
    }

    .level-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    }

    .level-header {
      margin-bottom: 15px;
    }

    .level-name {
      font-size: 20px;
      font-weight: 600;
      color: var(--orange-primary);
      margin-bottom: 10px;
    }

    .level-description {
      font-size: 16px;
      color: var(--black);
      line-height: 1.6;
    }

    .contact-card {
      background: linear-gradient(135deg, var(--orange-primary), var(--yellow-primary));
      color: var(--white);
      border-radius: var(--card-radius);
      padding: 30px;
      text-align: center;
      margin-top: 30px;
    }

    .contact-title {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 15px;
    }

    .contact-info {
      font-size: 18px;
      margin-top: 15px;
    }

    .contact-info a {
      color: var(--white);
      text-decoration: none;
      font-weight: 600;
    }

    .contact-info a:hover {
      text-decoration: underline;
    }

    @media (max-width: 768px) {
      .section-container {
        padding: calc(var(--spacing-base) * 1.5) var(--spacing-base);
      }
      
      .levels-grid {
        grid-template-columns: 1fr;
      }
    }

:root {
      --orange-primary: #FF7F00;
      --orange-dark: #E36000;
      --orange-light: #FF9933;
      --yellow-primary: #FFBD00;
      --yellow-light: #FFD24D;
      --purple-accent: #8A0064;
      --white: #ffffff;
      --black: #222222;
      --light-gray: #f5f5f7;
      --text-gray: #6e6e73;
      --font-main: 'Comfortaa', sans-serif;
      --spacing-base: 20px;
      --card-radius: 16px;
      --transition: all 0.3s ease;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: var(--font-main) !important;
    }

    body {
      background-color: var(--white);
      color: var(--black);
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
    }

    .section-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: calc(var(--spacing-base) * 3) var(--spacing-base);
    }

    .career-section {
      display: flex;
      align-items: center;
      background: var(--light-gray);
      border-radius: var(--card-radius);
      overflow: hidden;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
      border: 1px solid rgba(255, 127, 0, 0.1);
    }

    .career-content {
      flex: 1;
      padding: calc(var(--spacing-base) * 2);
    }

    .career-image {
      flex: 1;
      max-width: 50%;
      padding: var(--spacing-base);
    }

    .career-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: calc(var(--card-radius) - 8px);
      border: 1px solid rgba(255, 127, 0, 0.08);
    }

    .career-title {
      font-size: clamp(28px, 4vw, 38px);
      font-weight: 700;
      background: linear-gradient(135deg, var(--orange-primary), var(--yellow-primary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .career-description {
      color: var(--black);
      margin-bottom: 20px;
      line-height: 1.6;
    }

    .career-requirements-title {
      font-size: 18px;
      background: linear-gradient(135deg, var(--orange-primary), var(--yellow-primary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 15px;
      font-weight: 600;
    }

    .career-requirements {
      list-style: none;
      margin-bottom: 20px;
    }

    .career-requirements li {
      position: relative;
      padding-left: 25px;
      margin-bottom: 10px;
      color: var(--black);
      line-height: 1.6;
    }

    .career-requirements li::before {
      content: "•";
      position: absolute;
      left: 10px;
      color: var(--orange-primary);
      font-weight: bold;
    }

    .career-traits {
      margin-bottom: 20px;
    }

    .career-traits p {
      margin-bottom: 10px;
      color: var(--black);
    }

    .career-traits p strong {
      color: var(--orange-dark);
      font-weight: 700;
    }

    .career-contact {
      font-weight: 600;
      color: var(--orange-primary);
    }

    .career-contact strong {
      background: linear-gradient(135deg, var(--orange-primary), var(--yellow-primary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    @media (max-width: 768px) {
      .career-section {
        flex-direction: column;
      }

      .career-image {
        max-width: 100%;
      }

      .career-content {
        padding: var(--spacing-base);
      }

      .career-title {
        font-size: 24px;
      }

      .career-subtitle {
        font-size: 18px;
      }
    }