/* CSS reset here */

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin-block-end: 0;
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
  background-color: #f0fdf9;
  font-family: 'Inter', sans-serif;
  display: flex;
  flex-direction: column;
}

/* Set shorter line heights on headings and interactive elements */
h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
  text-decoration-line: none;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

/* Header */
.header {
  padding: 40px 32px;
}
.img-logo {
  max-width: 120px;
  max-height: 40px;
  width: auto;
  height: auto;
}

/* Main */
.main {
  padding: 120px 30px 100px 80px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.leftSide {
  flex: 1;
  min-width: 415px;
  max-width: 480px;
  display: flex;
  flex-direction: column;
}
.rightSide {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}

.responsive-img {
  width: 100%;
  height: auto;
  max-width: 900px;
}

/* Buttons */
.buttons-container {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 50px;
}
.left-btn,
.right-btn {
  font-size: 16px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 18px;
  gap: 6px;
  border-radius: 4px;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
}
.left-btn {
  background: #0a2926;
  border: 1px solid #0a2926;
  box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
  color: #99f6e0;
}
.right-btn {
  background: #f6fefc;
  border: 1px solid #d0d5dd;
  box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
  color: #125d56;
}

/* Footer */
.footer {
  padding: 20px 32px;
  margin-top: auto;
  display: flex;
  width: 100%;
  border-top: 1px solid #EAECF0;
}

.leftFooter {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: left;
  font-size: 12px;
  color: #667085;
  line-height: 1.8;
}
.rightFooter {
  flex: 1;
  display: flex;
  justify-content: right;
  font-size: 12px;
  color: #98A2B3;
  margin-top: auto;
}

/* Typography */
.title {
  color: #101828;
  font-weight: 600;
  font-size: 36px;
}
.description {
  font-size: 20px;
  font-weight: 100;
  color: #475467;
  margin-top: 24px;
}
.highlight {
  font-weight: 600;
}

ul {
  list-style-type: none;
  display: flex;
  gap: 0px 30px;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

li a:hover {
  /* text-shadow: 1px 1px rgba(0,0,0,0.05); */
    color: #0A2926;
}

a {
  text-decoration-line: none;
}

@media only screen and (max-width: 1200px) {
  .main {
    padding: 60px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .title {
    text-align: center;
  }
  .description {
    text-align: center;
  }
  .left-btn,
  .right-btn {
    font-size: 13px;
  }
  .leftSide {
    min-width: 365px;
    width: 70%;
    max-width: none;
  }
  .buttons-container {
    display: flex;
    flex-direction: row;
    gap: 12px;
    margin-top: 50px;
    align-self: center;
  }
    }

  
@media only screen and (max-width: 768px) {

  .header {
    padding: 20px 16px;
  }
  .main {
    padding: 60px 30px;
    display: flex;
    flex-direction: column;
  }
  .title {
    font-size: 30px;
    text-align: center;
  }
  .description {
    font-size: 16px;
    text-align: center;
  }
  .left-btn,
  .right-btn {
    font-size: 13px;
  }
  .leftSide {
    min-width: auto;
    width: 85%;
    max-width: none;
  }
  .buttons-container{
    display: flex;
    flex-direction: column;
  }
  .footer {
    padding: 20px 16px;
    flex-direction: column;
  }
  .leftFooter {
    align-items: center;
  }
  .rightFooter {
    justify-content: center;
    margin-top: 24px;
  }
    }