* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  background-color: white;
}

header {
  background-color: white;
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-brand,
.nav-actions-container {
  flex: 1;
}

.nav-actions-container {
  display: flex;
  justify-content: flex-end;
}

.nav-brand a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: black;
  font-weight: bold;
  font-size: 20px;
}

.nav-brand a img {
  height: 30px;
  width: auto;
}

.desktop-nav {
  display: flex;
}

.nav-links ul,
.nav-actions ul {
  list-style-type: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links ul li a,
.nav-actions ul li a {
  color: #37352f;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 12px;
  display: block;
  transition: background-color 0.3s ease-in-out;
  border-radius: 5px;
}

.nav-links ul li a:hover,
.nav-actions ul li a:hover {
  background-color: #f0f0f0;
}

#Get-Notion {
  background-color: #0075de;
  color: white;
}

#Get-Notion:hover {
  background-color: #005cb3;
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  font-size: 20px;
}

.mobile-nav {
  display: none;
  background-color: white;
  padding: 10px 20px 20px;
  border-top: 1px solid #eee;
}

.mobile-nav ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mobile-nav ul li a {
  display: block;
  padding: 12px 15px;
  text-decoration: none;
  color: #37352f;
  font-weight: 500;
  border-radius: 5px;
}

.mobile-nav ul li a:hover {
  background-color: #f0f0f0;
}

.mobile-nav #Get-Notion {
  text-align: center;
  margin-top: 10px;
}

@media (max-width: 1050px) {
  .desktop-nav {
    display: none;
  }

  .mobile-nav-toggle {
    display: block;
  }

  .nav-links {
    flex: 0;
  }
}

.Page1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.Heading1,
.Heading2 {
  font-size: 40px;
  text-align: center;
  max-width: 650px;
  line-height: 1.1;
  margin: 20px 0;
}

@media only screen and (max-width: 730px) {
  .Heading1 {
    display: none;
  }
}

@media only screen and (min-width: 730px) {
  .Heading2 {
    display: none;
  }
}

@media only screen and (width: 730px) {
  .Heading1 {
    display: none;
  }

  .Heading2 {
    display: flex;
  }
}

.pricing-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  margin-left: 10px;
  margin-right: 10px;
}

.pricing-plan {
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 56px 15px 15px 15px;
  background-color: white;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-plan.recommended {
  border: 2px solid #0075de;
  padding-top: 3.5rem;
}

.recommended-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #0075de;
  color: white;
  padding: 0.3rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 0 0 8px 8px;
  width: fit-content;
}

.plan-title {
  font-size: 1.25rem;
  font-weight: 600;
}

.plan-price {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 0.5rem;
}

.plan-price span {
  font-size: 1rem;
  font-weight: 400;
  color: #6c757d;
}

.plan-description {
  margin: 1rem 0;
  min-height: 60px;
}

.plan-button {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
}

.btn-outline {
  background-color: white;
  color: #343a40;
  border: 1px solid #dee2e6;
}

.btn-outline:hover {
  background-color: #f8f9fa;
}

.btn-filled {
  background-color: #0075de;
  color: var(--white);
  border: 1px solid #0075de;
}

.btn-filled:hover {
  opacity: 0.9;
}

.features-title {
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.feature-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.feature-list li svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: #28a745;
  margin-right: 0.75rem;
  margin-top: 4px;
}

.ai-section {
  border: 1px solid #dee2e6;
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: auto;
}

.ai-title {
  display: flex;
  align-items: center;
  font-weight: 600;
  margin-bottom: 1rem;
}

.ai-title svg {
  width: 18px;
  height: 18px;
  margin-right: 0.5rem;
  color: #0075de;
}

.beta-tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: #6c757d;
  background-color: #e9ecef;
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  margin-left: 0.5rem;
}

@media (min-width: 768px) {
  .Page1 {
    padding: 25px;
  }

  .pricing-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .Page1 {
    padding: 50px;
  }

  .pricing-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

.site-footer {
  background-color: #ffffff;
  padding: 45px 0 20px;
  font-size: 15px;
  font-weight: 600;
  line-height: 24px;
  color: #26272b;
  text-align: center;
  border-top: 1px solid #e9e9e9;
  margin-top: 100px;
}

.social-icons {
  margin-bottom: 20px;
}

.social-icons a {
  display: inline-block;
  width: 44px;
  height: 44px;
  line-height: 44px;
  margin: 0 8px;
  border-radius: 100%;
  background-color: #f0f0f0;
  font-size: 20px;
  color: #555555;
  transition: all 0.3s ease-in-out;
}

.social-icons a:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-icons a:hover.facebook {
  background-color: #1877f2;
  color: #fff;
}

.social-icons a:hover.x-twitter {
  background-color: #000000;
  color: #fff;
}

.social-icons a:hover.instagram {
  background: #d6249f;
  background: radial-gradient(circle at 30% 107%,
      #fdf497 0%,
      #fdf497 5%,
      #fd5949 45%,
      #d6249f 60%,
      #285aeb 90%);
  color: #fff;
}

.social-icons a:hover.youtube {
  background-color: #ff0000;
  color: #fff;
}

.social-icons a:hover.linkedin {
  background-color: #0a66c2;
  color: #fff;
}

.copyright-text {
  margin: 0;
}

.Page2 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: #333;
  margin: 0;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

.faq-container {
  width: 100%;
  max-width: 800px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}

h1 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  color: #1a1a1a;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
  padding: 1.5rem 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 500;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding: 0 1rem;
  line-height: 1.6;
  color: #555;
}

.faq-answer.active {
  padding: 1rem;
  max-height: 300px;
  transition: max-height 0.4s ease-in, padding 0.4s ease-in;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-icon.active {
  transform: rotate(45deg);
}

@media (max-width: 600px) {
  .faq-container {
    padding: 1.5rem;
  }

  h1 {
    font-size: 2rem;
  }

  .faq-question {
    font-size: 1rem;
  }
}