.prices {
    padding: 60px 20px;
    background-color: #f5f5f5;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    color: #333;
  }
  
  .prices h2 {
    font-size: 32px;
    color: #1A237E;
    text-transform: uppercase;
    margin-bottom: 40px;
  }
  
  .pdf-viewer {
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
  }
  
  /* Prices Hero Section */
  .prices-hero {
    position: relative;
    height: 300px;
    background-image: url('images/346.jpg');
    background-size: cover;
    background-position: center;
    margin-top: 60px;
    overflow: hidden;
  }
  
  .prices-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 0, 48, 0.8), rgba(8, 0, 22, 0.95));
    z-index: 1;
  }
  
  .prices-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
      linear-gradient(rgba(0, 255, 255, 0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 2;
  }
  
  .prices-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 3;
    width: 90%;
    max-width: 800px;
  }
  
  .prices-hero-content h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.7);
    letter-spacing: 3px;
  }
  
  .prices-hero-content p {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 1rem;
  }
  
  .prices-hero-content h1 i {
    margin-right: 15px;
    animation: pulse 2s infinite alternate;
  }
  
  @keyframes pulse {
    0% { opacity: 0.7; text-shadow: 0 0 5px rgba(0, 255, 255, 0.5); }
    100% { opacity: 1; text-shadow: 0 0 15px rgba(0, 255, 255, 0.9); }
  }
  
  /* Prices Section */
  .prices-section {
    padding: 60px 5%;
    background-color: var(--background);
    position: relative;
    min-height: 700px;
  }
  
  .prices-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 30%, rgba(0, 255, 255, 0.03) 0%, transparent 70%),
                      radial-gradient(circle at 80% 70%, rgba(255, 0, 255, 0.03) 0%, transparent 70%);
    z-index: 0;
  }
  
  /* Pricing Tabs */
  .pricing-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
  }
  
  .tab-btn {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--accent);
    padding: 12px 25px;
    margin: 0 10px 10px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
  }
  
  .tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
  }
  
  .tab-btn:hover {
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    transform: translateY(-3px);
  }
  
  .tab-btn:hover::before {
    left: 100%;
  }
  
  .tab-btn.active {
    background-color: var(--accent);
    color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.7);
  }
  
  .tab-btn i {
    margin-right: 8px;
  }
  
  /* Pricing Content */
  .pricing-content {
    position: relative;
    z-index: 1;
  }
  
  .pricing-tab-content {
    display: none;
  }
  
  .pricing-tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease forwards;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  /* Pricing Cards */
  .pricing-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .price-card {
    background-color: rgba(15, 0, 48, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 10px;
    width: 300px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(5px);
  }
  
  .price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 255, 255, 0.3);
    border-color: var(--accent);
  }
  
  .price-card.featured {
    transform: scale(1.05);
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
  }
  
  .price-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
  }
  
  .price-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background-color: var(--accent);
    color: var(--primary);
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 2;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
  }
  
  .price-card-header {
    background-color: rgba(15, 0, 60, 0.8);
    padding: 25px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
  }
  
  .price-card-header h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--accent);
    font-size: 1.5rem;
    margin: 10px 0 0;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .price-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
  }
  
  .price-card-body {
    padding: 25px 20px;
    color: var(--text-light);
  }
  
  .price {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .amount {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
  }
  
  .currency {
    font-size: 1rem;
    margin-left: 5px;
    color: rgba(255, 255, 255, 0.8);
  }
  
  .period {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 5px;
  }
  
  .features {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
  }
  
  .features li i {
    color: var(--accent);
    margin-right: 10px;
    font-size: 0.9rem;
  }
  
  .price-card-footer {
    padding: 20px;
    text-align: center;
  }
  
  .book-btn {
    display: inline-block;
    background-color: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
    padding: 10px 25px;
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 1px;
  }
  
  .book-btn:hover {
    background-color: var(--accent);
    color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
  }
  
  /* Shop Categories */
  .shop-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .shop-category {
    background-color: rgba(15, 0, 48, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 10px;
    width: 300px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }
  
  .shop-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 255, 255, 0.3);
    border-color: var(--accent);
  }
  
  .shop-category-header {
    background-color: rgba(15, 0, 60, 0.8);
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
  }
  
  .shop-category-header i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
  }
  
  .shop-category-header h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--accent);
    font-size: 1.5rem;
    margin: 10px 0 0;
    text-transform: uppercase;
  }
  
  .shop-category-body {
    padding: 20px;
    color: var(--text-light);
  }
  
  .shop-category-body p {
    margin-bottom: 15px;
  }
  
  .price-range {
    font-weight: bold;
    color: #fff;
    margin: 15px 0;
  }
  
  .price-range span {
    color: var(--accent);
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
  }
  
  .shop-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
  }
  
  .shop-note-box {
    background-color: rgba(15, 0, 48, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    margin: 30px auto;
    max-width: 800px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }
  
  .shop-note-box p {
    color: var(--text-light);
    margin-bottom: 20px;
  }
  
  .shop-note-box i {
    color: var(--accent);
    margin-right: 10px;
  }
  
  .inquire-btn {
    display: inline-block;
    background-color: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
    padding: 10px 25px;
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 1px;
  }
  
  .inquire-btn:hover {
    background-color: var(--accent);
    color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
  }
  
  /* PDF Download Section */
  .pricing-pdf {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    position: relative;
    z-index: 1;
  }
  
  .pricing-pdf p {
    color: var(--text-light);
    margin-bottom: 20px;
  }
  
  .download-btn {
    display: inline-block;
    background-color: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
    padding: 12px 30px;
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
  }
  
  .download-btn i {
    margin-right: 10px;
  }
  
  .download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
  }
  
  .download-btn:hover {
    background-color: var(--accent);
    color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.7);
    transform: translateY(-5px);
  }
  
  .download-btn:hover::before {
    left: 100%;
  }
  
  /* Responsive Adjustments */
  @media screen and (max-width: 768px) {
    .prices-hero-content h1 {
      font-size: 2rem;
    }
    
    .pricing-tabs {
      flex-direction: column;
      align-items: center;
    }
    
    .tab-btn {
      width: 80%;
      margin: 5px;
    }

    .shop-categories {
      flex-direction: column;
      align-items: center;
    }
    
    .shop-category, .price-card {
      width: 90%;
      max-width: 300px;
    }
    
    .price-card.featured {
      transform: scale(1);
    }
    
    .price-card.featured:hover {
      transform: translateY(-10px);
    }
  }
  
  /* Membership Card */
  .membership-card {
    background-color: rgba(15, 0, 48, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 255, 255, 0.2);
    position: relative;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .membership-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 255, 255, 0.3);
  }
  
  .membership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent), transparent, var(--accent));
    z-index: 2;
    animation: shimmer 3s infinite linear;
  }
  
  @keyframes shimmer {
    0% { background-position: -500px 0; }
    100% { background-position: 500px 0; }
  }
  
  .membership-header {
    background-color: rgba(15, 0, 60, 0.8);
    padding: 40px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
    position: relative;
  }
  
  .membership-icon {
    font-size: 3.5rem;
    color: var(--accent);
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.7);
    animation: float 3s ease-in-out infinite;
  }
  
  .membership-header h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--accent);
    font-size: 2rem;
    margin: 10px 0 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
  }
  
  .membership-price {
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 15px 30px;
    border-radius: 50px;
    border: 1px solid var(--accent);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
  }
  
  .membership-price .amount {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
  }
  
  .membership-price .currency {
    font-size: 1rem;
    margin-left: 5px;
    color: rgba(255, 255, 255, 0.8);
  }
  
  .membership-body {
    padding: 40px 30px;
    color: var(--text-light);
  }
  
  .membership-description {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .membership-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: rgba(15, 0, 70, 0.4);
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
  }
  
  .benefit-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), 0 0 10px rgba(0, 255, 255, 0.2);
  }
  
  .benefit-item i {
    color: var(--accent);
    font-size: 1.2rem;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
  }
  
  .membership-footer {
    padding: 30px;
    text-align: center;
    background-color: rgba(15, 0, 60, 0.5);
    border-top: 1px solid rgba(0, 255, 255, 0.1);
  }
  
  .join-btn {
    display: inline-block;
    background-color: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
    padding: 12px 40px;
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
  }
  
  .join-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
  }
  
  .join-btn:hover {
    background-color: var(--accent);
    color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.7);
    transform: translateY(-5px);
  }
  
  .join-btn:hover::before {
    left: 100%;
  }
  