@import url(https://fonts.googleapis.com/css?family=Montserrat:100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic);
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}
.break {
  word-break: break-all;
}
a,
button {
  text-align: center;
  width: fit-content;
  cursor: pointer;
  background: transparent;
  transition: all 0.2s linear;
  border: none;
}
button:focus,
a:focus {
  outline: 4px solid #fff;
  filter: brightness(90%);
}
@media (hover: hover) {
  button:hover,
  a:hover {
    filter: brightness(80%);
  }
}
.p0 {
  padding: 0 !important;
}
textarea,
input {
  display: block;
  width: 100%;
  border: none;
  outline: none;
  resize: none;
}

main {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
:root {
  scroll-behavior: smooth;
}

.mob {
  display: none;
}
@media (max-width: 768px) {
  .mob {
    display: block !important;
  }
  .desktop {
    display: none !important;
  }
}
body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  font-family: "Montserrat", sans-serif;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* terms */
.terms {
  flex-grow: 1;
  padding-block: 50px;
}

.terms__title {
  color: #2a223e;
  text-align: center;
  font-family: Montserrat;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%; /* 39.6px */
  letter-spacing: -0.72px;
  margin-bottom: 48px;
}
.terms.cookie a {
  word-break: break-all;
}
.terms a {
  text-decoration: underline;
  color: #2a223e;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
}
.terms p {
  color: #2a223e;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
}
@media (max-width: 768px) {
  .terms__title {
    font-size: 32px;
  }
}
/* cookie */
.cookie-notification {
  position: fixed;
  bottom: 0;
  box-sizing: border-box;
  z-index: 5;
  width: 100%;
  padding: 32px 17px;
  max-width: 587px;
  right: 0;
  text-align: center;
  border-radius: 24px;
  background: #f7f7f7;
  display: none;
}

.cookie__title {
  color: #2a223e;

  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%; /* 39.6px */
  letter-spacing: -0.72px;
  margin-bottom: 16px;
}

.cookie__text a {
  color: #2a223e;

  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
  text-decoration: underline;
}
.cookie__text {
  color: #2a223e;

  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
  margin-bottom: 32px;
}

.cookie__btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookieBtn {
  display: block;
  color: #fff;
  text-align: center;
  leading-trim: both;
  text-edge: cap;

  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 19.2px */
  width: 100%;
  border-radius: 30px;
  background: #2a223e;
  padding: 16px;
}
.cookieBtn:last-child {
  background: transparent;
  color: #000;
}
@media (max-width: 650px) {
  .cookie-notification {
    padding: 32px 0px;
    max-width: initial;
    right: 0;
    border-radius: 0;
  }
  .cookie__title {
    font-size: 28px;
  }
}
:root {
  --primary-color: #272143;
  --white: #ffffff;
  --light-gray: #f5f5f5;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #333;
}

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

/* Typography */
h1,
h2,
h3,
h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

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

/* Buttons */
.btn {
  display: inline-block;
  background-color: transparent;
  color: var(--primary-color);
  padding: 10px 20px;
  border: 1px solid var(--primary-color);
  border-radius: 25px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

/* Header */
header {
  background-color: var(--white);
  padding: 20px 0;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
}

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

.nav-links a {
  font-weight: 500;
}

.burger-menu {
  display: none;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 5px 0;
  transition: 0.4s;
}

/* Hero Section */
.hero {
  padding: 60px 0;
}

.hero h1 {
  max-width: 800px;
}

.hero p {
  max-width: 700px;
  margin-bottom: 30px;
}

.hero-image {
  margin-top: 30px;
  border-radius: 8px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Friction Section */
.friction {
  padding: 60px 0;
  background-color: var(--light-gray);
}

.friction-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.friction-image {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
}

.friction-image img {
  width: 100%;
  height: auto;
  display: block;
}

.friction-text {
  flex: 1;
}

.friction-text .btn {
  margin: 15px 0 20px 0;
}

.audience-list p {
  margin-bottom: 5px;
}

/* Coaching Section */
.coaching {
  padding: 60px 0;
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
}

.coaching h2 {
  color: var(--white);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.coaching p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Client Types Section */
.client-types {
  padding: 40px 0;
}

.client-types .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.client-type {
  flex: 1;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 25px;
  border-radius: 5px;
}

.client-type h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0;
}

/* Session Info Section */
.session-info {
  padding: 40px 0;
  text-align: center;
}

.session-info p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Business Support Section */
.business-support {
  padding: 60px 0;
  background-color: var(--light-gray);
}

.support-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.support-image {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
}

.support-image img {
  width: 100%;
  height: auto;
  display: block;
}

.support-text {
  flex: 1;
}

.support-text .btn {
  margin: 15px 0 20px 0;
}

/* Team Section */
.team {
  padding: 60px 0;
  text-align: center;
}

.team h2,
.team > p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

.team-members {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.team-member {
  flex: 1;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 25px;
  border-radius: 10px;
}

.team-member img {
  margin-inline: auto;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.team-member h3,
.team-member p {
  color: var(--white);
  margin-bottom: 10px;
}

.team-member p {
  font-size: 0.9rem;
}

/* Pricing Section */
.pricing {
  padding: 60px 0;
  background-color: var(--light-gray);
}

.pricing h2,
.pricing > p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-plans {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
}

.pricing-plan {
  flex: 1;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 25px;
  border-radius: 5px;
}

.pricing-plan h3,
.pricing-plan h4 {
  color: var(--white);
}

.pricing-plan h4 {
  font-size: 0.9rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.pricing-plan p {
  font-size: 0.9rem;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 25px;
}

/* Contact Form Section */
.contact {
  padding: 60px 0;
  background-color: var(--primary-color);
  color: var(--white);
}

.contact h2 {
  color: var(--white);
  text-align: center;
  margin-bottom: 40px;
}

form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 5px;
}

input {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px;
}

form .btn {
  display: block;
  margin: 20px auto 0;
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

form .btn:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

/* Footer */
footer {
  padding: 30px 0;
  background-color: var(--primary-color);
  color: var(--white);
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-links a {
  background-color: var(--white);
  color: var(--primary-color);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
}

.copyright {
  text-align: center;
  font-size: 0.9rem;
}

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

  .friction-content,
  .support-content {
    flex-direction: column;
  }

  .client-types .container,
  .team-members,
  .pricing-plans {
    flex-direction: column;
  }

  .team-member,
  .pricing-plan {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .burger-menu {
    display: block;
    z-index: 1000;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: var(--primary-color);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 999;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    margin: 20px 0;
  }

  .nav-links a {
    color: var(--white);
    font-size: 1.2rem;
  }

  .bar.change:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .bar.change:nth-child(2) {
    opacity: 0;
  }

  .bar.change:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }
}

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

  h2 {
    font-size: 1.5rem;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
  }
}
/* Thank You Page */
.thank-you {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 80px 0;
  text-align: center;
}

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

.thank-you h1 {
  margin-bottom: 20px;
}

.thank-you p {
  margin-bottom: 40px;
}

.thank-you .btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 30px;
  border: 1px solid var(--primary-color);
  margin-top: 20px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.thank-you .btn:hover {
  background-color: var(--primary-color);
  color: var(--white);
}
