.static-page .header {
    background-color: var(--body-color);
    position: fixed;
    top: 0;
    transition: none;
}

.static-page .nav__logo {
    top: 0.75rem;
    left: 1.5rem;
    transform: scale(1);
}

.static-section {
    padding-top: calc(var(--header-height) + 4rem);
    padding-bottom: 4rem;
    color: var(--text-color);
}

.static-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--container-color);
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.static-title {
    font-family: 'Guester', sans-serif;
    font-size: var(--h1-font-size);
    color: var(--title-color);
    text-align: center;
    margin-bottom: 1rem;
}

.static-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    font-size: var(--normal-font-size);
    color: var(--text-color-light);
}

.static-section h2 {
    font-family: 'Kiona', sans-serif;
    color: var(--title-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.static-section p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Contact Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-family: 'Kiona', sans-serif;
    color: var(--title-color);
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
    background-color: var(--body-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1rem;
    color: var(--text-color);
    font-size: var(--normal-font-size);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--first-color);
    box-shadow: 0 0 10px var(--first-color-light);
}

.form-button {
    background-color: var(--first-color);
    border: none;
    border-radius: 10px;
    padding: 1rem;
    color: black;
    font-size: var(--normal-font-size);
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.form-button:hover {
    background-color: var(--first-color-alt);
    transform: translateY(-2px);
}

/* Contact Alternatives */
.contact-alternatives {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.contact-alternatives p {
    margin-bottom: 1.5rem;
    color: var(--text-color-light);
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    text-decoration: none;
    font-size: var(--normal-font-size);
    transition: color 0.3s;
}

.contact-link i {
    font-size: 1.2rem;
    color: var(--first-color);
}

.contact-link:hover {
    color: var(--first-color);
}


body.static-page {
    background-color: var(--body-color);
    color: var(--text-color);
    font-family: var(--body-font);
}

.static-page .header {
    background-color: var(--body-color);
    position: fixed;
    top: 0;
    transition: none;
}

.static-page .nav__logo {
    top: 0.75rem;
    left: 1.5rem;
    transform: scale(1);
}

.static-section {
    padding-top: calc(var(--header-height) + 4rem);
    padding-bottom: 4rem;
    min-height: calc(100vh - 200px); /* Ensure it takes up most of the screen */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.static-section .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background-color: var(--container-color);
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.static-section h1 {
    font-family: 'Guester', sans-serif;
    font-size: var(--h1-font-size);
    color: var(--title-color);
    margin-bottom: 1.5rem;
}

.static-section h2 {
    font-family: 'Kiona', sans-serif;
    color: var(--title-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.static-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.static-section a {
    color: var(--first-color);
    text-decoration: none;
    transition: color 0.3s;
}

.static-section a:hover {
    color: var(--first-color-alt);
}

.btn {
    display: inline-block;
    background-color: var(--first-color);
    color: black;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    margin-top: 1.5rem;
    transition: background-color 0.3s, transform 0.3s;
}

.btn:hover {
    background-color: var(--first-color-alt);
    transform: translateY(-2px);
}

.static-page .footer {
    position: relative;
    bottom: 0;
    width: 100%;
}
