:root {
    --primary: #FCBA04;
    --secondary: #3A777E;
    --body-color: #383030;
    --inactive: #362f2f4b;
    --body-margin: 0 144px;
  }
  
  * {
    font-family: 'Montserrat', sans-serif;
    padding: 0;
    margin: 0;
    outline: none;
    color: var(--body-color);
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  .inactive {
    color: var(--inactive);
  }
  
  /* Typography */
  h1 {
    font-size: 48px;
    font-weight: 600;
  }
  
  h2 {
    font-size: 40px;
    font-weight: 400;
  }
  
  .body-h2 {
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
  }
  
  .body-h3 {
    font-size: 24px;
    font-weight: 400;
  }
  
  .body-large {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0.15px;
  }
  
  .body {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.5px;
  }
  
  .body-light {
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    letter-spacing: 0.5px;
  }
  
  /* Buttons */
.btn-primary, .btn-secondary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  height: 45px;
  min-width: 144px;
  line-height: 1.5;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-sizing: border-box;
}


.btn-primary {
  background-color: var(--primary);
  color: #ffffff;
  border: none;
  padding: 8px 16px;
}

.btn-secondary {
  background-color: white;
  color: var(--secondary);
  border: 2px solid var(--secondary);
  padding: 8px 16px;
  gap: 8px;
}

.btn-secondary img {
  margin-right: 8px;
}

