    /* Content from main.css and previous inline styles combined */
    :root {
      --red: #E63946;
      --dark: #1D1D1D;
      --gray: #F1F1F1;
      --white: #FFFFFF;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Poppins', sans-serif;
      color: var(--dark);
      overflow-x: hidden;
    }

    /* Header & Navigation */
    header {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
      background-color: rgba(29, 29, 29, 0.9);
      backdrop-filter: blur(5px);
      transition: all 0.3s ease;
    }

    .header-scrolled {
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 5%;
      max-width: 1400px;
      margin: 0 auto;
    }

    .logo {
      display: flex;
      align-items: center;
      text-decoration: none;
    }

    .logo-img {
      height: 40px;
    }

    .logo-text {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--white);
      margin-left: 0.5rem;
    }

    .logo-text span {
      color: var(--red);
    }

    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }

    .nav-links li a {
      color: var(--white);
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s ease;
      position: relative;
    }

    .nav-links li a:hover {
      color: var(--red);
    }

    .nav-links li a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: -5px;
      left: 0;
      background-color: var(--red);
      transition: width 0.3s ease;
    }

    .nav-links li a:hover::after {
      width: 100%;
    }

    .hamburger {
      display: none;
      cursor: pointer;
      background: none;
      border: none;
      color: var(--white);
      font-size: 1.5rem;
    }

    /* Hero Section - Not directly used in Terms & Conditions, but kept for main.css completeness */
    .hero {
      height: 100vh;
      background: linear-gradient(135deg, rgba(29,29,29,0.9) 0%, rgba(230,57,70,0.9) 100%), 
                  url('https://cdn.pixabay.com/photo/2016/11/15/02/24/code-1825304_1280.jpg') center/cover;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 0 5%;
      position: relative;
    }

    .hero-content {
      max-width: 900px;
      color: var(--white);
    }

    .hero-content h1 {
      font-size: 3.5rem;
      margin-bottom: 1.5rem;
      font-weight: 700;
    }

    .hero-content p {
      font-size: 1.2rem;
      margin-bottom: 2rem;
      font-weight: 300;
      line-height: 1.6;
    }

    .btn {
      display: inline-block;
      padding: 0.8rem 2rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .btn-primary {
      background-color: var(--red);
      color: var(--white);
      box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
    }

    .btn-primary:hover {
      transform: translateY(-5px);
      box-shadow: 0 7px 20px rgba(230, 57, 70, 0.5);
    }

    .hero-features {
      display: flex;
      gap: 2rem;
      margin-top: 3rem;
      justify-content: center;
    }

    .hero-feature {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .hero-feature i {
      color: var(--red);
    }

    /* Features Section - Not directly used in Terms & Conditions, but kept for main.css completeness */
    .section {
      padding: 6rem 5%;
      max-width: 1400px;
      margin: 0 auto;
    }

    .section-title {
      text-align: center;
      margin-bottom: 3rem;
    }

    .section-title h2 {
      font-size: 2.5rem;
      color: var(--dark);
      margin-bottom: 1rem;
      position: relative;
      display: inline-block;
    }

    .section-title h2::after {
      content: '';
      position: absolute;
      width: 70px;
      height: 4px;
      background: var(--red);
      left: 50%;
      bottom: -10px;
      transform: translateX(-50%);
    }

    .section-title p {
      color: #555;
      max-width: 700px;
      margin: 0 auto;
      margin-top: 1.5rem;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
    }

    .feature-card {
      background: var(--white);
      border-radius: 10px;
      padding: 2rem;
      text-align: center;
      transition: all 0.3s ease;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .feature-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .feature-icon {
      width: 70px;
      height: 70px;
      background: var(--red);
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      margin: 0 auto 1.5rem;
    }

    .feature-icon i {
      color: var(--white);
      font-size: 1.5rem;
    }

    .feature-card h3 {
      margin-bottom: 1rem;
      color: var(--dark);
    }

    .feature-card p {
      color: #555;
      line-height: 1.6;
    }

    /* Pricing Section - Not directly used in Terms & Conditions, but kept for main.css completeness */
    .pricing {
      background-color: var(--gray);
    }

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

    .pricing-card {
      background: var(--white);
      border-radius: 10px;
      padding: 2.5rem 2rem;
      text-align: center;
      transition: all 0.3s ease;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      position: relative;
      overflow: hidden;
    }

    .pricing-card.popular {
      border: 2px solid var(--red);
      transform: scale(1.05);
    }

    .popular-badge {
      position: absolute;
      top: 20px;
      right: -30px;
      transform: rotate(45deg);
      background: var(--red);
      color: var(--white);
      padding: 5px 40px;
      font-size: 0.8rem;
      font-weight: 600;
    }

    .pricing-card:hover {
      transform: translateY(-10px);
    }

    .pricing-card.popular:hover {
      transform: scale(1.05) translateY(-10px);
    }

    .pricing-card h3 {
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
    }

    .pricing-price {
      font-size: 3rem;
      font-weight: 700;
      color: var(--dark);
      margin: 1.5rem 0;
    }

    .pricing-price span {
      font-size: 1rem;
      font-weight: 400;
      color: #777;
    }

    .pricing-features {
      list-style: none;
      margin: 2rem 0;
      text-align: left;
    }

    .pricing-features li {
      padding: 0.5rem 0;
      display: flex;
      align-items: center;
    }

    .pricing-features li i {
      color: var(--red);
      margin-right: 0.8rem;
    }

    .btn-outline {
      background: transparent;
      border: 2px solid var(--red);
      color: var(--red);
    }

    .btn-outline:hover {
      background: var(--red);
      color: var(--white);
    }

    /* Testimonials Section - Not directly used in Terms & Conditions, but kept for main.css completeness */
    .testimonials {
      position: relative;
      overflow: hidden;
    }

    .testimonials-container {
      max-width: 1000px;
      margin: 0 auto;
    }

    .testimonial-slider {
      display: flex;
      transition: transform 0.5s ease;
    }

    .testimonial-slide {
      min-width: 100%;
      padding: 0 1rem;
    }

    .testimonial-card {
      background: var(--white);
      border-radius: 10px;
      padding: 2rem;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .testimonial-content {
      font-style: italic;
      margin-bottom: 2rem;
      line-height: 1.7;
      color: #555;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
    }

    .testimonial-avatar {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      overflow: hidden;
    }

    .testimonial-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .testimonial-info h4 {
      margin-bottom: 0.3rem;
    }

    .testimonial-info p {
      color: #777;
      font-size: 0.9rem;
    }

    .testimonial-company {
      max-width: 100px;
      margin-top: 0.5rem;
      filter: grayscale(100%);
      opacity: 0.7;
      transition: all 0.3s ease;
    }

    .testimonial-card:hover .testimonial-company {
      filter: grayscale(0);
      opacity: 1;
    }

    .testimonial-nav {
      display: flex;
      justify-content: center;
      margin-top: 2rem;
      gap: 1rem;
    }

    .nav-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #ccc;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .nav-dot.active {
      background: var(--red);
      transform: scale(1.2);
    }

    /* Footer - Not directly used in Terms & Conditions, but kept for main.css completeness */
    .footer {
      background-color: var(--dark);
      color: var(--gray);
      padding: 4rem 5% 2rem;
    }

    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
      max-width: 1400px;
      margin: 0 auto;
    }

    .footer-logo {
      margin-bottom: 1rem;
    }

    .footer-logo img {
      height: 40px;
    }

    .footer-about p {
      margin-bottom: 1.5rem;
      line-height: 1.7;
    }

    .social-links {
      display: flex;
      gap: 1rem;
    }

    .social-links a {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      color: var(--white);
      font-size: 1.2rem;
      transition: all 0.3s ease;
    }

    .social-links a:hover {
      background: var(--red);
      transform: translateY(-5px);
    }

    .footer-links h3,
    .footer-contact h3 {
      font-size: 1.2rem;
      margin-bottom: 1.5rem;
      color: var(--white);
      position: relative;
      padding-bottom: 0.5rem;
    }

    .footer-links h3::after,
    .footer-contact h3::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 40px;
      height: 2px;
      background: var(--red);
    }

    .footer-links ul {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 0.7rem;
    }

    .footer-links a {
      color: var(--gray);
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .footer-links a:hover {
      color: var(--red);
      padding-left: 5px;
    }

    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 0.8rem;
    }

    .contact-item i {
      color: var(--red);
      font-size: 1.2rem;
    }

    .footer-bottom {
      text-align: center;
      margin-top: 3rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      font-size: 0.9rem;
    }

    /* Media Queries */
    @media (max-width: 1024px) {
      .hero-content h1 {
        font-size: 3rem;
      }
      
      .section {
        padding: 5rem 5%;
      }
    }

    @media (max-width: 768px) {
      .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(29, 29, 29, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        gap: 1.5rem;
      }

      .nav-links.active {
        right: 0;
      }

      .hamburger {
        display: block;
      }

      .hero-content h1 {
        font-size: 2.5rem;
      }

      .hero-content p {
        font-size: 1rem;
      }

      .hero-features {
        flex-direction: column;
        gap: 1rem;
      }

      .pricing-card.popular {
        transform: scale(1);
      }

      .pricing-card.popular:hover {
        transform: translateY(-10px);
      }
    }

    @media (max-width: 576px) {
      .hero-content h1 {
        font-size: 2rem;
      }

      .section-title h2 {
        font-size: 2rem;
      }

      .footer-content {
        grid-template-columns: 1fr;
      }
    }

    /* Specific styles for the Terms & Conditions page to override/complement main.css */
    /* This ensures content layout is correct within the main.css context */
    body {
      padding-top: 80px; /* Adjust based on header height to prevent content from going under it */
      overflow-x: hidden;
    }
    .main-content { /* Renamed from .container to be consistent with previous outputs */
      max-width: 900px;
      margin: 20px auto;
      background: var(--white);
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }
    h1 {
      text-align: center;
      color: var(--red);
      margin-bottom: 30px;
      font-size: 2.5rem; /* Consistent with section titles */
    }
    h3 {
      color: var(--red);
      margin-top: 25px;
      margin-bottom: 10px;
      font-size: 1.5rem;
    }
    ul {
      list-style-type: disc;
      margin-left: 20px;
      padding-left: 0;
    }
    ul ul {
      list-style-type: circle;
      margin-top: 5px;
    }
    li {
      margin-bottom: 8px;
    }
    p {
      margin-bottom: 15px;
    }
    a {
      color: var(--red);
      text-decoration: none;
    }
    a:hover {
      text-decoration: underline;
    }
    .contact-info, .last-updated {
      text-align: center;
      margin-top: 30px;
      padding-top: 20px;
      border-top: 1px solid #eee;
    }