 :root {
     --primary: #0056b3;
     --secondary: #003366;
     --accent: #ff6b00;
     --light: #f8f9fa;
     --dark: #212529;
     --text: #333333;
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
 }

 body {
     color: var(--text);
     line-height: 1.6;
     overflow-x: hidden;
 }

 /* Header styles */
 header {
     background-color: white;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
     position: fixed;
     width: 100%;
     top: 0;
     z-index: 1000;
 }

 .header-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;
 }

 .logo img {
     height: 50px;
     margin-right: 10px;
 }

 .logo-text h1 {
     font-size: 1.5rem;
     color: var(--primary);
     font-weight: 700;
 }

 .logo-text p {
     font-size: 0.8rem;
     color: var(--dark);
 }

 nav ul {
     display: flex;
     list-style: none;
 }

 nav ul li {
     margin-left: 2rem;
 }

 nav ul li a {
     text-decoration: none;
     color: var(--dark);
     font-weight: 500;
     transition: color 0.3s;
     position: relative;
 }

 nav ul li a:hover {
     color: var(--primary);
 }

 nav ul li a::after {
     content: '';
     position: absolute;
     width: 0;
     height: 2px;
     bottom: -5px;
     left: 0;
     background-color: var(--primary);
     transition: width 0.3s;
 }

 nav ul li a:hover::after {
     width: 100%;
 }

 .burger {
     display: none;
     cursor: pointer;
 }

 .burger div {
     width: 25px;
     height: 3px;
     background-color: var(--dark);
     margin: 5px;
     transition: all 0.3s ease;
 }

 /* Hero section */
 .hero {
     background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/bg.jpg') no-repeat center center/cover;
     height: 80vh;
     display: flex;
     align-items: center;
     text-align: center;
     color: white;
     padding-top: 80px;
 }

 .hero-content {
     max-width: 800px;
     margin: 0 auto;
     padding: 0 2rem;
     animation: fadeIn 1.5s ease-in-out;
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: translateY(20px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .hero h1 {
     font-size: 2.5rem;
     margin-bottom: 1rem;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
 }

 .hero p {
     font-size: 1.2rem;
     margin-bottom: 2rem;
     text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
 }

 .btn {
     display: inline-block;
     background-color: var(--accent);
     color: white;
     padding: 0.8rem 1.8rem;
     border: none;
     border-radius: 50px;
     text-decoration: none;
     font-weight: 600;
     transition: all 0.3s;
     cursor: pointer;
 }

 .btn:hover {
     background-color: #e05d00;
     transform: translateY(-3px);
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
 }

 /* Section styles */
 section {
     padding: 5rem 5%;
     max-width: 1400px;
     margin: 0 auto;
 }

 .section-title {
     text-align: center;
     margin-bottom: 3rem;
     position: relative;
 }

 .section-title h2 {
     font-size: 2rem;
     color: var(--primary);
     display: inline-block;
 }

 .section-title h2::after {
     content: '';
     position: absolute;
     width: 80px;
     height: 3px;
     background-color: var(--accent);
     bottom: -10px;
     left: 50%;
     transform: translateX(-50%);
 }

 /* About section */
 .about-content {
     display: flex;
     align-items: center;
     gap: 3rem;
 }

 .about-text {
     flex: 1;
 }

 .about-text h3 {
     font-size: 1.5rem;
     color: var(--secondary);
     margin-bottom: 1rem;
 }

 .about-text p {
     margin-bottom: 1.5rem;
 }

 .about-image {
     flex: 1;
     border-radius: 10px;
     overflow: hidden;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     animation: float 3s ease-in-out infinite;
 }

 @keyframes float {
     0% {
         transform: translateY(0);
     }

     50% {
         transform: translateY(-10px);
     }

     100% {
         transform: translateY(0);
     }
 }

 .about-image img {
     width: 100%;
     height: auto;
     display: block;
 }

 /* Services section */
 .services-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 2rem;
 }

 .service-card {
     background-color: white;
     border-radius: 10px;
     overflow: hidden;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     transition: transform 0.3s, box-shadow 0.3s;
 }

 .service-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
 }

 .service-image {
     height: 200px;
     overflow: hidden;
 }

 .service-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s;
 }

 .service-card:hover .service-image img {
     transform: scale(1.1);
 }

 .service-content {
     padding: 1.5rem;
 }

 .service-content h3 {
     color: var(--primary);
     margin-bottom: 0.5rem;
 }

 .price {
     font-size: 1.2rem;
     font-weight: 700;
     color: var(--accent);
     margin: 1rem 0;
 }

 /* Pricing section */
 .pricing-table {
     width: 100%;
     border-collapse: collapse;
     margin-top: 2rem;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
 }

 .pricing-table th,
 .pricing-table td {
     padding: 1rem;
     text-align: left;
     border-bottom: 1px solid #ddd;
 }

 .pricing-table th {
     background-color: var(--primary);
     color: white;
 }

 .pricing-table tr:nth-child(even) {
     background-color: #f2f2f2;
 }

 .pricing-table tr:hover {
     background-color: #e9e9e9;
 }

 /* Testimonials */
 .testimonials {
     background-color: var(--light);
 }

 .swiper {
     width: 100%;
     height: 100%;
     padding: 2rem 0;
 }

 .testimonial-card {
     background-color: white;
     padding: 2rem;
     border-radius: 10px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
     margin: 0 1rem;
     text-align: center;
 }

 .testimonial-card img {
     width: 80px;
     height: 80px;
     border-radius: 50%;
     object-fit: cover;
     margin: 0 auto 1rem;
     border: 3px solid var(--primary);
 }

 .testimonial-card h4 {
     color: var(--primary);
     margin-bottom: 0.5rem;
 }

 .testimonial-card .position {
     color: var(--accent);
     font-size: 0.9rem;
     margin-bottom: 1rem;
     display: block;
 }

 .rating {
     color: #ffc107;
     margin-bottom: 1rem;
 }

 /* FAQ section */
 .faq-container {
     max-width: 800px;
     margin: 0 auto;
 }

 .faq-item {
     margin-bottom: 1rem;
     border: 1px solid #ddd;
     border-radius: 5px;
     overflow: hidden;
 }

 .faq-question {
     padding: 1rem;
     background-color: var(--light);
     cursor: pointer;
     display: flex;
     justify-content: space-between;
     align-items: center;
     font-weight: 600;
 }

 .faq-question::after {
     content: '+';
     font-size: 1.2rem;
 }

 .faq-item.active .faq-question::after {
     content: '-';
 }

 .faq-answer {
     padding: 0 1rem;
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.3s ease-out, padding 0.3s ease;
 }

 .faq-item.active .faq-answer {
     padding: 1rem;
     max-height: 500px;
 }

 /* Contact section */
 .contact-container {
     display: flex;
     gap: 3rem;
 }

 .contact-info {
     flex: 1;
 }

 .contact-info h3 {
     color: var(--primary);
     margin-bottom: 1.5rem;
 }

 .contact-details {
     margin-bottom: 2rem;
 }

 .contact-details p {
     margin-bottom: 0.5rem;
     display: flex;
     align-items: center;
 }

 .contact-details i {
     margin-right: 10px;
     color: var(--accent);
     width: 20px;
     text-align: center;
 }

 .contact-form {
     flex: 1;
     background-color: white;
     padding: 2rem;
     border-radius: 10px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
 }

 .form-group {
     margin-bottom: 1.5rem;
 }

 .form-group label {
     display: block;
     margin-bottom: 0.5rem;
     font-weight: 500;
 }

 .form-group input,
 .form-group textarea {
     width: 100%;
     padding: 0.8rem;
     border: 1px solid #ddd;
     border-radius: 5px;
     font-size: 1rem;
 }

 .form-group textarea {
     height: 150px;
     resize: vertical;
 }

 /* Footer */
 footer {
     background-color: var(--secondary);
     color: white;
     padding: 3rem 5%;
 }

 .footer-container {
     max-width: 1400px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 2rem;
 }

 .footer-col h3 {
     font-size: 1.2rem;
     margin-bottom: 1.5rem;
     position: relative;
     padding-bottom: 10px;
 }

 .footer-col h3::after {
     content: '';
     position: absolute;
     width: 50px;
     height: 2px;
     background-color: var(--accent);
     bottom: 0;
     left: 0;
 }

 .footer-col ul {
     list-style: none;
 }

 .footer-col ul li {
     margin-bottom: 0.8rem;
 }

 .footer-col ul li a {
     color: #ddd;
     text-decoration: none;
     transition: color 0.3s;
 }

 .footer-col ul li a:hover {
     color: white;
 }

 .social-links {
     display: flex;
     gap: 1rem;
     margin-top: 1rem;
 }

 .social-links a {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 40px;
     height: 40px;
     background-color: rgba(255, 255, 255, 0.1);
     border-radius: 50%;
     color: white;
     transition: background-color 0.3s;
 }

 .social-links a:hover {
     background-color: var(--accent);
 }

 .copyright {
     text-align: center;
     padding-top: 2rem;
     margin-top: 2rem;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
 }

 /* Cookie consent */
 .cookie-consent {
     position: fixed;
     bottom: 0;
     left: 0;
     right: 0;
     background-color: var(--dark);
     color: white;
     padding: 1rem 5%;
     display: flex;
     justify-content: space-between;
     align-items: center;
     z-index: 1000;
     transform: translateY(100%);
     transition: transform 0.3s ease-out;
 }

 .cookie-consent.show {
     transform: translateY(0);
 }

 .cookie-consent p {
     margin-right: 1rem;
     flex: 1;
 }

 .cookie-btn {
     background-color: var(--accent);
     color: white;
     border: none;
     padding: 0.5rem 1rem;
     border-radius: 5px;
     cursor: pointer;
     white-space: nowrap;
 }

 /* Responsive styles */
 @media (max-width: 992px) {
     .about-content {
         flex-direction: column;
     }

     .contact-container {
         flex-direction: column;
     }
 }

 @media (max-width: 768px) {
     nav ul {
         position: fixed;
         top: 80px;
         left: -100%;
         width: 100%;
         height: calc(100vh - 80px);
         background-color: white;
         flex-direction: column;
         align-items: center;
         justify-content: center;
         transition: left 0.5s ease;
         z-index: 999;
     }

     nav ul.active {
         left: 0;
     }

     nav ul li {
         margin: 1.5rem 0;
     }

     .burger {
         display: block;
     }

     .hero h1 {
         font-size: 2rem;
     }

     .hero p {
         font-size: 1rem;
     }

     section {
         padding: 3rem 5%;
     }
 }

 @media (max-width: 576px) {
     .header-container {
         padding: 1rem;
     }

     .hero {
         height: 70vh;
     }

     .hero-content {
         padding: 0 1rem;
     }

     .logo-text h1 {
         font-size: 1.2rem;
     }

     .section-title h2 {
         font-size: 1.5rem;
     }
 }

  .logo {
      text-decoration: none;
      display: inline-block;
    }

    .logo-text h1 {
      font-size: 20px;
      font-weight: bold;
      color: #222;
      margin: 0;
      letter-spacing: 1.5px;
      position: relative;
      transition: color 0.3s ease;
    }

    .logo-text h1::after {
      content: "";
      display: block;
      width: 60%;
      height: 4px;
      background: linear-gradient(to right, #6a11cb, #2575fc);
      margin: 4px auto 0;
      border-radius: 2px;
      transition: width 0.3s ease;
    }

    .logo:hover .logo-text h1 {
      color: #6a11cb;
    }

    .logo:hover .logo-text h1::after {
      width: 80%;
    }


     .services-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .services-section h2 {
      text-align: center;
      font-size: 36px;
      margin-bottom: 20px;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .service-card {
      background-color: white;
      border-radius: 16px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      overflow: hidden;
      transition: transform 0.3s ease;
    }

    .service-card:hover {
      transform: translateY(-5px);
    }

    .service-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .service-content {
      padding: 20px;
    }

    .service-content h3 {
      margin-top: 0;
      font-size: 22px;
      color: #2a2a2a;
    }

    .service-content p {
      font-size: 16px;
      color: #555;
    }

    .price {
      margin-top: 12px;
      font-weight: bold;
      color: #2575fc;
      font-size: 18px;
    }