.btn-primary:hover, .btn-secondary:hover {
  transform: translateY(-2px);
}
  /* Common */
  section {
    margin: 80px 144px;
  }
  
  /* Header */
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    width: 100%;
    padding: 16px 144px;
    box-sizing: border-box;
    margin: 0 auto;
  }
  
  .header-container nav {
    display: flex;
    gap: 32px;
  }
  
  .header-container nav a {
    text-decoration: none;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.5px;
    font-weight: 600;
    transition: color 0.3s ease;
  }
  
  .header-container nav a:hover {
    color: var(--primary);
  }
  
  /* Menu button (for mobile) */
  .menu-button-container {
    display: none;
    height: 100%;
    width: 30px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  #menu-toggle {
    display: none;
  }
  
  .menu-button,
  .menu-button::before,
  .menu-button::after {
    display: block;
    background-color: var(--body-color);
    position: absolute;
    height: 4px;
    width: 30px;
    transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 2px;
  }
  
  .menu-button::before {
    content: '';
    margin-top: -8px;
  }
  
  .menu-button::after {
    content: '';
    margin-top: 8px;
  }
  
  #menu-toggle:checked + .menu-button-container .menu-button::before {
    margin-top: 0px;
    transform: rotate(405deg);
  }
  
  #menu-toggle:checked + .menu-button-container .menu-button {
    background: rgba(255, 255, 255, 0);
  }
  
  #menu-toggle:checked + .menu-button-container .menu-button::after {
    margin-top: 0px;
    transform: rotate(-405deg);
  }
  
  /* Hero */
  .hero-container {
    display: flex;
    flex: 1;
    gap: 80px;
    width: 100%;
    margin-top: 16px;
  }
  
  .hero-text p:last-child {
    margin-top: 16px;
  }
  
  .hero-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
    justify-content: center;
  }
  
  .hero-text p:first-child {
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0.15px;
    font-weight: 300;
  }
  
  .hero-column img {
    max-width: 450px;
  }
  
  .hero-container .buttons {
    display: flex;
    flex: 1;
    gap: 32px;
  }
  
  /* Ticks Section */
  .ticks-section {
    background-color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 64px;
    padding: 16px;
  }
  
  .tick {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
  }
  
  .tick p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.1px;
    text-transform: uppercase;
  }
  
  .icon {
    width: 16px;
    height: 16px;
    background-color: white;
    mask: url('assets/check-single.svg') no-repeat center;
    mask-size: contain;
  }
  
  /* Values Section */
  .values-section {
    display: flex;
    flex-direction: column;
    gap: 48px;
  }
  
  .values-cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .values-card {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 12px;
    max-width: 250px;
  }
  
  /* Pricing */
  .wrapper-pricing {
    max-width: 1440px;
    margin: 0 auto;
  }
  
  .pricing-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .image-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
  }
  
  .pricing-section img {
    max-width: 100%;
    height: auto;
  }
  
  .pricing-column {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
  }
  
  .pricing-column h2 {
    margin-bottom: 32px;
  }
  
  .pricing-boxes {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
  }
  
  .pricing-caption {
    margin-top: 16px;
  }
  
  .pricing-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--secondary);
    border-radius: 16px;
    max-width: 100%;
    width: auto;
    padding: 12px 16px;
    transition: border-color 0.3s ease, transform 0.3s ease;
  }
  
  .pricing-box:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
  }
  
  .pricing-box div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }
  
  /* Opinions */
  .opinions-section {
    display: flex;
    flex-direction: column;
    flex: 1;
    background-color: var(--secondary);
    padding: 48px 144px;
    gap: 24px;
    justify-content: center;
    align-items: center;
  }
  
  .opinions-section p {
    color: #ffffff;
    text-align: center;
  }
  
  /* Where to find */
  .where-to-find {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 64px;
  }
  
  .where-to-find picture img {
    width: 90vw;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
  
  .contact-section {
    display: flex;
    gap: 124px;
  }
  
  .contact-data {
    display: flex;
    flex-direction: column;
    gap: 48px;
  }
  
  a.body-large {
    text-decoration: none;
    transition: 0.3s ease-in;
  }
  
  a.body-large:hover {
    color: var(--primary);
  }
  
  .adress-row .body-h2 {
    margin-bottom: 16px;
  }
  
  iframe {
    width: 90vw;
    max-width: 100%;
  }
  
  /* Footer */
  footer {
    padding: 16px 144px;
    background-color: var(--body-color);
    margin-left: auto;
    margin-right: auto;
  }
  
  .footer-main {
    display: flex;
    justify-content: space-between;
    align-content: center;
    margin-bottom: 8px;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .footer-links a,
  .footer-main p {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.1px;
  }
  
  .footer-links {
    display: flex;
    gap: 32px;
  }
  
  .copyright p {
    font-size: 12px;
    color: #ffffff;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Media Queries */
  @media screen and (min-width: 1440px) {
    .wrapper {
      display: flex;
      justify-content: center;
      align-items: center;
      max-width: 1440px;
      margin: 0 auto;
    }
  }
  
  @media screen and (max-width: 1024px) {
    :root {
      --body-margin: 0 72px;
    }
  
    section {
      margin: 60px 72px;
    }
  
    h1 {
      font-size: 40px;
    }
  
    h2 {
      font-size: 32px;
    }
  
    .body-h2 {
      font-size: 20px;
    }
  
    .hero-container {
      flex-direction: column;
      gap: 40px;
    }
  
    .opinions-section {
      padding: 40px 72px;
    }
  
    footer {
      padding: 16px 72px;
    }
  
    .menu-button-container {
      display: flex;
    }
  
    .header-container {
      margin: 0;
      padding: 16px;
    }
  
    .nav-links {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 60px;
      right: 0;
      background-color: white;
      width: 200px;
      box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
      padding: 16px;
      border-radius: 8px;
      z-index: 1000;
    }
  
    #menu-toggle:checked ~ .nav-links {
      display: flex;
    }
  
    .header-container nav {
      display: none;
    }
  }
  
  @media screen and (max-width: 768px) {
    :root {
      --body-margin: 0 24px;
    }
  
    section {
      margin: 40px 24px;
    }
  
    h1 {
      font-size: 32px;
    }
  
    h2 {
      font-size: 28px;
    }
  
    .body-h3 {
      font-weight: 300;
    }
  
    .body-h2 {
      font-size: 18px;
    }
  
    .body-large {
      font-size: 16px;
      font-weight: 500;
    }
  
    .image-container {
      text-align: center;
    }
  
    .hero-column img {
      margin-left: -16px;
    }
  
    .hero-container {
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
  
    .contact-section {
      justify-content: center;
      align-items: center;
      flex-direction: column;
      gap: 60px;
    }
  
    .contact-section iframe {
      width: 100%;
      height: 200px;
    }
  
    .wrapper {
      gap: 16px;
      max-width: 550px;
      margin: 0 auto;
    }
  
    .ticks-section {
      flex-direction: column;
      gap: 24px;
    }
  
    .values-section div p {
      margin-top: 8px;
    }
  
    .values-cards {
      flex-direction: column;
      gap: 48px;
    }
  
    .values-card {
      max-width: 100%;
    }
  
    .pricing-column h2 {
      margin-bottom: 16px;
    }
  
    .pricing-boxes {
      gap: 16px;
    }
  
    .pricing-section {
      flex-direction: column;
      align-items: center;
      padding: 0;
      gap: 16px;
    }
  
    .pricing-box object {
      width: 48px;
      height: 48px;
    }
  
    .pricing-box {
      gap: 12px;
      padding: 4px 8px;
    }
  
    .pricing-box div {
      gap: 8px;
    }
  
    .opinions-section {
      padding: 32px 24px;
    }
  
    .where-to-header h2 {
      margin-bottom: 8px;
    }

    .contact-section {
        gap: 60px;
        flex-direction: column;
    }

    .contact-data {
        gap: 16px;
    }

    .adress-row .body-h2 {
        margin-bottom: 8px;
    }
 

    footer {
        padding: 16px 24px;
        
    }

    .footer-main {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 16px;
    }

    .footer-links {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 16px;
    }

    .copyright p {
        font-size: 8px;
        text-align: center;
        margin-top: 16px;
    
    }
}










