* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
   font-family: 'Ralewat', sans-serif;
    background: #fff;
    color: #333;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  .header {
    width: 100%;
    z-index: 9;
    position: fixed;
    padding: 10px;
    background: #fff;
    border-bottom: 1px solid #eee;

  }
  
  .header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
  }
  
  .header__logo {
    font-weight: bold;
    font-size: 24px;
  }
  
  .header__logo span {
    color: #3b82f6;
  }
  
  .header__nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  .header__nav a {
    font-size: 16px;
    color: #333;
  }
  
  .header__auth {
    display: flex;
    gap: 10px;
  }
  
  .btn {
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 20px;
    font-weight: bold;
    border: none;
    cursor: pointer;
  }
  
  .btn--primary {
    background: #eaf63b;
    color: white;
  }
  
  .btn--outline {
    border: 1px solid #3b82f6;
    color: #3b82f6;
    background: transparent;
  }
  
  .btn--light {
    background: #f3f4f6;
    color: #333;
  }
  
  /* Burger */
  .burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }
  
  .burger span {
    width: 25px;
    height: 3px;
    background: #333;
    display: block;
    border-radius: 2px;
  }
  
  /* Hero div */
  .hero {
    padding: 80px 20px;
    background: #fff;
  }
  
  .hero__container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
    gap: 40px;
  }
  
  .hero__content {
    flex: 1;
  }
  
  .hero__content h1 {
    font-size: 48px;
    margin-bottom: 20px;
  }
  
  .hero__content p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #6b7280;
  }
  
  .hero__buttons {
    display: flex;
    gap: 15px;
  }
  
  .hero__image {
    flex: 1;
    text-align: center;
  }
  
  .hero__image img {
    max-width: 100%;
    height: auto;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .header__nav {
      display: none;
      width: 100%;
    }
  
    .header__nav.active
   
     {
            display: block;
            position: absolute;
            margin-top: 10px;
            padding: 20px;
            top: 39px;
            left: 0;
            background-color: #fff;
        }
    .header__nav ul {
      flex-direction: column;
      gap: 10px;
    }
  
    .burger {
      display: flex;
    }
  
    .header__auth {
      display: none;
    }
  
    .hero__container {
      flex-direction: column;
      text-align: center;
    }
  
    .hero__content h1 {
      font-size: 32px;
    }
  }
  .digital__services {
    padding: 80px 20px;
    background: #fff;
   
  }
  
  .container {
    max-width: 1200px;
    margin: auto;
  }
  
  .digital__wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .digital__text {
    flex: 1;
    min-width: 300px;
  }
  
  .digital__tag {
    text-transform: uppercase;
    color: #3b82f6;
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  .digital__title {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .digital__desc {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 20px;
  }
  
  .digital__list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
  }
  
  .digital__list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    color: #333;
  }
  
  .digital__list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-size: 14px;
  }
  
  blockquote {
    font-style: italic;
    background: #f9f9f9;
    padding: 15px 20px;
    border-left: 3px solid #3b82f6;
    margin-bottom: 20px;
  }
  
  .digital__author {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .digital__author img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
  }
  
  .digital__author strong {
    font-weight: 600;
    font-size: 16px;
  }
  
  .digital__author span {
    font-size: 14px;
    color: #6b7280;
  }
  
  .digital__image {
    flex: 1;
    min-width: 300px;
    text-align: center;
  }
  
  .digital__image img {
    max-width: 100%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .digital__wrapper {
      flex-direction: column;
    }
  
    .digital__title {
      font-size: 28px;
    }
  }
  .serv {
    padding: 80px 20px;
    background: #f8f9fa;
    
  }
  
  .serv__container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .serv__image {
    flex: 1;
    text-align: center;
    min-width: 300px;
  }
  
  .serv__image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  }
  
  .serv__content {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .tab {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    cursor: pointer;
    transition: all 0.3s ease;
    border-right: 5px solid transparent;
  }
  
  .tab:hover {
    transform: translateY(-2px);
  }
  
  .tab.active {
    border-right: 5px solid #3f51b5;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  }
  
  .tab .icon {
    width: 50px;
    min-width: 50px;
    height: 50px;
    background: #ddd;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 22px;
  }
  
  .tab h3 {
    margin: 0 0 5px;
    font-size: 18px;
  }
  
  .tab p {
    margin: 0;
    color: #555;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .serv__container {
      flex-direction: column;
    }
  }
  .serv2 {
    padding: 60px 20px;
    background-color: #fff;
   
  }
  
  .serv2__container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
  }
  
  .serv2__item {
    flex: 1 1 22%;
    text-align: center;
    padding: 20px;
    transition: all 0.3s ease;
    border-radius: 12px;
  }
  
  .serv2__item:hover {
    transform: translateY(-5px);
  }
  
  .serv2__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background-color: #ddd;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
  }
  
  .serv2__item h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .serv2__item p {
    color: #7a7a7a;
    font-size: 14px;
    line-height: 1.6;
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .serv2__item {
      flex: 1 1 45%;
    }
  }
  
  @media (max-width: 576px) {
    .serv2__item {
      flex: 1 1 100%;
    }
  }
  .pricing {
    text-align: center;
    padding: 60px 20px;
  }
  
  .pricing__header h2 {
    font-size: 36px;
    margin-bottom: 10px;
  }
  
  .pricing__header p {
    color: #7a7a7a;
    font-size: 16px;
    margin-bottom: 40px;
  }
  
  .pricing__cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .pricing__card {
    background: white;
    border-radius: 20px;
    padding: 40px 20px;
    width: 300px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
  }
  
  .pricing__card:hover {
    transform: translateY(-5px);
  }
  
  .pricing__card h3 {
    font-size: 22px;
    margin-bottom: 15px;
  }
  
  .price {
    color: #407BFF;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 25px;
  }
  
  .price sup {
    font-size: 18px;
    top: -8px;
    left: -2px;
  }
  
  .pricing__card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
  }
  
  .pricing__card ul li {
    color: #7a7a7a;
    margin: 10px 0;
    position: relative;
    padding-left: 20px;
  }
  
  .pricing__card ul li::before {
    content: "✔";
    color: #ffc340;
    position: absolute;
    left: 0;
  }
  
  .btn {
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 30px;
    border: 1px solid #fffc40;
    color: #1a1919;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s;
  }
  
  .btn:hover {
    background: #fffc40;
    color: #131212;
  }
  .btn.btn--outline {
    color: #131312;
}
  .filled {
    background: #ff8740;
    color: #fff;
    border: none;
  }
  
  .filled:hover {
    background: #ccc92a;
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .pricing__card {
      width: 100%;
      max-width: 400px;
    }
  }
  .serv3 {
    padding: 60px 20px;
    text-align: center;
    background: #f5f5f5;
  }
  
  .serv3__header h2 {
    font-size: 32px;
    margin-bottom: 10px;
  }
  
  .serv3__header p {
    color: #7a7a7a;
    margin-bottom: 40px;
  }
  
  .serv3__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 60px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
  }
  
  .serv3__item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
  }
  
  .serv3__icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  
  .serv3__item h3 {
    margin: 0 0 10px;
    font-size: 18px;
  }
  
  .serv3__item p {
    font-size: 15px;
    color: #777;
    margin-bottom: 10px;
  }
  
  .serv3__item a {
    color: #ffa640;
    font-size: 14px;
    text-decoration: none;
    position: relative;
  }
  
  .serv3__item a::after {
    content: "";
    display: block;
    width: 0%;
    height: 1px;
    background: #fcff40;
    transition: width 0.3s;
  }
  
  .serv3__item a:hover::after {
    width: 100%;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .serv3__grid {
      grid-template-columns: 1fr;
    }
  }
  .testimonial__container{
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    display: flex;
    padding: 0 15px;
  }
  .testimonial {
    background-color: #fff;
    padding: 80px 0px;
   
    
  }
  
  .testimonial__intro {
 max-width: 300px;
    position: relative;
  }
  
  .testimonial__intro .subtitle {
    color: #ff9640;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
  }
  
  .testimonial__intro h2 {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  
  .testimonial__nav {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    justify-content: center;
  }
  
  .swiper-button-prev,
  .swiper-button-next {
    background: #ccc;
    position: relative;
    top: auto;
    bottom: auto;
    right: auto;
    left: auto;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    user-select: none;
  }
  .swiper-button-next:after, .swiper-button-prev:after{
font-size: 20px;
color: #fff;
  }
  .testimonial__slider {
  max-width: 600px;
  }
  
  .testimonial__item {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    min-height: 200px;
  }
  
  .testimonial__text {
    font-style: italic;
    font-size: 16px;
    margin-bottom: 20px;
    color: #333;
  }
  
  .testimonial__author {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .testimonial__author img {
    border-radius: 50%;
    width: 40px;
    height: 40px;
  }
  
  .testimonial__author p {
    margin: 0;
    font-size: 14px;
    color: #888;
  }
  
  .swiper-pagination {
    margin-top: 20px;
    text-align: center;
  }
  .about {
    padding: 60px 20px;
    background-color: #fff;
   
  }
  
  .about__container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 40px;
  }
  
  .about__image {
    flex: 1 1 500px;
  }
  
  .about__image img {
    max-width: 100%;
    height: auto;
  }
  
  .about__content {
    flex: 1 1 500px;
  }
  
  .about__subtitle {
    color: #ff9640;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
  }
  
  .about__title {
    font-size: 36px;
    margin-bottom: 20px;
    color: #000;
  }
  
  .about__text {
    color: #555;
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.6;
  }
  
  .about__list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
  }
  
  .about__list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #444;
  }
  
  .about__list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #ff8c40;
    font-size: 14px;
  }
  
  .about__stats {
    display: flex;
    gap: 50px;
  }
  
  .about__stats h3 {
    font-size: 32px;
    color: #000;
    margin: 0;
  }
  
  .about__stats p {
    font-size: 14px;
    text-transform: uppercase;
    color: #888;
    margin: 5px 0 0;
  }
  .news {
    padding: 60px 20px;
    background: #f9f9f9;
    text-align: center;
   
  }
  
  .news__header h2 {
    font-size: 36px;
    margin-bottom: 10px;
  }
  
  .news__header p {
    color: #888;
    font-size: 16px;
    margin-bottom: 40px;
  }
  
  .news__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .news__item {
    background: #fff;
    padding: 30px;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }
  
  .news__author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
  }
  
  .news__author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .news__meta {
    color: #999;
    font-size: 14px;
    margin-bottom: 15px;
  }
  
  .news__title {
    font-size: 20px;
    color: #000;
    font-weight: normal;
    margin-bottom: 25px;
  }
  
  .news__arrow {
    display: inline-block;
    font-size: 47px;
    text-decoration: none;
    /* background: #f1f1f1; */
    padding: 8px 12px;
    display: block;
    font-weight: 900;
    line-height: 10px;
    border-radius: 4px;
    color: #000;
    transition: background 0.3s;
}
  
  .news__arrow:hover {
 
    color: #c9ff07;
  }
  .footer {
    background: #f4f4f4;
    padding: 60px 20px 60px;
   
    color: #444;
  }
  
  .footer__top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
  }
  
  .footer__col {
    flex: 1 1 220px;
  }
  
  .footer__col h4 {
    margin-bottom: 15px;
    font-size: 18px;
  }
  
  .footer__col h5 {
    margin-top: 20px;
    font-size: 16px;
  }
  
  .footer__col ul {
    list-style: none;
    padding: 0;
  }
  
  .footer__col ul li {
    margin-bottom: 10px;
  }
  
  .footer__col ul li a {
    text-decoration: none;
    color: #444;
    transition: color 0.3s;
  }
  
  .footer__col ul li a:hover {
    color: #ff9100;
  }
  .footer__socials{
    margin-top: 20px;
  }

  .footer__socials a {
    display: inline-block;
    margin-right: 8px;
    color: #555;
    font-size: 18px;
    background: #ccc;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    transition: background 0.3s, color 0.3s;
  }
  
  .footer__socials a:hover {
    background: #ffee00;
    color: #fff;
  }
  
  .footer__bottom {
    text-align: center;
    font-size: 14px;
    color: #666;
  }
  .contact {
    padding: 90px 20px 120px;
    background: #fff;
    text-align: center;
  }
  .contact__title {
    font-size: 32px;
    margin-bottom: 10px;
  }
  .contact__subtitle {
    color: #999;
    margin-bottom: 40px;
  }
  .contact__wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
  }
  .contact__form {
    flex: 1 1 55%;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .contact__form .row {
    display: flex;
    gap: 20px;
  }
  .contact__form input,
  .contact__form textarea {
    width: 100%;
    padding: 10px 15px;
    border: none;
    border-bottom: 1px solid #ccc;
    font-size: 16px;
  }
  .contact__form button {
    background-color: #4678ff;
    border: none;
    color: #fff;
    font-weight: bold;
    padding: 12px 30px;
    border-radius: 30px;
    cursor: pointer;
    width: fit-content;
  }
  .contact__info {
    flex: 1 1 35%;
    text-align: left;
  }
  .contact__info h4 {
    margin-bottom: 20px;
    font-size: 20px;
  }
  .contact__info ul {
    list-style: none;
    padding: 0;
  }
  .contact__info li {
    margin-bottom: 15px;
    color: #333;
  }
  .contact__info i {
    margin-right: 10px;
    color: #000;
  }
  .news-detail {
    padding: 90px 0px;
    background: #fff;
  }
  .news-detail .container {
    max-width: 800px;
    margin: auto;
    padding: 0 15px;
  }
  .news-detail__title {
    font-size: 36px;
    margin-bottom: 20px;
  }
  .news-detail__meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
  }
  .news-detail__meta img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
  }
  .news-detail__main-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 30px;
  }
  .news-detail__content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #333;
  }
  .news-detail__content blockquote {
    background: #f8f9fa;
    padding: 20px;
    margin: 30px 0;
    border-left: 4px solid #4678ff;
    font-style: italic;
    color: #444;
  }
  .faq__div {
    padding: 60px 20px;
    background: #f8f9fc;
   
  }
  .faq__div .container {
    max-width: 800px;
    margin: auto;
  }
  .div-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
  }
  .div-subtitle {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
  }
  .faq__item {
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
  }
  .faq__question {
    background: none;
    border: none;
    font-size: 18px;
    padding: 15px;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-weight: 600;
    position: relative;
  }
  .faq__question::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 24px;
    transition: transform 0.3s;
  }
  .faq__question.active::after {
    content: '−';
  }
  .faq__answer {
    display: none;
    padding: 0 15px 15px 15px;
    color: #333;
  }
  .faq__answer p {
    margin: 0;
  }
  
 
  .testimon {
    background: #f9f9fb;
    padding: 90px 15px;
   
  }
  .testimonial .container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
  }
  .testimon__title {
    font-size: 32px;
    margin-bottom: 10px;
  }
  .testimon__subtitle {
    color: #777;
    margin-bottom: 40px;
  }
  .testimon__grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  .testimon__item {
    background: #fff;
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: 0 0 25px rgba(0,0,0,0.05);
    text-align: left;
  }
  .testimon__text {
    font-style: italic;
    color: #333;
    margin-bottom: 20px;
  }
  .testimon__author {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  .testimon__author img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
  }
  .testimon__author h4 {
    margin: 0;
    font-size: 16px;
  }
  .testimon__author p {
    margin: 0;
    color: #888;
    font-size: 14px;
  }
.support{
    padding: 90px 15px 120px;
}
.support .container{
    display: flex;
    max-width: 900px;
    flex-direction: column;
    gap: 10px;
}
.support ul{
    padding-left: 15px;
}
.support li{
    margin-bottom: 10px;
}
.cook__banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    margin: auto;
    background-color: #fff;
    color: #333;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    font-family: 'Segoe UI', sans-serif;
    z-index: 9999;
    display: none;
    animation: fadeInUp 0.5s ease-in-out;
  }
  
  .cook__banner.show {
    display: block;
  }
  
  .cook__content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
  }
  
  .cook__content a {
    color: #3366ff;
    text-decoration: underline;
  }
  
  .cook__buttons {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
  }
  
  .cook__buttons button {
    padding: 8px 18px;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  #acceptCookies {
    background-color: #3366ff;
    color: #fff;
  }
  
  #acceptCookies:hover {
    background-color: #254eda;
  }
  
  #declineCookies {
    background-color: #eee;
    color: #333;
  }
  
  #declineCookies:hover {
    background-color: #ddd;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .footer__col p{
    margin-bottom: 10px;
  }
@media screen and (max-width: 768px) {
    .testimonial__slider {
        width: 100%;
        max-width: 100%;
    }
}
