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

:root {
  --primary-color: #1a6658;
  --primary-dark: #0f4e42;
  --secondary-color: #f9862f;
  --secondary-dark: #e07922;
  --text-color: #333333;
  --light-text: #ffffff;
  --gray-bg: #f5f5f5;
  --border-color: #e0e0e0;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

ul {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  margin-bottom: 1rem;
  line-height: 1.3;
}

h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.2rem;
  font-weight: 600;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  border: none;
  font-family: "Montserrat", sans-serif;
}

.primary-btn {
  background-color: var(--secondary-color);
  color: var(--light-text);
}

.primary-btn:hover {
  background-color: var(--secondary-dark);
}

.outlined {
  border: 2px solid var(--primary-color);
  background: transparent;
  color: var(--primary-color);
}

.outlined:hover {
  background-color: var(--primary-color);
  color: var(--light-text);
}

.section-title {
  text-align: center;
  color: #0f4e42;
  margin-bottom: 3rem;
}

/* Header Styles */
.header {
  background-color: var(--primary-color);
  color: var(--light-text);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo img {
  height: 40px;
}

.main-nav .nav-list {
  display: flex;
}

.nav-list li {
  margin-left: 30px;
}

.nav-list a {
  color: var(--light-text);
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-list a:hover {
  color: var(--secondary-color);
}

.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.mobile-nav-toggle span {
  width: 100%;
  height: 3px;
  background-color: var(--light-text);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  background-color: var(--primary-color);
  color: var(--light-text);
  padding: 80px 0;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Signup Form */
.signup-form {
  padding: 60px 0;
  background-color: var(--secondary-color);
  color: var(--light-text);
}

.form-container {
  max-width: 500px;
  margin: 0 auto;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.contact-form input {
  padding: 12px 15px;
  border: none;
  border-radius: 5px;
  font-family: "Montserrat", sans-serif;
}

.form-submit-btn {
  margin-top: 10px;
  background-color: #0f4e42 !important;
  color: #fff !important;
}

/* Features Section */
.features {
  padding: 60px 0;
  background-color: var(--primary-color);
  color: var(--light-text);
}

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

.feature-item {
  text-align: center;
  padding: 20px;
}

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

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

/* Services Section */
.services {
  padding: 80px 0;
  background-color: var(--light-text);
}

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

.service-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-item h3,
.service-item p {
  padding: 0 20px;
}

.service-item h3 {
  margin-top: 20px;
}

.service-item p {
  padding-bottom: 20px;
}

/* Authentic Section */
.authentic-section {
  padding: 80px 0;
  background-color: var(--gray-bg);
}

.authentic-content h2 {
  color: var(--primary-color);
  margin-bottom: 40px;
}

.authentic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

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

.authentic-image img {
  width: 100%;
  border-radius: 8px;
}

.feature-highlight {
  margin-bottom: 30px;
}

.feature-highlight h3 {
  color: var(--primary-color);
}

.rating {
  display: flex;
  margin-top: 15px;
}

.star {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 5px;
  background: url("./img/star-empty.png") no-repeat center/cover;
}

.star.filled {
  background: url("./img/star-filled.png") no-repeat center/cover;
}

/* Intelligence Section */
.intelligence-section {
  padding: 80px 0;
  background-color: var(--light-text);
  color: var(--text-color);
}

.intelligence-content h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.benefits-list {
  margin: 30px 0;
}

.benefits-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}

.benefits-list li:before {
  content: "✓";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

.intelligence-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.intelligence-images img {
  border-radius: 8px;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Footer */
.footer {
  background-color: var(--primary-color);
  color: var(--light-text);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.footer-logo p {
  margin-top: 15px;
}

.footer h3 {
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer a:hover {
  color: var(--secondary-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
}

/* Cookie Notification */
.cookie-notification {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary-color);
  color: var(--light-text);
  z-index: 999;
  padding: 20px;
  display: none;
}

.cookie-content {
  max-width: 1000px;
  margin: 0 auto;
}

.cookie-content h2 {
  margin-bottom: 15px;
}

.cookie-content p {
  margin-bottom: 10px;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.cookie-btn {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
  h1 {
    font-size: 2.4rem;
  }

  h2 {
    font-size: 1.8rem;
  }

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

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  .mobile-nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    padding: 20px;
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .main-nav.active {
    transform: translateY(0);
  }

  .nav-list {
    flex-direction: column;
  }

  .nav-list li {
    margin: 15px 0;
    margin-left: 0;
  }

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

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

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

@media (max-width: 576px) {
  h1 {
    font-size: 1.8rem;
  }

  .hero {
    padding: 60px 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .intelligence-images {
    grid-template-columns: 1fr;
  }

  .cookie-notification {
    overflow-y: auto;
    max-height: 80vh;
  }
}

html {
  scroll-behavior: smooth;
}

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

.policy__text {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0%;
}
