/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Navigation Bar */
  .navbar {
    background-color: #1e90ff;
    color: #fff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .navbar .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
  }
  
  .navbar .logo span {
    color: #ffdd57;
  }
  
  .nav-menu {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
  }
  
  .nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  
  .nav-menu a:hover {
    color: #ffdd57;
  }
  
  /* Hero Section */
  .hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 0;
    background: linear-gradient(135deg, #1e90ff, #87cefa);
    color: #fff;
  }
  
  .hero-content {
    max-width: 600px;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-content .btn {
    background-color: #ffdd57;
    color: #333;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .hero-content .btn:hover {
    background-color: #ffd700;
  }
  
  .hero-animation img {
    max-width: 100%;
    animation: float 5s ease-in-out infinite;
  }
  
  @keyframes float {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }
  
  /* About Section */
  .about-section {
    padding: 3rem 0;
    background-color: #fff;
    text-align: center;
  }
  
  .about-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1e90ff;
  }
  
  .about-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
  }
  
  .about-features {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
  }
  
  .feature-item {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .feature-item:hover {
    transform: translateY(-10px);
  }
  
  .feature-item img {
    max-width: 60px;
    margin-bottom: 1rem;
  }
  
  .feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1e90ff;
  }
  
  /* Services Section */
  .services-section {
    padding: 3rem 0;
    background-color: #f1f1f1;
  }
  
  .services-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1e90ff;
  }
  
  .services-grid {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
  }
  
  .service-card {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
  }
  
  .service-card img {
    max-width: 80px;
    margin-bottom: 1rem;
  }
  
  .service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1e90ff;
  }
  
  /* Testimonials Section */
  .testimonials-section {
    padding: 3rem 0;
    background-color: #fff;
    text-align: center;
  }
  
  .testimonials-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1e90ff;
  }
  
  .testimonials-carousel {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
  }
  
  .testimonial-item {
    max-width: 300px;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .testimonial-item:hover {
    transform: scale(1.05);
  }
  
  .testimonial-item p {
    font-style: italic;
    margin-bottom: 1rem;
  }
  
  .testimonial-item h4 {
    font-weight: bold;
    color: #555;
  }
  
  /* CTA Section */
  .cta-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #1e90ff, #87cefa);
    color: #fff;
    text-align: center;
  }
  
  .cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
  
  .cta-section .btn {
    background-color: #ffdd57;
    color: #333;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .cta-section .btn:hover {
    background-color: #ffd700;
  }
  
  /* Footer Section */
  .footer-section {
    padding: 1rem 0;
    background-color: #333;
    color: #fff;
    text-align: center;
  }
  
  .footer-section p {
    font-size: 0.9rem;
  }
  
  /* Cookie Banner */
  .cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e90ff;
    color: #fff;
    padding: 1rem;
    text-align: center;
    display: none;
    z-index: 1000;
  }
  
  .cookie-banner .btn {
    background-color: #ffdd57;
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-left: 1rem;
    transition: background-color 0.3s ease;
  }
  
  .cookie-banner .btn:hover {
    background-color: #ffd700;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .hero-section {
      flex-direction: column;
      text-align: center;
    }
  
    .about-features,
    .services-grid {
      flex-direction: column;
    }
  
    .testimonials-carousel {
      flex-direction: column;
    }
  }

  /* Contact Form Styles */
.contact-section {
    padding: 3rem 0;
    background-color: #f9f9f9;
    text-align: center;
  }
  
  .contact-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1e90ff;
  }
  
  .contact-form {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .form-group {
    margin-bottom: 1.5rem;
    text-align: left;
  }
  
  .form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #555;
  }
  
  .form-group i {
    margin-right: 0.5rem;
    color: #1e90ff;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    border-color: #1e90ff;
    outline: none;
  }
  
  .contact-form .btn {
    display: inline-block;
    background-color: #1e90ff;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .contact-form .btn:hover {
    background-color: #0056b3;
  }

  /* Thank You Section Styles */
.thank-you-section {
    padding: 3rem 0;
    text-align: center;
    background-color: #f9f9f9;
  }
  
  .thank-you-content {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .thank-you-content h1 {
    font-size: 2.5rem;
    margin: 1rem 0;
    color: #1e90ff;
  }
  
  .thank-you-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
  }
  
  .thank-you-buttons .btn {
    margin: 0.5rem;
  }

  /* About Section */
.about-section {
    padding: 3rem 0;
    text-align: center;
    background-color: #f9f9f9;
  }
  
  .about-section h2 {
    font-size: 2.5rem;
    color: #1e90ff;
    margin-bottom: 1rem;
  }
  
  .about-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
  }
  
  .about-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  .feature-item {
    text-align: center;
    max-width: 300px;
  }
  
  .feature-item i {
    font-size: 3rem;
    color: #1e90ff;
    margin-bottom: 1rem;
  }
  
  .feature-item h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
  }
  
  .feature-item p {
    font-size: 1rem;
    color: #555;
  }
  
  /* Services Section */
  .services-section {
    padding: 3rem 0;
    background-color: #fff;
    text-align: center;
  }
  
  .services-section h2 {
    font-size: 2.5rem;
    color: #1e90ff;
    margin-bottom: 1rem;
  }
  
  .services-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  .service-card {
    text-align: center;
    max-width: 300px;
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  .service-card i {
    font-size: 3rem;
    color: #1e90ff;
    margin-bottom: 1rem;
  }
  
  .service-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
  }
  
  .service-card p {
    font-size: 1rem;
    color: #555;
  }