/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: #FFFFFF;
    background-color: #1A1A1A;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Image Section */
.image-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    width: 100%;
}

.image-link {
    display: block;
    transition: opacity 0.3s ease;
}

.image-link:hover {
    opacity: 0.8;
}

.top-image {
    max-width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
}

/* Large Spacer */
.spacer {
    height: 270vh;
}

/* Container and Layout */
.content-container {
    max-width: 72ch;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

/* Typography Hierarchy */
h1 {
    font-family: 'Lora', serif;
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1.2;
    color: #FFFFFF;
    margin-bottom: 3rem;
    text-align: center;
}

h2 {
    font-family: 'Lora', serif;
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 1.3;
    color: #FFFFFF;
    margin-top: 4rem;
    margin-bottom: 2rem;
}

h3 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.4;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

/* Body Text */
p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    color: #E0E0E0;
}

small {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #B0B0B0;
}

strong {
    font-weight: 700;
    color: #FFFFFF;
}

/* Lists */
ul {
    list-style-type: none;
    padding-left: 0;
}

li {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #333333;
}

li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

/* Sections */
section {
    margin-bottom: 3rem;
}

/* Header */
header {
    text-align: center;
    margin-bottom: 2rem;
}

/* Horizontal Rule */
hr {
    border: none;
    border-top: 1px solid #333333;
    margin: 4rem 0 3rem 0;
}

/* Footer */
footer {
    text-align: center;
    margin-bottom: 2rem;
}

footer p {
    margin-bottom: 0;
}

/* Disclaimer */
#disclaimer {
    background-color: #2A2A2A;
    padding: 2rem;
    border-radius: 4px;
    margin-top: 2rem;
}

#disclaimer h2 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: #B0B0B0;
}

#disclaimer p {
    margin-bottom: 1rem;
}

#disclaimer p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-container {
        padding: 2rem 1rem;
    }
    
    h1 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
        margin-top: 3rem;
        margin-bottom: 1.5rem;
    }
    
    h3 {
        font-size: 1.125rem;
    }
    
    p {
        font-size: 1rem;
    }
    
    li {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    #disclaimer {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .content-container {
        padding: 1.5rem 1rem;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.375rem;
    }
    
    hr {
        margin: 3rem 0 2rem 0;
    }
}