:root {
    --primaryColor: #5a8473;
    --secondaryColor: #d2e6d5;
    --bodyTextColorWhite: #f3f6f3;
    --bodyTextColor: darkslategrey;
    --bodyTextColorDark: #336c08;
    --sectionPadding: 20px;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden!important;
}
body, html {
    font-family: Poppins, sans-serif;
    width: 100%;
    margin: 0;
    padding: 0;
    background: linear-gradient(0deg,var(--primaryColor) 0,var(--secondaryColor) 35%);
}

img {
    max-width: 100%;
    height: auto;
}

p {
    line-height: 1.7em;
    font-size: 1.1em;
}

a,li,p,span {
    color: var(--primaryColor);
    margin: 0;
}

.cs-title {
    max-width:500px;
    padding-bottom: 20px;
    color: var(--primaryColor);
}

.cs-title h1{
    font-weight: 800;
    font-size: 2.3em;
    line-height: 1.3em;
    color: var(--bodyTextColor);
    max-width: 100%;
    margin-bottom: 20px;
}

.cs-title h2{
    font-weight: 300;
    font-size: .9em;
    max-width: 94%;
    line-height: 1.3em;
    color: var(--primaryColor);
    max-width: 100%;
    margin-bottom: 50px;
}

.top-section {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.logo-container {
    position: absolute;
    left: 20px;
    transform: translateY(-10%);
}

.logo {
    width: 150px;
    height: auto;
    border-radius:10px;
}

main {
  padding: 20px;
}

.container {
    max-width: 100%;
    display: flex;
    flex-grow: 1;
    padding: 20px;
}

.main-panel {
    flex-grow: 1;
}

/* Override layout for smaller screens (vertical stacking) */
@media (max-width: 768px) {
    .container {
/*	min-width: 389px;
	max-width: 380px;*/
	display: block;
  }

  .main-panel {
    flex: 1;
    margin-bottom: 20px;
  }
}

footer {
  background-color: #f0f0f0;
  padding: 20px;
  text-align: center;
}

footer p, a {
    color: var(--bodyTextColor);
}
