@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@500;600&family=Inter:wght@400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

:root {
    --ps-green: #0b5a3a;
    --ps-green-dark: #06442c;
    --ps-red: #d63b33;
    --ps-bg: #ffffff;
    --ps-text: #0d0f10;
    --ps-muted: #6b7280;
    --ps-border: #0b5a3a;
    --ps-radius: 3px;
    --ps-max: 760px;
    --ps-font: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--ps-bg);
    color: var(--ps-text);
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.ps-topbar {
    background: linear-gradient(180deg, #0c3b2a 0%, #0b5a3a 100%);
    padding: 14px 0;
}

.ps-topbar__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
}

.container {
    max-width: var(--ps-max);
    margin: 0 auto;
    padding: 36px 16px 48px;
}

.hero {
    text-align: center;
    margin: 10px 0 26px;
}

.hero h1 {
    font-family: Oswald, Inter, sans-serif;
    margin: 0 0 10px;
    font-size: 34px;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: var(--ps-green);
}

.hero p {
    margin: 0;
    color: var(--ps-muted);
    font-size: 16px;
}

.card {
    background: #fff;
    padding: 22px 22px 18px;
}

label {
    display: block;
    margin: 18px 0 8px;
    font-family: Oswald, Inter, sans-serif;
    font-size: 20px;
    letter-spacing: .6px;
    text-transform: uppercase;
    color: var(--ps-green);
}

input,
textarea,
select {
    width: 100%;
    padding: 14px 14px;
    border: 2px solid var(--ps-border);
    border-radius: var(--ps-radius);
    font-size: 16px;
    outline: none;
    background: #fff;
}

input::placeholder,
textarea::placeholder {
    color: #9aa0a6;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--ps-green-dark);
    box-shadow: 0 0 0 3px rgba(11, 90, 58, .12);
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 720px) {
    .grid {
        grid-template-columns: 1fr;
    }
}

.btn {
    margin: 24px auto 0;
    padding: 14px 16px;
    border: 0;
    cursor: pointer;
    background: var(--ps-red);
    color: #fff;
    font-family: Oswald, Inter, sans-serif;
    font-size: 18px;
    letter-spacing: .8px;
    text-transform: uppercase;
    display: block;
}

button:hover {
    background: #b12f28;
}

button:disabled {
    opacity: .6;
    cursor: not-allowed;
}

.status {
    margin: 14px 0 0;
    font-size: 14px;
    color: var(--ps-muted);
}

.status.error {
    color: var(--ps-red);
}

.status.success {
    color: var(--ps-green);
}

.footer {
    margin-top: 18px;
    text-align: center;
    color: var(--ps-muted);
    font-size: 12px;
}



/* ===== Header / Nav ===== */
.ps-header {
    background: linear-gradient(180deg, #0c3b2a 0%, #0b5a3a 100%);
    position: sticky;
    top: 0;
    z-index: 20;
}

.ps-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.ps-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.ps-logo {
    background: #fff;
    height: 90px;
    width: auto;
    padding: 0 24px;
    position: absolute;
    top: 0;
    z-index: 1;
}

.ps-nav {
    flex: 1;
    padding: 10px 0 10px 166px;
}

.ps-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 18px;
}

.ps-nav__item>a,
.ps-dd>summary {
    color: var(--ps-bg);
    text-decoration: none;
    font-family: var(--ps-font);
    font-size: 14px;
    cursor: pointer;
}

.ps-dd {
    position: relative;
}

.ps-dd>summary {
    list-style: none;
}

.ps-dd>summary::-webkit-details-marker {
    display: none;
}

.ps-dd__menu {
    list-style: none;
    margin: 10px 0 0;
    padding: 10px;
    background: #fff;
    border-radius: 10px;
    min-width: 260px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
    position: absolute;
    left: 0;
}

.ps-dd__menu a {
    display: block;
    padding: 8px 10px;
    border-radius: 8px;
    font-family: var(--ps-font);
    font-size: 14px;
    text-decoration: none;
    color: #252525;
}

.ps-dd__menu a:hover {
    background: rgba(11, 90, 58, .08);
}

.ps-icon,
.ps-lang {
    color: #fff;
    text-decoration: none;
    font-family: Oswald, Inter, sans-serif;
    letter-spacing: .6px;
    text-transform: uppercase;
}

.ps-nav-toggle {
    display: none;
}

.ps-burger {
    display: none;
    width: 40px;
    padding: 0px 10px;
    cursor: pointer;
    position: relative;
    left: calc(100% - 60px);
    background: transparent;
    border: 0;
}

