@charset "UTF-8";

/* Base styles and theme colors */
:root {
    --primary: #9DFF20;
    --secondary: #345C00;
    --base: #ffffff;
    --contrast: #000000;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 5rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: clamp(1rem, 1rem + ((1vw - 0.2rem) * 0.227), 1.125rem);
    line-height: 1.6;
    color: var(--contrast);
    background-color: var(--base);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header styles */
header {
    padding: var(--spacing-xl) var(--spacing-md);
    text-align: center;
    border-bottom: 2px solid var(--primary);
}

header h1 {
    font-size: clamp(2.032rem, 2.032rem + ((1vw - 0.2rem) * 2.896), 3.625rem);
    line-height: 1.2;
    font-weight: 400;
    margin: var(--spacing-md) 0;
}

/* Container styles */
.container {
    max-width: 650px;
    margin: 0 auto;
    padding: var(--spacing-xl) var(--spacing-md);
    flex: 1;
}

/* Hero section */
.hero {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.hero img {
    max-width: 500px;
    height: auto;
    margin: 0 auto;
}

/* Section styles */
.section {
    margin-bottom: var(--spacing-xxl);
}

.section-title {
    font-size: clamp(2.625rem, calc(2.625rem + ((1vw - 0.48rem) * 8.4135)), 3.25rem);
    line-height: 1.2;
    font-weight: 400;
    margin-bottom: var(--spacing-lg);
    color: var(--secondary);
}

/* Content styles */
.content {
    font-size: 1em;
    color: var(--contrast);
}

.content p {
    margin-bottom: var(--spacing-md);
}

.content strong {
    color: var(--secondary);
}

.content a {
    color: var(--secondary);
    text-decoration: underline;
}

.content a:hover {
    text-decoration: none;
}

/* Lists */
.content ul {
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-lg);
}

.content li {
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
}

/* Image styling */
.inline-image {
    display: block;
    margin: var(--spacing-lg) auto;
    max-width: 100%;
}

/* Footer styles */
footer {
    padding: var(--spacing-xl) var(--spacing-md);
    text-align: center;
    border-top: 2px solid var(--primary);
    background-color: var(--base);
}

footer p {
    font-size: 1em;
    color: var(--contrast);
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--contrast);
    color: var(--base);
    padding: var(--spacing-sm) var(--spacing-md);
    text-decoration: none;
    z-index: 100000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: var(--spacing-lg) var(--spacing-md);
    }

    header h1 {
        font-size: clamp(2rem, 2rem + ((1vw - 0.2rem) * 2.5), 2.5rem);
    }

    .hero img {
        max-width: 100%;
    }
}