<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    /* Colour palette */
    --primary-color: #d43c1c;
    --secondary-color: #e67e22;
    --accent-color: #c0392b;
    --text-color: #333;
    --light-text: #fff;
    --background-color: #f5f5f5;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    
    /* Typography */
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.5;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    font-family: var(--font-family);
    color: var(--text-color);
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-image: url('../assets/background.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Header styles */
header {
    background-color: rgba(212, 60, 28, 0.9);
    color: var(--light-text);
    padding: var(--spacing-md);
    backdrop-filter: blur(5px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Main content styles */
main {
    flex: 1;
    padding: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

h1 {
    color: var(--light-text);
    margin-bottom: var(--spacing-lg);
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    text-align: center;
}

section {
    background: rgba(255, 255, 255, 0.2);
    padding: var(--spacing-md);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

section.two-column {
    background: rgba(255, 255, 255, 0.2);
    padding: var(--spacing-lg);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    gap: var(--spacing-xl);
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}

.column {
    flex: 1;
}

.column h2 {
    color: var(--light-text);
    margin-bottom: var(--spacing-md);
    font-size: 1.8rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.column p {
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.column p:last-child {
    margin-bottom: 0;
}

.panda-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 0;
    display: block;
    width: auto;
}

/* Footer styles */
footer {
    background-color: rgba(212, 60, 28, 0.9);
    color: var(--light-text);
    padding: var(--spacing-md);
    text-align: center;
    margin-top: auto;
    backdrop-filter: blur(5px);
}

.sun-container {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.sun-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    padding: var(--spacing-xs);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    section.two-column {
        flex-direction: column;
        padding: var(--spacing-md);
        width: 90%;
        gap: var(--spacing-lg);
    }
    
    .column {
        width: 100%;
    }
    
    .panda-image {
        max-width: 70%;
        margin: 0 auto;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .column h2 {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .sun-image {
        width: 120px;
        height: 120px;
    }
} </pre></body></html>