
:root {
    --primary-color: #8dbd35;
    --text-color: #1a1a1a;
    --bg-color: #ffffff;
    --section-bg: #f7f7f7;
    --nav-bg: #1a1a1a;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-color);
    margin: 0;
    padding: 0;
}

/* Accessibility: Skip link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 10px;
    z-index: 1001;
    text-decoration: none;
}
.skip-link:focus { top: 0; }

header {
    background: white;
    padding: 20px;
    text-align: center;
}

.logo-main {
    max-width: 180px; /* Reduced size as requested */
    height: auto;
    display: block;
    margin: 0 auto;
}

nav {
    background: var(--nav-bg);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav a {
    color: #eee;
    padding: 18px 25px;
    text-decoration: none;
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

nav a:hover, nav a:focus {
    background: var(--primary-color);
    color: #000;
    outline: none;
}

main {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 20px;
}

section {
    margin-bottom: 70px;
    scroll-margin-top: 100px;
}

h1 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #000;
}

h2 {
    font-size: 1.6rem;
    color: #333;
    margin-top: 40px;
    border-left: 5px solid var(--primary-color);
    padding-left: 15px;
}

.partner-box {
    display: flex;
    align-items: center;
    gap: 50px;
    margin: 40px 0;
    padding: 30px;
    background: var(--section-bg);
    border-radius: 4px;
    flex-wrap: wrap;
}

.partner-box img {
    height: 35px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: 0.3s;
}

.partner-box img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.contact-card {
    background: #fff;
    padding: 40px;
    border: 1px solid #ddd;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

address {
    font-style: normal;
    font-size: 1.1rem;
}

address a {
    color: #000;
    text-decoration: underline;
    text-underline-offset: 4px;
}

address a:hover {
    color: var(--primary-color);
}

footer {
    text-align: center;
    padding: 50px 20px;
    background: #111;
    color: #fff;
    font-size: 0.85rem;
}
footer-text {
    color: #fff;
    font-size: 0.85rem;
}
/* ESPA Sticky Badge */
.espa-sticky {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    display: block;
    transition: transform 0.3s ease;
}

.espa-sticky img {
    width: 360px;
    max-width: 80vw;
    height: auto;
    display: block;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
    border-radius: 6px;
}

.espa-sticky:hover {
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .espa-sticky {
        bottom: 10px;
        left: 10px;
    }

    .espa-sticky img {
        width: 180px;
    }
}

@media (max-width: 768px) {
    nav ul { flex-direction: column; }
    nav a { text-align: center; border-bottom: 1px solid #333; }
}
