:root {
    --color-primary: #003688;
    --color-secondary: #ac2b2b;
    --color-accent: #000000;
    --color-text: #333;
    --color-text-light: #fff;
    --color-background: #f4f4f4;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  body {
    font-family: var(--font-main);
    color: var(--color-text);
    line-height: 1.6;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  /* Header & Navigation */
  .main-header {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
  }
  
  .nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
  }
  
  .brand {
    color: var(--color-text-light);
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .brand:hover {
    color: var(--color-accent);
  }
  
  .nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
  }
  
  .nav-links a {
    color: var(--color-text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover {
    color: var(--color-accent);
  }
  
  /* Hero Section */
  .hero {
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--color-text-light);
    padding: 2rem 0;
  }
  
  .hero-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  
  .hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
  }
  
  .cta-button {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-text-light);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .cta-button:hover {
    background: #ff8585;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
  }
  
  /* Sections */
  section {
    padding: 5rem 0;
    color: var(--color-text-light);
  }
  
  section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
  }
  
  /* About Section */
  .about-section p {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
  }
  
  /* Services */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .service-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
  }
  
  .service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  
  .service-card:nth-child(1) .service-icon {
    background-image: url('../images/tickets-icon.png');
  }
  
  .service-card:nth-child(2) .service-icon {
    background-image: url('../images/aio-icon.png');
  }
  
  .service-card:nth-child(3) .service-icon {
    background-image: url('../images/alts-icon.png');
  }
  
  .service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  /* Features */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .feature-icon {
    width: 48px;
    height: 48px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  
  .feature:nth-child(1) .feature-icon {
    background-image: url('../images/alts-feature.png');
  }
  
  .feature:nth-child(2) .feature-icon {
    background-image: url('../images/market-feature.png');
  }
  
  /* Pricing */
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }
  
  .price-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    text-align: center;
    transition: transform 0.3s ease;
  }
  
  .price-card:hover {
    transform: translateY(-5px);
  }
  
  .price-card.featured {
    border: 2px solid var(--color-accent);
    transform: scale(1.05);
  }
  
  .price-card.featured:hover {
    transform: scale(1.07);
  }
  
  .price {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 1rem 0;
  }
  
  .price span {
    font-size: 1rem;
    opacity: 0.7;
  }
  
  .features-list {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
  }
  
  .features-list li {
    margin-bottom: 0.5rem;
  }
  
  /* Buttons */
  .btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .btn-primary {
    background: var(--color-accent);
    color: var(--color-text-light);
  }
  
  .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-text-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  /* Contact Form */
  .contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-text-light);
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text-light);
  }
  
  /* Footer */
  .main-footer {
    background: rgba(0, 0, 0, 0.8);
    color: var(--color-text-light);
    padding: 4rem 0 1rem;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  .footer-brand h3 {
    margin-bottom: 1rem;
  }
  
  .footer-links ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links a {
    color: var(--color-text-light);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s;
  }
  
  .footer-links a:hover {
    opacity: 1;
  }
  
  .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .social-link {
    color: var(--color-text-light);
    font-size: 1.5rem;
    opacity: 0.8;
    transition: all 0.3s ease;
  }
  
  .social-link:hover {
    opacity: 1;
    transform: translateY(-3px);
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .footer-bottom a {
    color: var(--color-text-light);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-bottom a:hover {
    color: var(--color-accent);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .nav-wrapper {
      flex-direction: column;
      gap: 1rem;
    }
    
    .nav-links {
      flex-wrap: wrap;
      justify-content: center;
    }
    
    .hero h1 {
      font-size: 2.5rem;
    }
    
    .hero p {
      font-size: 1rem;
    }
    
    .price-card.featured {
      transform: none;
    }
    
    .price-card.featured:hover {
      transform: translateY(-5px);
    }
  }