* {
  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;
  }
}

.Real-Time-Calendar {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  margin-top: 50px;
}

.calendar {
  width: 140px;
  height: auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  animation: fadeIn 1s ease-in-out;
}

.calendar-header {
  background-color: black;
  color: white;
  padding: 10px;
  text-align: center;
  font-size: 1em;
  text-transform: uppercase;
  font-weight: 700;
}

.calendar-body {
  padding: 10px;
  text-align: center;
}

.day {
  font-size: 1em;
  color: black;
  margin-bottom: 5px;
}

.date {
  font-size: 3em;
  font-weight: bold;
  color: black;
  line-height: 1;
  animation: popIn 0.6s 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) both;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.Page1 {
  display: flex;
  flex-direction: column;
  justify-self: center;
  align-items: center;
  text-align: center;
  padding: 20px 50px;
}

.Sub-Heading1 {
  font-size: 15px;
  font-weight: 600;
}

.Heading1 {
  font-size: 40px;
}

.Sub-Heading2 {
  font-size: 18px;
  font-weight: 600;
  max-width: 350px;
  margin-top: 10px;
}

.Page1 a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  height: 40px;
  width: 200px;
  background-color: black;
  color: white;
  padding: 10px;
  border-radius: 10px;
  margin-top: 20px;
  transform: all ease 0.5s;
}

.Page1 a:hover {
  background-color: rgb(38, 38, 38);
}

@media only screen and (max-width: 500px) {
  .Sub-Heading2 {
    font-size: 13px;
    max-width: 300px;
  }
}

.Heading2 {
  font-size: 25px;
  margin-top: 50px;
  margin-bottom: 20px;
}

@media only screen and (max-width: 640px) {
  .Heading2 {
    font-size: 12px;
  }
}

.Page2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 90px;
}

@media only screen and (max-width: 600px) {
  .Page2 {
    padding: 0;
  }
}

.Time-Management {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0 auto;
}

.Box1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #f6f5f4;
  width: 100%;
  max-width: 1200px;
  padding: 30px 0 0 30px;
  border-radius: 20px;
  border: 2px solid #f6f5f4;
}

.Sub-Heading3 p {
  font-size: 23px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: left;
}

.Box1 img {
  width: 100%;
  height: auto;
  border-bottom-right-radius: 20px;
  transform: translateX(-30px);
}

@media only screen and (min-width: 300px) and (max-width: 690px) {
  .Time-Management {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px;
    margin: 0 auto;
  }

  .Box1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f6f5f4;
    width: 90%;
    padding: 15px 0 0 15px;
    border-radius: 20px;
    border: 2px solid #f6f5f4;
  }

  .Sub-Heading4 p {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: left;
  }

  .Box1 img {
    width: 100%;
    height: auto;
    border-bottom-right-radius: 20px;
    transform: translateX(-15px);
  }
}

.Containers {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
  box-sizing: border-box;
}

.Box2 {
  width: 500px;
  height: auto;
  background-color: #f6f5f4;
  border: 2px solid #f6f5f4;
  padding: 20px;
  border-radius: 15px;
  padding-bottom: 10px;
}

.Box3 {
  background-color: #f6f5f4;
  border: 2px solid #f6f5f4;
  width: 500px;
  height: auto;
  padding: 20px;
  border-radius: 15px;
  padding-bottom: 10px;
}

.AI-Notes-Image,
.Enterprise-Search-Image {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.AI-Meet-img,
.Enterprise-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.Sub-Heading4,
.Sub-Heading5 {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 20px;
}

.Sub-Heading4 i {
  color: rgb(255, 65, 65);
}

.Sub-Heading5 i {
  color: rgb(32, 32, 252);
}

.AI-Notes-Image,
.Enterprise-Search-Image {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  margin-top: 20px;
}

@media only screen and (min-width: 520px) and (max-width: 1040px) {
  .Containers {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: 50px;
    box-sizing: border-box;
  }
}

@media only screen and (max-width: 520px) {
  .Containers {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
    box-sizing: border-box;
  }

  .Box2 {
    min-width: 300px;
    width: 85%;
    height: auto;
    background-color: #f6f5f4;
    border: 2px solid #f6f5f4;
    padding: 20px;
    border-radius: 15px;
    padding-bottom: 10px;
  }

  .Box3 {
    background-color: #f6f5f4;
    border: 2px solid #f6f5f4;
    min-width: 300px;
    width: 85%;
    height: auto;
    padding: 20px;
    border-radius: 15px;
    padding-bottom: 10px;
  }

  .Sub-Heading4,
  .Sub-Heading5 {
    font-size: 12px;
    gap: 15px;
    font-weight: 700;
  }
}
.Page3 {
  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;
  }
}

.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;
}
