
      .site-badge { border-bottom: none;margin: 0 auto 2rem; }

      /* How it Works within Hero */
      .hero-how-it-works {
        padding: 40px 0;
        margin-top: 3rem;
      }

      .hero-how-it-works h2,
      .hero-how-it-works p.lead {
        color: white;
      }

      .hero-how-it-works .challenge-step {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
      }

      .hero-how-it-works .challenge-step h3,
      .hero-how-it-works .challenge-step p {
        color: white;
      }

      /* Role Cards Section */
      .role-cards-section {
        padding: 80px 0;
        background: #f8f9fa;
      }

      .role-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
      }

      .role-card {
        background: white;
        border-radius: 0;
        padding: 2rem;
        text-align: center;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        border: 3px solid transparent;
      }

      .role-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        border-color: #007bbf;
      }

      .role-card.active {
        border-color: #007bbf;
        background: #f0f8ff;
      }

      .role-card-icon {
        font-size: 3rem;
        color: #007bbf;
        margin-bottom: 1rem;
      }

      .role-card h3 {
        color: #333;
        margin-bottom: 1rem;
        font-weight: 600;
      }

      .role-card p {
        color: #666;
        line-height: 1.6;
      }

      /* Tabbed Content Section */
      .tabbed-section {
        padding: 80px 0;
        background: white;
      }

      .tab-navigation {
        display: flex;
        justify-content: center;
        margin-bottom: 3rem;
        border-bottom: 2px solid #e9ecef;
      }

      .tab-button {
        background: none;
        border: none;
        padding: 1rem 2rem;
        font-size: 1.1rem;
        font-weight: 600;
        color: #666;
        cursor: pointer;
        transition: all 0.3s ease;
        border-bottom: 3px solid transparent;
      }

      .tab-button:hover {
        color: #007bbf;
      }

      .tab-button.active {
        color: #007bbf;
        border-bottom-color: #007bbf;
      }

      .tab-content {
        display: none;
      }

      .tab-content.active {
        display: block;
      }

      .use-case {
        background: #f8f9fa;
        border-radius: 0;
        padding: 2rem;
        margin-bottom: 2rem;
        border-left: 4px solid #007bbf;
      }

      .use-case-header {
        display: flex;
        align-items: center;
        margin-bottom: 1rem;
      }

      .use-case-icon {
        font-size: 1.5rem;
        color: #007bbf;
        margin-right: 1rem;
      }

      .use-case h4 {
        color: #333;
        margin-bottom: 1rem;
        font-weight: 600;
      }

      .scenario {
        background: white;
        padding: 1rem;
        border-radius: 0;
        margin-bottom: 1rem;
        border-left: 3px solid #28a745;
      }

      .prompt-example {
        background: #e3f2fd;
        padding: 1rem;
        border-radius: 0;
        margin-bottom: 1rem;
        font-family: 'Courier New', monospace;
        border-left: 3px solid #2196f3;
      }

      .try-it-box {
        background: white;
        border: 2px solid #007bbf;
        border-radius: 0;
        padding: 1.5rem;
        margin: 1rem 0;
      }

      .why-helpful {
        background: #e8f5e8;
        padding: 1rem;
        border-radius: 0;
        margin-top: 1rem;
        border-left: 3px solid #28a745;
      }

      .try-it-box {
        background: #f8f9fa;
        border: 1px solid #e9ecef;
        border-radius: 0;
        padding: 1rem;
        margin-top: 1rem;
      }
      

      /* Override any default button styling */
      .button {
        border-radius: 0 !important;
      }

      /* AI Responses Section */
      .ai-responses-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        margin-top: 2rem;
      }

      .ai-response-card {
        background: white;
        border: 2px solid #e9ecef;
        border-radius: 0;
        padding: 2rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      }

      .ai-response-card h3 {
        color: #007bbf;
        margin-bottom: 1rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 0.5rem;
      }

      .ai-response-card h4 {
        color: #333;
        margin: 1.5rem 0 1rem 0;
        font-weight: 600;
      }

      .ai-response-content {
        max-height: 400px;
        overflow-y: auto;
        padding-right: 0.5rem;
      }

      .ai-response-note {
        font-style: italic;
        color: #666;
        font-size: 0.9rem;
        margin-top: 1rem;
        border-top: 1px solid #e9ecef;
        padding-top: 1rem;
      }

      /* Challenge Explained Section */
      .challenge-steps {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-top: 1.5rem;
      }

      .challenge-step {
        background: white;
        border-radius: 0;
        padding: 2rem;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      }

      .challenge-step-icon {
        font-size: 3rem;
        color: #007bbf;
        margin-bottom: 1rem;
      }

      /* Prompt Display */
      .prompt-display {
        background: #e3f2fd;
        border: 3px solid #2196f3;
        border-radius: 0;
        padding: 2rem;
        margin: 2rem 0;
        text-align: center;
      }

      .prompt-title {
        font-size: 1.5rem;
        font-weight: 600;
        color: #1976d2;
        margin-bottom: 1rem;
      }

      .prompt-text {
        font-size: 1.1rem;
        font-weight: 500;
        color: #333;
        margin-bottom: 1rem;
        line-height: 1.6;
      }

      .prompt-instruction {
        font-style: italic;
        color: #666;
        margin-bottom: 1.5rem;
      }

