* {
  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 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  background-color: white;
  margin: 0;
  padding: 60px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr; 
  gap: 60px;
  width: 100%;
  max-width: 1100px;
}

.left-column {
  padding-right: 20px;
}

.left-column h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 16px;
}

.left-column p {
  font-size: 16px;
  line-height: 1.5;
  max-width: 400px;
}

.logos-section {
  margin-top: 40px;
}

.logos-section span {
  font-size: 14px;
  color: #5a5a5a;
}

.logos {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 16px;
}

.logos img {
  height: 24px;
}

.testimonial {
  margin-top: 40px;
  background-color: #fff;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #e9e9e7;
}

.testimonial .openai-logo {
  font-size: 24px;
  font-weight: bold;
}

.testimonial blockquote {
  font-size: 18px;
  line-height: 1.6;
  margin: 16px 0;
  border-left: 3px solid #e9e9e7;
  padding-left: 20px;
}

.testimonial .author {
  font-size: 14px;
  font-weight: 600;
}

.testimonial .author span {
  display: block;
  font-weight: 400;
  color: #5a5a5a;
}

.right-column {
  width: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.form-group label span {
  color: #e03e3e;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #dcdbd9;
  border-radius: 6px;
  font-size: 16px;
  box-sizing: border-box; 
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.checkbox-group input {
  margin-right: 10px;
}

.checkbox-group label {
  font-size: 14px;
  font-weight: 400;
}

.submit-btn {
  width: 100%;
  background-color: black;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 20px;
  transition: background-color 0.2s;
}

.submit-btn:hover {
  background-color: #2c2c2a;
}

.disclaimer {
  font-size: 12px;
  color: #5a5a5a;
  margin-top: 16px;
  text-align: center;
}

.disclaimer a {
  color: #37352f;
  text-decoration: underline;
}

@media (min-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
  }
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .Page1 {
    padding: 40px 30px;
  }

  .left-column {
    padding-right: 0;
  }

  .left-column h1 {
    font-size: 38px; 
  }

  .logos {
    flex-wrap: wrap; 
  }
}
.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;
}
.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;
}
