    /* Hero Section */
    .hero {
      background: linear-gradient(135deg, rgba(12,135,176,0.95) 0%, rgba(31,73,125,0.95) 100%), 
                  url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%230C87B0" width="1200" height="600"/><path fill="%231f497d" opacity="0.3" d="M0,300 Q300,200 600,300 T1200,300 L1200,600 L0,600 Z"/></svg>');
      background-size: cover;
      background-position: center;
      color: white;
      padding: 6rem 2rem;
      text-align: center;
    }

    .hero-content {
      max-width: 900px;
      margin: 0 auto;
    }

    .hero-h1 {
      font-size: 2.8rem;
      margin-bottom: 1.5rem;
      line-height: 1.3;
      font-weight: 700;
      text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    }

    .hero-p {
      font-size: 1.25rem;
      margin-bottom: 2.5rem !important;
      line-height: 1.8;
      opacity: 0.95;
    }

    .hero-buttons {
      display: flex;
      gap: 1.5rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .All-btn {
      padding: 1rem 2.5rem;
      border: none;
      border-radius: 50px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
      text-decoration: none;
      display: inline-block;
    }

    .All-btn-primary {
      background: white;
      color: #0C87B0;
      box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    }

    .All-btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    }

    .All-btn-secondary {
      background: rgba(255,255,255,0.2);
      color: white !important;
      border: 2px solid white;
      backdrop-filter: blur(10px);
    }

    .All-btn-secondary:hover {
      background: rgba(255,255,255,0.3);
      transform: translateY(-3px);
    }

    /* Section Styles */
    .All section {
      padding: 5rem 2rem;
    }

    .section-light {
      background: #f8f9fa;
    }

    .section-white {
      background: white;
    }

    .section-title {
      text-align: center;
      font-size: 2.5rem;
      margin-bottom: 1rem !important;
      color: #1f497d;
      font-weight: 700;
    }

    .section-subtitle {
      text-align: center;
      font-size: 1.2rem;
      color: #6c757d;
      margin-bottom: 3rem !important;
    }

    /* About Section */
    .about-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
    }

    .about-text-h3 {
      font-size: 1.8rem;
      color: #1f497d;
      margin-bottom: 1.5rem;
    }

    .about-text-p {
      margin-bottom: 1.5rem !important;
      font-size: 1.3rem;
    }

    .about-text-bold {
      margin-bottom: 1.5rem;
      font-size: 1.5rem;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .feature-item {
      display: flex;
      align-items: start;
      gap: 1rem;
    }

    .feature-icon img {
      width: 75px;
    }

    .feature-text {
      font-size: 1.1rem;
      line-height: 1.6;
    }

    .feature-text-bold {
      font-size: 1.2rem;
      line-height: 1.6;
    }

    /* Products Section */
    .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .product-card {
      background: white;
      border-radius: 12px;
      padding: 2rem;
      box-shadow: 0 4px 15px rgba(0,0,0,0.08);
      transition: all 0.3s;
      text-align: center;
    }

    .product-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(12,135,176,0.15);
    }

    .product-icon {
      font-size: 4rem;
      margin-bottom: 1rem;
    }

    .product-card-h3 {
      font-size: 1.5rem;
      color: #0C87B0;
      margin-bottom: 1rem;
    }

    /* Steps Section */
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .step-card {
      background: white;
      padding: 2rem;
      border-radius: 12px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0,0,0,0.08);
      position: relative;
    }

    .step-number {
      background: linear-gradient(135deg, #0C87B0, #1f497d);
      color: white;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      font-weight: 700;
      margin: 0 auto 1.5rem;
    }

    .step-card h3 {
      font-size: 1.3rem;
      color: #1f497d;
      margin-bottom: 1rem;
    }

    /* FAQ Section */
    .faq-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .faq-item {
      background: white;
      border-radius: 12px;
      margin-bottom: 1rem;
      box-shadow: 0 2px 8px rgba(0,0,0,0.06);
      overflow: hidden;
      transition: all 0.3s;
    }

    .faq-item:hover {
      box-shadow: 0 4px 15px rgba(12,135,176,0.12);
    }

    .faq-question {
      width: 100%;
      padding: 1.5rem 2rem;
      background: white;
      border: none;
      text-align: left;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: all 0.3s;
    }

    .faq-question-head {
      font-size: 1.1rem;
      font-weight: 600;
      color: #1f497d;}

    .faq-question:hover {
      background: #f8f9fa;
    }

    .faq-icon {
      font-size: 1.5rem;
      font-weight: 300;
      color: #0C87B0;
      transition: transform 0.3s;
      flex-shrink: 0;
      margin-left: 1rem;
    }

    .faq-item.active .faq-icon {
      transform: rotate(45deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease-out, padding 0.4s ease-out;
      padding: 0 2rem;
      background: #f8f9fa;
    }

    .faq-item.active .faq-answer {
      max-height: 500px;
      padding: 1.5rem 2rem;
    }

    .faq-answer-p {
      margin: 0;
      line-height: 1.8;
      color: #6c757d;
      font-size: 1.05rem;
    }

    /* Contact Section */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      margin-top: 3rem;
    }

    .contact-info {
      background: white;
      padding: 2.5rem;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    }

    .contact-item {
      display: flex;
      align-items: start;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .contact-icon img {
      width: 75px;
    }

    .contact-details-h4 {
      font-size: 1.1rem;
      color: #1f497d;
      margin-bottom: 0.5rem;
      font-weight: 600;
    }

    .contact-details-p {
      margin: 0;
      color: #6c757d;
      line-height: 1.7;
      font-size: 18px;
    }

    .contact-details-p a {font-size: 18px;
    font-weight: bold;
    color: #262626;}

    /* Footer */
    .All footer {
      background: #1f497d;
      color: white;
      padding: 2rem;
      text-align: center;
    }

    .All footer p {
      margin: 0.5rem 0;
      opacity: 0.9;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .products-grid,
      .steps-grid,
      .promo-grid {
        gap: 1.5rem;
      }

      .section-title {
        font-size: 2.2rem;
      }
    }

    @media (max-width: 768px) {
      .hero {
        padding: 4rem 1.5rem;
      }

      .hero-h1 {
        font-size: 1.8rem;
      }

      .hero-p {
        font-size: 1rem;
        margin-bottom: 2rem;
      }

      .hero-buttons {
        gap: 1rem;
      }

      .All-btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
        width: 100%;
      }

      .All section {
        padding: 3rem 1.5rem;
      }

      .about-content,
      .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .features-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
      }

      .section-title {
        font-size: 1.8rem;
      }

      .section-subtitle {
        font-size: 1.1rem;
      }

      .products-grid {
        grid-template-columns: 1fr;
      }

      .product-icon {
        font-size: 3rem;
      }

      .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
      }
    }

    @media (max-width: 480px) {
      .hero-h1 {
        font-size: 1.5rem;
      }

      .hero-p {
        font-size: 0.95rem;
      }

      .All-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
      }

      .All section {
        padding: 2.5rem 2rem;
      }

      .section-title {
        font-size: 1.6rem;
      }

      .product-icon,
      .promo-icon {
        font-size: 2.5rem;
      }

      .feature-icon,
      .contact-icon {
        font-size: 1.5rem;
      }

      .contact-info,
      .contact-cta {
        padding: 1.5rem;
      }

      .faq-question {
        padding: 1.2rem 1rem;
        font-size: 1rem;
      }

      .faq-answer {
        padding: 0 1rem;
      }

      .faq-item.active .faq-answer {
        padding: 1.2rem 1rem;
      }

      .faq-icon {
        font-size: 1.3rem;
      }
    }

    .A {background: url(https://www.quinl.com/CompanyImages/Images/2402/1708412012_79544.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    font-family: 'Kanit', sans-serif;}

    .A1 {text-align: center;
    padding: 5% 0;}

    .A2 {text-align: center;}

    .A2 img {width: 70%;padding: 0 0 10px 0;display: inline-block;}

    .A3, .A3 a {text-align: center;
    color: #175BAE;
    font-size: 30px;
    font-weight: bold;}

    .A3 img {width: 300px;display: inline-block;}

    .A4 {text-align: center;padding: 5% 0;}

    .A4 img {display: inline-block;
    width: 25%;
    filter: drop-shadow(2px 4px 6px #262626);
    padding: 10px;}

    .A5 {color: #000000;
    font-size: 30px;
    font-weight: bold;}

    .A5 img {display: inline-block;
    vertical-align: bottom;
    width: 75px;}

    .A5 span {color: #FF000d;
    font-size: 36px;
    font-weight: bold;}

    .A6 {text-align: center;}

    .A6 img {width: 400px;
    padding: 3% 0;
    display: inline-block;}

    .A7 {text-align: center;}

    .A7 img {width: 500px;display: inline-block;}

    .A8 {color: #FF000d;
    text-align: left;
    font-size: 20px;
    font-weight: bold;}

    .A9 {color: #000000;
    text-align: left;
    font-size: 18px;
    margin-top: 0.75rem;}

    .A9 span {font-size: 18px;color: #FF000d;}

    .Aa1 {text-align: center; color: #000000;font-size: 28px;font-weight: bold;margin-bottom: 20px !important;}

    @media only screen and (max-width: 992px) {
        .A {padding: 5%;}

        .A2 img {width: 100%;}

        .A4 img {width: 90%;}

        .A5, .A5 span {font-size: 22px;}
    }

    .promotion-box {
    background-color: #0C87B0;
    color: #ffffff;
    margin: 5%;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    font-family: 'Athiti', sans-serif;
    }

    .promotion-box p {
        font-size: x-large;
    }

    .s-image {
        width: 100%;
    }

    .pro-img img {
        display: inline-block;
        width: 400px;
        padding: 10px;
        margin-bottom: 15px;
    }

    .p-data img {display: inline-block;
    width: 41%;
    padding: 10px;
    filter: drop-shadow(2px 4px 6px #d3d3d3);}

    .p-vdo {width: 70%;height: 629px;}

    .p-box {width: 50%;}

    .Alla {background-color: #fff; 
    padding: 5%;}

    @media only screen and (max-width: 480px) {
        .pro-img img, .p-data img, .A7 img {width: 100%;}

        .p-vdo {width: 100%;height: 275px;}

        .p-box {width: 100%;}

        .Alla {padding: 10px;}
    }

    .G0 {background-color: #0C87B0;
    border-radius: 30px;
    padding: 10px}