/* Your Turn Section */
      .your-turn-section {
        padding: 80px 0;
        background: white;
      }

      .instructions-list {
        counter-reset: step-counter;
        list-style: none;
        padding: 0;
        margin: 2rem 0;
      }

      .instructions-list li {
        counter-increment: step-counter;
        margin-bottom: 1.5rem;
        padding-left: 3rem;
        position: relative;
      }

      .instructions-list li::before {
        content: counter(step-counter);
        position: absolute;
        left: 0;
        top: 0;
        background: #007bbf;
        color: white;
        width: 2rem;
        height: 2rem;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
      }

      .ai-link {
        display: inline-block;
        background: #007bbf;
        color: white;
        padding: 0.5rem 1rem;
        text-decoration: none;
        border-radius: 0;
        margin-left: 0.5rem;
        transition: all 0.3s ease;
      }

      .ai-link:hover {
        background: #0056b3;
        color: white;
        text-decoration: none;
        transform: translateY(-1px);
      }

      /* Discussion Section */
      .discussion-section {
        padding: 80px 0;
        background: #f8f9fa;
      }

      .discussion-cta {
        background: #28a745;
        color: white;
        padding: 1rem 2rem;
        font-size: 1.1rem;
        font-weight: 600;
        border: none;
        border-radius: 0;
        text-decoration: none;
        display: inline-block;
        margin: 1rem 0;
        transition: all 0.3s ease;
      }

      .discussion-cta:hover {
        background: #218838;
        color: white;
        text-decoration: none;
        transform: translateY(-2px);
      }

      /* Past Prompts Section */
      .past-prompts-section {
        padding: 60px 0;
        background: white;
      }

      /* Resources Section */
      .resources-list {
        list-style: none;
        padding: 0;
      }

      .resources-list li {
        margin-bottom: 1rem;
        padding-left: 2rem;
        position: relative;
      }

      .resources-list li::before {
        content: "📚";
        position: absolute;
        left: 0;
        top: 0;
      }

      .resources-list a {
        color: #007bbf;
        text-decoration: none;
        font-weight: 500;
      }

      .resources-list a:hover {
        text-decoration: underline;
      }

      /* Responsive Design */
      @media (max-width: 768px) {
        .ai-responses-container {
          grid-template-columns: 1fr;
          gap: 1rem;
        }

        .challenge-steps {
          grid-template-columns: 1fr;
        }

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

        .hero-buttons {
          flex-direction: column;
          align-items: center;
        }

        .tab-navigation {
          flex-direction: column;
        }

        .tab-button {
          border-bottom: none;
          border-right: 3px solid transparent;
        }

        .tab-button.active {
          border-right-color: #007bbf;
          border-bottom-color: transparent;
        }

        .explanation-grid {
          grid-template-columns: 1fr;
        }
      }

      /* Additional styles for Copilot content */
      .comparison-table {
        width: 100%;
        border-collapse: collapse;
        margin: 2rem 0;
      }

      .comparison-table th,
      .comparison-table td {
        border: 1px solid #dee2e6;
        padding: 1rem;
        text-align: left;
        vertical-align: top;
      }

      .comparison-table th {
        background-color: #f8f9fa;
        font-weight: 600;
        color: #333;
      }

      .comparison-table tr:nth-child(even) {
        background-color: #f8f9fa;
      }

      .comparison-table tr:hover {
        background-color: #e9ecef;
      }

      @media (max-width: 768px) {
        .comparison-table {
          font-size: 0.9rem;
        }
        
        .comparison-table th,
        .comparison-table td {
          padding: 0.5rem;
        }
      }

      .launch-copilot-btn {
        background: #0078d4;
        border: none;
        color: white;
        padding: 10px 20px;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 0;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
        margin-left: 0.5rem;
      }

      .launch-copilot-btn:hover {
        background: #106ebe;
        color: white;
        text-decoration: none;
        transform: translateY(-1px);
      }

      .simulated-note {
        background: #fff3cd;
        border: 1px solid #ffeaa7;
        border-radius: 0;
        padding: 1rem;
        margin: 1rem 0;
        font-style: italic;
      }
   /* AI Product Cards */
      .ai-product-card {
        background: white;
        border: 1px solid #e9ecef;
        border-radius: 0;
        padding: 1.5rem;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        flex: 1;
        min-width: 280px;
        max-width: 320px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        overflow: hidden;
      }

      .ai-product-image-wrapper {
        background-color: #f8f9fa;
        padding: 2rem;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 1.5rem;
      }

      .ai-product-logo {
        max-width: 150px;
        height: auto;
      }

      .ai-product-title {
        font-size: 1.6rem;
        font-weight: 700;
        color: #003366;
        text-transform: uppercase;
        margin-bottom: 1.5rem;
        position: relative;
        padding-bottom: 0.5rem;
        width: 100%;
        text-align: left;
      }

      .ai-product-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 4px;
        background-color: #0078d4;
      }

      .ai-product-button {
        background: #0078d4;
        color: white;
        padding: 15px 25px;
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: 0;
        text-decoration: none;
        display: block;
        width: 100%;
        text-align: center;
        margin-top: auto;
        transition: all 0.3s ease;
      }

      .ai-product-button:hover {
        background: #106ebe;
        color: white;
        text-decoration: none;
        transform: translateY(-1px);
      }