/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Poppins", Sora;
    line-height: 1.6;
    color: #374151;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    min-height: 100vh;
  }
  
  .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  /* Header */
  .header {
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .logo-icon {
    width: 2rem;
    height: 2rem;
    background: #2563eb;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.875rem;
  }
  
  .logo-text {
    font-size: 1.25rem;
    font-weight: bold;
    color: #111827;
  }
  
  /* Badges */
  .badge {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
  }
  
  .badge-green {
    background: #dcfce7;
    color: #166534;
  }
  
  .badge-blue {
    background: #dbeafe;
    color: #1d4ed8;
    margin-bottom: 1rem;
    display: inline-block;
  }
  
  .badge-purple {
    background: #f3e8ff;
    color: #7c3aed;
    border: 1px solid #e9d5ff;
    margin-top: 0.5rem;
    display: inline-block;
  }
  
  /* Hero Section */
  .hero {
    padding: 4rem 0;
  }
  
  .hero-content {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }
  
  .text-blue {
    color: #5B2B74!important;
  }
  
  .hero-subtitle {
    font-size: 1.875rem;
    color: #4b5563;
  }
  
  .hero-description {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
  }
  
  .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #374151;
  }
  
  .feature-item i {
    color: #2563eb;
    width: 1.25rem;
  }
  
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }
  
  /* Cards */
  .card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    overflow: hidden;
  }
  
  .card-header {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .card-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #000;
  }
  
  .card-header i {
    color: #2563eb;
    width: 1.5rem;
  }
  
  .card-content {
    padding: 0 1.5rem 1.5rem;
  }
  
  /* Benefits Card */
  .benefits-card {
    border: 2px solid #dbeafe;
    margin-bottom: 2rem;
  }
  
  .benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }
  
  .benefit-item:last-child {
    margin-bottom: 0;
  }
  
  .benefit-item i {
    color: #16a34a;
    margin-top: 0.125rem;
    flex-shrink: 0;
  }
  
  .benefit-item h4 {
    font-weight: 500;
    color: #111827;
    margin-bottom: 0.25rem;
  }
  
  .benefit-item p {
    font-size: 0.875rem;
    color: #4b5563;
  }
  
  /* Speakers Card */
  .speaker-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .speaker-item:last-child {
    margin-bottom: 0;
  }
  
  .speaker-image {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #dbeafe;
    flex-shrink: 0;
  }
  
  .speaker-info h4 {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
  }
  
  .speaker-title {
    font-size: 0.875rem;
    color: #4b5563;
    margin-bottom: 0.25rem;
  }
  
  .speaker-email {
    font-size: 0.875rem;
    color: #4b5563;
    margin-bottom: 0.5rem;
  }
  
  .linkedin-link {
    font-size: 0.875rem;
    color: #2563eb;
    text-decoration: none;
  }
  
  .linkedin-link:hover {
    color: #1d4ed8;
  }
  
  /* Registration Card */
  .registration-card {
    border: 2px solid #bfdbfe;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 2rem;
  }
  
  .registration-header {
    background:  #5B2B74!important;
    color: white;
    text-align: center;
  }
  
  .registration-header h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
  
  .registration-header p {
    color: #ffff;
    font-size: 1.1rem;
  }
  
  /* Form Styles */
  .registration-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
  }
  
  .form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.25rem;
  }
  
  .form-group input {
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    transition: border-color 0.2s;
  }
  
  .form-group input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  }
  
  .separator {
    height: 1px;
    background: #e5e7eb;
    margin: 0.5rem 0;
  }
  
  .takeaways-box {
    background: #f9fafb;
    padding: 1rem;
    border-radius: 0.5rem;
  }
  
  .takeaways-box h4 {
    font-weight: 500;
    color: #111827;
    margin-bottom: 0.5rem;
  }
  
  .takeaways-box ul {
    list-style: none;
    font-size: 0.875rem;
    color: #4b5563;
  }
  
  .takeaways-box li {
    margin-bottom: 0.25rem;
  }
  
  .register-btn {
    width: 100%;
    background: #5B2B74!important;
    color: white;
    border: none;
    padding: 1.5rem;
    border-radius: 0.375rem;
    font-size: 1.125rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background-color 0.2s;
  }
  
  .register-btn:hover {
    background: #1d4ed8;
  }
  
  .disclaimer {
    font-size: 0.75rem;
    color: #6b7280;
    text-align: center;
  }
  
  /* Session Details */
  .session-details {
    padding: 4rem 0;
    background: white;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .section-header h2 {
    font-size: 1.875rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1rem;
  }
  
  .section-header p {
    font-size: 1.125rem;
    color: #4b5563;
    max-width: 48rem;
    margin: 0 auto;
  }
  
  .details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }
  
  .interactive-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .interactive-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  
  .bullet {
    width: 0.5rem;
    height: 0.5rem;
    background: #2563eb;
    border-radius: 50%;
    flex-shrink: 0;
  }
  
  /* Topics Section */
  .topics-section {
    background: #f9fafb;
    border-radius: 0.75rem;
    padding: 2rem;
  }
  
  .topics-section h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111827;
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  .topics-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
  }
  
  .topic-tag {
    background: #f3f4f6;
    color: #374151;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
  }
  
  /* Podcast Section */
  .podcast-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #faf5ff 0%, #eff6ff 100%);
  }
  
  .podcast-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
  }
  
  .podcast-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .podcast-cover {
    width: 6rem;
    height: 6rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
  }
  
  .podcast-details h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 0.5rem;
  }
  
  .podcast-host {
    color: #4b5563;
    margin-bottom: 0.5rem;
  }
  
  .podcast-description {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  
  .podcast-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  
  .spotify-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #1db954;
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: background-color 0.2s;
  }
  
  .spotify-btn:hover {
    background: #1ed760;
  }
  
  .btn-outline {
    padding: 0.5rem 1rem;
    border: 1px solid #d8b4fe;
    background: transparent;
    color: #7c3aed;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.2s;
  }
  
  .btn-outline:hover {
    background: #faf5ff;
  }
  
  /* Episodes */
  .episodes-section h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
  }
  
  .episode-card {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s;
  }
  
  .episode-card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .episode-number {
    width: 3rem;
    height: 3rem;
    background: #f3e8ff;
    color: #7c3aed;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.875rem;
    flex-shrink: 0;
  }
  
  .episode-blue {
    background: #dbeafe;
    color: #2563eb;
  }
  
  .episode-content h5 {
    font-weight: 500;
    color: #111827;
    margin-bottom: 0.5rem;
    line-height: 1.4;
  }
  
  .episode-meta {
    font-size: 0.875rem;
    color: #4b5563;
    margin-bottom: 0.5rem;
  }
  
  .episode-description {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.4;
  }
  
  .view-all {
    text-align: center;
    padding-top: 1rem;
  }
  
  .view-all a {
    color: #7c3aed;
    text-decoration: none;
    font-weight: 500;
  }
  
  .view-all a:hover {
    color: #6d28d9;
  }
  
  /* Footer */
  .footer {
    background: #111827;
    color: white;
    padding: 3rem 0;
  }
  
  .footer-content {
    text-align: center;
  }
  
  .footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
  
  .footer-description {
    color: #9ca3af;
    margin-bottom: 1rem;
  }
  
  .footer-copyright {
    font-size: 0.875rem;
    color: #6b7280;
  }
  
  /* Responsive Design */
  @media (max-width: 1024px) {
    .hero-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  
    .registration-card {
      position: static;
    }
  
    .details-grid {
      grid-template-columns: 1fr;
    }
  
    .podcast-grid {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 768px) {
    .hero-title {
      font-size: 2rem;
    }
  
    .hero-subtitle {
      font-size: 1.5rem;
    }
  
    .hero-description {
      font-size: 1.125rem;
    }
  
    .hero-features {
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }
  
    .form-row {
      grid-template-columns: 1fr;
    }
  
    .topics-grid {
      justify-content: flex-start;
    }
  
    .podcast-header {
      flex-direction: column;
      text-align: center;
    }
  
    .podcast-buttons {
      justify-content: center;
    }
  }
  
  @media (max-width: 640px) {
    .container {
      padding: 0 0.75rem;
    }
  
    .hero {
      padding: 2rem 0;
    }
  
    .session-details {
      padding: 2rem 0;
    }
  
    .podcast-section {
      padding: 2rem 0;
    }
  
    .hero-title {
      font-size: 1.75rem;
    }
  
    .hero-subtitle {
      font-size: 1.25rem;
    }
  }
  