/* Add your custom styles here */
section {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--padding-horizontal) var(--padding-vertical);
}

body {
    font-size: 1.2em;
    font-family: var(--font);
}
h1 {
    font-size: 3.5em;
    font-weight: 400;
    margin: unset;
}
h2 {
    font-size: 3em;
    margin: unset;
}
@media screen and (max-width: 1023px) {
    h1 { font-size: 2.5em; }
    h2 { font-size: 2.2em; }
    body { font-size: 1em; }
}
@media screen and (max-width: 767px) {
    h1 { font-size: 2em; }
    h2 { font-size: 1.5em; }
}


footer a {
    color: var(--green);
    text-decoration: none;
}
footer a:hover { text-decoration: underline; }

/* GravityForms */
.gform_wrapper { width: inherit; }
.gform_wrapper input, .gform_wrapper textarea {
    border: 0;
    padding: 12px 8px !important;
}
.gform_button.button {
    background-color: var(--black);
    color: var(--white);
    border-radius: 5px;
    padding: 12px 24px !important;
}

/* Dot Navigation */
body {
    overflow: hidden;
}
@media screen and (max-width: 1023px) {
    body { overflow: auto; }
}
.dot-navigation {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #333;
    cursor: pointer;
    transition: background-color 0.3s;
}
.dot.active {
    background-color: var(--green);
}

@media screen and (max-width: 767px) {
    .Content--100 .Content--Wrapper {
      display: flex;
      flex-direction: column;
    }
    .Content--100 .Content--Text {
      aspect-ratio: 1;
    }
}