/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-content {
  background: #f5f5f5;
  padding: 40px;
  border-radius: 20px;
  max-width: 500px;
  text-align: left;
}

.cookie-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.cookie-content p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 30px;
  color: #666;
}

.cookie-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-accept {
  background: #2c3e50;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  letter-spacing: 1px;
  transition: background 0.3s ease;
}

.btn-accept:hover {
  background: #34495e;
}

.btn-learn {
  background: transparent;
  color: #333;
  border: none;
  padding: 15px 30px;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  letter-spacing: 1px;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.btn-learn:hover {
  color: #666;
}

.btn-center{
  margin: 0 auto;
  width: fit-content;
  display: flex;
  justify-content: center;
}

/* Header */
.header {
  background: #2196F3;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo a {
  font-size: 24px;
  font-weight: 700;
  color: white;
  text-decoration: none;
  letter-spacing: 2px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  background: #fff;
  padding: 32px 0 0;
  text-align: center;
}

.hero-content {
  border-radius: 28px;
  background: #F3F7F5;
  padding: 60px 0;
}

.blog-label {
  display: inline-block;
  background: #e3f2fd;
  color: #2196F3;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  color: #333;
  line-height: 1.2;
  max-width: 976px;
  margin: 0 auto;
}

.hero p {
  font-size: 16px;
  color: #666;

  line-height: 1.6;
  max-width: 976px;
  margin: 24px auto;
}

.btn-primary {
  border-radius: 40px;
  background: #161925;
  color: white;
  border: none;
  padding: 15px 30px;
  font-weight: 600;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s ease;
  text-decoration: none;
  display: block;
  width: fit-content;
}

.btn-primary:hover {
  background: #34495e;
}

.btn-secondary {
  background: transparent;
  color: #2c3e50;
  border: 2px solid #2c3e50;
  padding: 15px 30px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #2c3e50;
  color: white;
}

/* Features Section */
.features {
  padding: 60px 0;
  background: white;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.feature-main h2 {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  line-height: 1.3;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-number {
  font-size: 20px;
  font-weight: 700;
  color: #2196F3;
  min-width: 30px;
}

.feature-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.feature-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* About Section */
.about {}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  border-radius: 40px;
  border: 2px solid #F3F7F5;
  background: #FFF;
  box-shadow: 0 50px 200px -40px rgba(0, 0, 0, 0.06);
  padding: 30px;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.about-text h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.about-text p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

/* Verdict Section */
.verdict {
  padding: 80px 0;

}

.verdict h2 {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: #333;
}

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

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

.verdict-item {
  text-align: left;
  border-radius: 40px;
  border: 2px solid #F3F7F5;
  background: #FFF;
  box-shadow: 0 50px 200px -40px rgba(0, 0, 0, 0.06);
  padding: 30px;
}

.verdict-image {
  margin-bottom: 20px;
}

.verdict-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.verdict-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.verdict-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* CTA Section */
.cta {
  padding: 60px 0;

}

.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 40px;
  border: 2px solid #F3F7F5;
  background: #FFF;
  box-shadow: 0 50px 200px -40px rgba(0, 0, 0, 0.06);
  gap: 16px;
  padding: 30px;
}
.cta-image{
  width: 100%;
}

.cta-image img {
  width: 100%;
  /* height: 240px; */
  object-fit: cover;

}

@media(max-width:767px){
  .cta-image img {
    height: 240px;
  }
}

.cta-text h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
  line-height: 1.3;
}

.cta-text p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Newsletter Section */
.newsletter {
  padding: 60px 0;

  text-align: center;
}

.newsletter-content {

}

.newsletter h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.newsletter p {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.form-group input {
  width: 100%;
  padding: 15px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s ease;
  border-radius: 100px;
background: linear-gradient(0deg, #F3F7F5 0%, #F3F7F5 100%), #FFF;
  text-align: center;
}

.form-group input::placeholder{
  text-align: center;
}

.form-group input:focus {
  outline: none;
  border-color: #2196F3;
}

.newsletter-form button{
  width: 100%;
}

.contact-info {
  font-size: 14px;
  color: #999;
  line-height: 1.5;
}

.contact-info p {
  margin: 5px 0;
}

/* Footer */
.footer {
  background: #fff;
  color: #1E2131;
  padding: 40px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  border-top:1px solid #AABDB4;
  padding-top: 10px;
}

.footer-links {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-links a {
   color: #1E2131;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

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

.footer-copyright {
  font-size: 14px;
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: #2196F3;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 20px 0;
  }

  .nav-menu.active {
    left: 0;
  }

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

  .features-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .verdict-grid {
    grid-template-columns: 1fr;
  }

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

  .cookie-content {
    padding: 30px 20px;
    margin: 20px;
  }

  .cookie-content h3 {
    font-size: 24px;
  }

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

@media (max-width: 480px) {
  .hero {
    padding: 60px 0;
  }

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

  .features,
  .about,
  .verdict,
  .cta,
  .newsletter {
    padding: 60px 0;
  }

  .verdict h2,
  .newsletter h2 {
    font-size: 28px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    padding: 18px;
  }
}

.privacy {
  padding: 60px 0;
}
.container {
}
.privacy-title {
  color: #000;
text-align: center;
font-size: 48px;
font-weight: 800;
line-height: normal;
text-transform: uppercase;
margin-bottom: 40px;
}
.privacy-text {
  color: #04141D;
font-family: Inter;
font-size: 16px;
font-weight: 400;
}

.thank {
  padding: 60px 0;
}
.container {
}
.thank-title {
  color: #04141D;
text-align: center;
font-family: "DM Sans";
font-size: 48px;
font-style: normal;
font-weight: 700;
line-height: 110%; /* 52.8px */
letter-spacing: 1.92px;
}
.thank-text {
  color: #04141D;
text-align: center;
font-family: "DM Sans";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 110%; /* 17.6px */
letter-spacing: 0.64px;
margin: 32px 0;
}
.btn-primary {
}
.btn-center {
}