* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Times New Roman', Times, serif;
    line-height: 1.6;
    color: #1f2937;
    background: #f8fafc;
    overflow-x: hidden;
  }
  
  .page-container {
    min-height: 100vh;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Hero Section */
  .hero-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #ec4899 100%);
  }
  
  .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.1)"/><stop offset="100%" style="stop-color:rgba(255,255,255,0)"/></radialGradient></defs><rect width="1000" height="1000" fill="url(%23a)"/></svg>');
    animation: float 20s ease-in-out infinite;
  }
  
  @keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 40px 20px;
  }
  
  .hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    animation: slideUp 1s ease-out;
  }
  
  .hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    margin-bottom: 40px;
    opacity: 0.9;
    animation: slideUp 1s ease-out 0.2s both;
    color: white;
  }
  
  .hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    animation: slideUp 1s ease-out 0.4s both;
  }
  
  .stat-item {
    text-align: center;
  }
  
  .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
  }
  
  .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
  }
  
  @keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
  }
  
  /* Pricing Section */
  .pricing-section {
    padding: 80px 0;
    position: relative;
  }
  
  .pricing-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .pricing-card {
    flex: 1;
    min-width: 320px;
    max-width: 350px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.3s ease;
    transform: translateY(0);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  }
  
  .pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(79, 70, 229, 0.2);
    border-color: #4f46e5;
  }
  
  .card-header {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .plan-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1f2937;
  }
  
  .plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
  }
  
  .original-price {
    font-size: 2.8rem;
    color: #9ca3af;
    text-decoration: line-through;
    opacity: 0.7;
  }
  
  .currency {
    font-size: 2.2rem;
    font-weight: 600;
    color: #4f46e5;
    margin-left: 10px;
  }
  
  .amount, .amounts {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1f2937;
    line-height: 1;
  }
  
  .period {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 500;
  }
  
  .plan-description {
    color: #6b7280;
    font-size: 1rem;
  }
  
  .card-body {
    margin-bottom: 30px;
  }
  
  .features-list {
    list-style: none;
  }
  
  .feature-item {
    display: flex;
    gap: 12px;
    padding: 8px 0;
    transition: all 0.3s ease;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
}
  
  .feature-item:hover {
    transform: translateX(5px);
    color: #4f46e5;
  }
  
  .feature-icon {
    width: 20px;
    height: 20px;
    color: #10b981;
    flex-shrink: 0;
    margin: 0px !important;
  }
  
  .feature-item span {
    font-size: 0.95rem;
    font-weight: 500;
  }
  
  .card-footer {
    text-align: center;
  }
  
  .cta-button {
    width: 100%;
    padding: 16px 24px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }
  
  .cta-button::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: left 0.5s;
  }
  
  .cta-button:hover::before {
    left: 100%;
  }
  
  .cta-button.primary {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
  }
  
  .cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
  }
  
  .cta-button.secondary {
    background: white;
    color: #4f46e5;
    border: 2px solid #4f46e5;
  }
  
  .cta-button.secondary:hover {
    background: #4f46e5;
    color: white;
    transform: translateY(-2px);
  }
  
  /* Comparison Section */
  .comparison-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f1f5f9 0%, #ffffff 50%, #f8fafc 100%);
    position: relative;
  }
  
  .comparison-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(79,70,229,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
  }
  
  .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1f2937;
    position: relative;
    z-index: 2;
  }
  
  .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border-radius: 2px;
  }
  
  .comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    background: white;
    border: 1px solid rgba(79, 70, 229, 0.1);
    position: relative;
    z-index: 2;
  }
  
  .comparison-table {
    width: 100%;
    background: white;
    border-collapse: collapse;
    min-width: 600px;
  }
  
  .comparison-table th {
    padding: 24px 20px;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #f8fafc;
    border-bottom: 2px solid #e5e7eb;
  }
  
  .feature-header {
    text-align: left !important;
    background: #1f2937 !important;
    color: white;
    border-top-left-radius: 20px;
  }
  
  .plan-header.elite {
    background: linear-gradient(135deg, #4f46e5, #6366f1) !important;
    color: white;
  }
  
  .plan-header.premium {
    background: linear-gradient(135deg, #7c3aed, #8b5cf6) !important;
    color: white;
  }
  
  .comparison-table th:last-child {
    border-top-right-radius: 20px;
  }
  
  .comparison-table td {
    padding: 18px 20px;
    text-align: center;
    border-bottom: 1px solid #f3f4f6;
    transition: background-color 0.3s ease;
  }
  
  .comparison-table tr:hover td {
    background: linear-gradient(90deg, #f8fafc, #f1f5f9, #f8fafc);
  }
  
  .feature-name {
    text-align: left !important;
    font-weight: 500;
    color: #374151;
  }
  
  .feature-value {
    font-weight: 500;
    font-size: 0.95rem;
  }
  
  .comparison-table tr:last-child td:first-child {
    border-bottom-left-radius: 20px;
  }
  
  /* Collaboration Section */
  .collaboration-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
  }
  
  .collaboration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  
  .collaboration-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .collaboration-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.7;
  }
  
  .collaboration-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
  }
  
  .benefit-icon {
    font-size: 1.5rem;
  }
  
  .collaboration-form {
    background: rgba(255, 255, 255, 0.1);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
  }
  
  .form-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
  }
  
  .form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="white"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 9l-7 7-7-7"/></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
  }
  
  .form-group select option {
    background: #1f2937;
    color: white;
    padding: 10px;
  }
  
  .form-group input::placeholder,
  .form-group textarea::placeholder,
  .form-group select::placeholder {
    color: rgba(255, 255, 255, 0.7);
  }
  
  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    outline: none;
    border-color: #fbbf24;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.15);
    transform: translateY(-2px);
  }
  
  .submit-button {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1f2937;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
  }
  
  .submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
  }
  
  /* FAQ Section */
  .faq-section {
    padding: 80px 0;
    background: white;
  }
  
  .faq-grid {
    display: grid;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .faq-item:hover {
    border-color: #4f46e5;
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.1);
  }
  
  .faq-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
  }
  
  .faq-question:hover {
    background: #f8fafc;
  }
  
  .faq-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
  }
  
  .faq-item.active .faq-icon {
    transform: rotate(180deg);
  }
  
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #f8fafc;
  }
  
  .faq-item.active .faq-answer {
    max-height: 200px;
  }
  
  .faq-answer p {
    padding: 20px;
    color: #6b7280;
    line-height: 1.6;
  }
  
  /* Footer CTA */
  .footer-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1f2937 0%, #4f46e5 100%);
    color: white;
    text-align: center;
  }
  
  .cta-content {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .cta-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
  }
  
  .cta-button-large {
    padding: 18px 40px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1f2937;
    border: none;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .cta-button-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
  }
  
  .cta-button-large:hover::before {
    left: 100%;
  }
  
  .cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(251, 191, 36, 0.4);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    
    .elite-card {
        transform: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .elite-card:hover {
        transform: translateY(-5px);
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .pricing-grid {
        flex-direction: column;
    }
    
    .collaboration-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .comparison-table-wrapper {
        border-radius: 12px;
    }
    
    .hero-section {
        min-height: 50vh;
        margin-top: 20px;
    }
    
    .pricing-section,
    .comparison-section,
    .collaboration-section,
    .faq-section,
    .footer-cta {
        padding: 60px 0;
    }
  }
  
  @media (max-width: 480px) {
    .pricing-card {
        padding: 30px 20px;
    }
    
    .collaboration-form {
        padding: 30px 20px;
    }
    
    .hero-content {
        padding: 10px 5px;
    }

    .hero-section {
      margin-top: 80px;
    }
    
    .container {
        padding: 0 15px;
    }
  }
  
  /* Animation Classes */
  .fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
  }
  
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s ease;
  }
  
  .scale-in.visible {
    opacity: 1;
    transform: scale(1);
  }
  
  /* Loading Animation */
  @keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
  }
  
  .loading-shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200px 100%;
    animation: shimmer 1.5s infinite;
  }
  
  /* Custom Scrollbar */
  ::-webkit-scrollbar {
    width: 8px;
  }
  
  ::-webkit-scrollbar-track {
    background: #f1f5f9;
  }
  
  ::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border-radius: 4px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #3730a3, #6d28d9);
  }
  
  /* Selection styling */
  ::selection {
    background: rgba(79, 70, 229, 0.2);
    color: #1f2937;
  }