.ps-burger span {
    display: block;
    height: 2px;
    background: #fff;
    margin: 5px 0;
}

/* Mobile */
@media (max-width: 980px) {
    .ps-burger {
        display: block;
    }

    .ps-nav {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 50px;
        background: #0b5a3a;
        padding: 60px 16px 18px;
    }

    .ps-nav__list {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .ps-dd__menu {
        position: static;
        box-shadow: none;
        border-radius: 10px;
        margin-top: 8px;
    }

    #ps-nav-toggle:checked~.ps-nav {
        display: block;
    }
}

/* ===== Footer ===== */
.ps-footer {
    margin-top: 44px;
}

.ps-footer__cta {
    background: #0b5a3a;
    padding: 26px 0;
}

.ps-footer__ctaTitle {
    font-family: Oswald, Inter, sans-serif;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .8px;
    font-size: 20px;
}

.ps-footer__ctaSub {
    font-family: Oswald, Inter, sans-serif;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .8px;
    font-size: 30px;
    margin-top: 6px;
}

.ps-footer__main {
    background: #0c3b2a;
    color: #fff;
    padding: 26px 0;
}

.ps-footer__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 18px;
}

.ps-footer__col h3 {
    font-family: Oswald, Inter, sans-serif;
    text-transform: uppercase;
    letter-spacing: .6px;
    margin: 0 0 10px;
}

.ps-footer__col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ps-footer__col a {
    color: #fff;
    text-decoration: none;
    display: inline-block;
    padding: 6px 0;
    opacity: .92;
}

.ps-footer__col a:hover {
    opacity: 1;
    text-decoration: underline;
}

.ps-footer__mark {
    width: 120px;
    height: 120px;
    display: inline-block;
}

.ps-footer__hint {
    opacity: .85;
    font-size: 13px;
}

.ps-footer__bottom {
    background: #062b1f;
    color: #fff;
    padding: 12px 0;
}

.ps-footer__bottomInner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.ps-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.ps-footer__links a {
    color: #fff;
    text-decoration: none;
    opacity: .9;
    font-size: 13px;
}

.ps-footer__links a:hover {
    opacity: 1;
    text-decoration: underline;
}

@media (max-width: 900px) {
    .ps-footer__grid {
        grid-template-columns: 1fr;
    }

    .ps-footer__bottomInner {
        flex-direction: column;
        align-items: flex-start;
    }
}

.ps-footer {
    margin-top: 44px;
}

.ps-footer__decor {
    position: relative;
    width: 100%;
}

.ps-footer__border {
    display: block;
    width: 100%;
    height: auto;
}

.ps-footer__border--mobile {
    display: none;
}

.ps-footer__tomato {
    position: absolute;
    right: 24px;
    top: -28px;
    width: 180px;
    height: auto;
}

@media (max-width: 720px) {
    .ps-footer__border--desktop {
        display: none;
    }

    .ps-footer__border--mobile {
        display: block;
    }

    .ps-footer__tomato {
        right: 12px;
        top: -18px;
        width: 130px;
    }
}

.ps-footer__socialTitle {
    font-family: Oswald, Inter, sans-serif;
    text-transform: uppercase;
    letter-spacing: .6px;
    margin-top: 14px;
    margin-bottom: 8px;
}

.ps-footer__socialIcons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.ps-footer__socialIcons img {
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 999px;
    padding: 10px;
}






.ps-mentions {
    margin-top: 18px;
    padding-top: 10px;
}

.ps-mentions__title {
    margin: 0 0 10px;
    font-size: 13px;
    font-style: italic;
    color: var(--ps-muted);
}

.ps-mentions__text {
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.45;
    color: var(--ps-muted);
}

.ps-mentions__link {
    color: var(--ps-green);
    text-decoration: underline;
}

.ps-mentions__link:hover {
    color: var(--ps-green-dark);
}




/* Visually hidden but accessible */
.sr-only{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

/* Skip link */
.skip-link{
  position:absolute;
  left:-999px; top:10px;
  background:#fff;
  color:#000;
  padding:10px 12px;
  border:2px solid #000;
  z-index:9999;
}
.skip-link:focus{ left:10px; }

/* Fieldset reset (optional) */
.ps-fieldset{
  border:0;
  margin:0;
  padding:0;
}

/* Mobile menu: nav visible when open */
@media (max-width: 980px){
  .ps-nav{ display:none; }
  .ps-nav.is-open{ display:block; }
}


.status {
    color: #b12f28;
}