* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* Header styles */
header {
  background-color: #1a237e;
  color: white;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h1 {
  font-size: 24px;
  font-weight: 700;
}

.desktop-nav ul {
  display: flex;
  gap: 30px;
}

.desktop-nav a {
  font-size: 16px;
  transition: opacity 0.3s;
}

.desktop-nav a:hover {
  opacity: 0.8;
}

.burger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.line {
  width: 25px;
  height: 3px;
  background-color: white;
  transition: transform 0.3s, opacity 0.3s;
}

.mobile-nav {
  display: none;
  background-color: #1a237e;
  padding: 20px 0;
  text-align: center;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-nav.active {
  display: block;
}

/* Hero section */
.hero {
  background-image: url("../img/hero-bg.png");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 80px 0;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  max-width: 700px;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  margin-bottom: 20px;
  font-size: 16px;
}

.btn {
  display: inline-block;
  background-color: #1a237e;
  color: white;
  padding: 12px 25px;
  border: none;
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #0e1442;
}

/* About section */
.about {
  padding: 80px 0;
}

.success h2,
.policy__title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 28px;
}

.about-content {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
}

.about-image,
.about-text {
  flex: 1;
}

.about-text p {
  margin-bottom: 15px;
}

.stats {
  display: flex;
  justify-content: space-between;
  text-align: center;
  margin-top: 50px;
}

.stat-item {
  flex: 1;
  background-color: #1a237e;
  color: white;
  padding: 20px;
}

.stat-item h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.stat-item p {
  font-size: 14px;
}

/* Services section */
.services {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.services h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 28px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-item {
  background-color: white;
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.service-icon {
  margin-bottom: 20px;
}

.service-icon img {
  width: 60px;
  height: 60px;
}

.service-item h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

/* Approach section */
.approach {
  padding: 80px 0;
}

.approach-content {
  display: flex;
  gap: 40px;
}

.approach-image,
.approach-text {
  flex: 1;
}

.approach-text h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.approach-text p {
  margin-bottom: 15px;
}

/* Testimonials section */
.testimonials {
  padding: 80px 0;
  background-color: #1a237e;
  color: white;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 28px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.testimonial-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 5px;
}

.testimonial-author {
  text-align: right;
  font-weight: 600;
  margin-top: 15px;
}

/* Contact section */
.contact {
  padding: 80px 0;
}

.contact h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 28px;
}

.contact-info {
  text-align: center;
  margin-bottom: 40px;
}

.contact-info p {
  margin-bottom: 10px;
}

form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
}

textarea {
  min-height: 120px;
}

form .btn {
  width: 100%;
  font-size: 16px;
}

/* Footer */
footer {
  background-color: #1a237e;
  color: white;
  padding: 40px 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-links a {
  font-size: 14px;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 0.8;
}

/* Cookie popup */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  z-index: 9999;
  display: none;
}

.cookie-popup.show {
  display: block;
}

.cookie-popup h3 {
  text-align: center;
  margin-bottom: 15px;
  font-size: 20px;
}

.cookie-popup p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 20px;
}

.cookie-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.cookie-btn {
  flex: 0 0 auto;
  width: auto;
  min-width: 150px;
}

.accept-btn {
  background-color: #1a237e;
}

.refuse-btn {
  background-color: #333;
}

/* Media Queries */
@media (max-width: 992px) {
  .about-content,
  .approach-content {
    flex-direction: column;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats {
    flex-wrap: wrap;
  }

  .stat-item {
    flex: 0 0 calc(50% - 10px);
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .burger-menu {
    display: flex;
  }

  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 28px;
  }

  .about h2,
  .services h2,
  .testimonials h2,
  .contact h2,
  .approach-text h2 {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .stat-item {
    flex: 0 0 100%;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .cookie-buttons {
    flex-direction: column;
  }
}

.success,
.policy {
  padding-block: 60px;
  min-height: 80vh;
}

.success__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.policy__title {
  margin-bottom: 40px;
}

.policy__text {
  font-family: Poppins;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
  text-decoration-style: solid;
  text-decoration-thickness: 0%;
}

html {
  scroll-behavior: smooth;
}
