/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f9;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  h1, h2, h3, h4 {
    color: #222;
  }
  
  p {
    margin: 10px 0;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  img {
    max-width: 100%;
    display: block;
  }
  
  /* Buttons */
  .btn {
    display: inline-block;
    padding: 10px 20px;
    background: #2575fc;
    color: #fff;
    font-weight: bold;
    border-radius: 5px;
    text-align: center;
    transition: background 0.3s ease, transform 0.2s ease;
  }
  
  .btn:hover {
    background: #1e63d6;
    transform: translateY(-3px);
  }
  
  /* Hero Section */
  .hero {
    background: linear-gradient(to right, #6a11cb, #2575fc);
    color: #fff;
    text-align: center;
    padding: 100px 20px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
  
  .hero .btn {
    font-size: 1rem;
    padding: 15px 30px;
  }
  
  /* About Section */
  .about {
    background: #fff;
    padding: 50px 20px;
    text-align: center;
  }
  
  .about h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .feature {
    flex: 1;
    max-width: 300px;
    background: #f4f4f9;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
  }
  
  .feature:hover {
    transform: translateY(-5px);
  }
  
  .feature img {
    max-width: 80px;
    margin-bottom: 15px;
  }
  
  .feature h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
  }
  
  /* Services Section */
  .services {
    background: #f4f4f9;
    padding: 50px 20px;
    text-align: center;
  }
  
  .services h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .service-list {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .service {
    flex: 1;
    max-width: 300px;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .service:hover {
    transform: translateY(-5px);
  }
  
  .service img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
  }
  
  .service h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
  }
  
  /* Testimonials Section */
  .testimonials {
    background: #2575fc;
    color: #fff;
    padding: 50px 20px;
    text-align: center;
  }
  
  .testimonials h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .testimonial-list {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .testimonial {
    flex: 1;
    max-width: 300px;
    background: #1e63d6;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }
  
  .testimonial p {
    font-style: italic;
    margin-bottom: 15px;
  }
  
  .testimonial h4 {
    font-size: 1rem;
    font-weight: bold;
  }
  
  /* Blog Section */
  .blog {
    background: #fff;
    padding: 50px 20px;
    text-align: center;
  }
  
  .blog h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .blog-posts {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .blog-post {
    flex: 1;
    max-width: 300px;
    background: #f4f4f9;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .blog-post:hover {
    transform: translateY(-5px);
  }
  
  .blog-post img {
    border-radius: 10px;
    margin-bottom: 15px;
  }
  
  .blog-post h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
  }
  
  .blog-post .btn {
    margin-top: 10px;
  }
  
  /* Call-to-Action Section */
  .cta {
    background: linear-gradient(to right, #6a11cb, #2575fc);
    color: #fff;
    text-align: center;
    padding: 50px 20px;
  }
  
  .cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
  
  .cta .btn {
    font-size: 1rem;
    padding: 15px 30px;
  }
  
  /* Contact Section */
  .contact {
    background: #f4f4f9;
    padding: 50px 20px;
    text-align: center;
  }
  
  .contact h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .contact form {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .form-group {
    margin-bottom: 15px;
    text-align: left;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 5px;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
  }
  
  button.btn {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: #2575fc;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  button.btn:hover {
    background: #1e63d6;
  }
  
  /* Footer */
  .footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 10px 0;
  }
  
  .footer p {
    font-size: 0.9rem;
  }

  /* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f4f4f9;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

h1, h2, h3, h4 {
  color: #222;
}

p {
  margin: 10px 0;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, #6a11cb, #2575fc);
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
}

/* Mission Section */
.mission {
  background: #fff;
  padding: 50px 20px;
  text-align: center;
}

.mission h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

/* Values Section */
.values {
  background: #f4f4f9;
  padding: 50px 20px;
}

.values h2 {
  text-align: center;
  margin-bottom: 20px;
}

.value-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.value {
  flex: 1;
  max-width: 300px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

/* Team Section */
.team {
  background: #fff;
  padding: 50px 20px;
  text-align: center;
}

.team-members {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.member {
  flex: 1;
  max-width: 300px;
}

/* Testimonials Section */
.testimonials {
  background: #2575fc;
  color: #fff;
  padding: 50px 20px;
  text-align: center;
}

.testimonial-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.testimonial {
  flex: 1;
  max-width: 300px;
  background: #1e63d6;
  padding: 20px;
  border-radius: 10px;
}

/* Call-to-Action Section */
.cta {
  background: linear-gradient(to right, #6a11cb, #2575fc);
  color: #fff;
  text-align: center;
  padding: 50px 20px;
}

.cta .btn {
  padding: 15px 30px;
  background: #fff;
  color: #2575fc;
  border-radius: 5px;
  text-decoration: none;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #2575fc;
  color: #fff;
  padding: 15px;
  text-align: center;
  z-index: 1000;
  display: none;
}

.cookie-banner p {
  display: inline-block;
  margin: 0;
  font-size: 0.9rem;
}

.cookie-banner .btn {
  margin-left: 10px;
  padding: 8px 15px;
  background: #fff;
  color: #2575fc;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.cookie-banner .btn:hover {
  background: #e4e4e4;
}

.main-header {
  background: #2575fc;
  color: #fff;
  padding: 10px 0;
}

.main-header .nav-links {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-header .nav-links li {
  margin: 0 15px;
}

.main-header .nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
}

.main-header .nav-links a:hover {
  text-decoration: underline;
}