/* Base styles */
:root {
    --primary-color: #196d99; /* Keeping a default, can be overridden if 2018 has a specific theme color */
    --text-color: #333;
    --link-color: #fff;
    --link-hover-color: rgba(255, 255, 255, 0.8);
}

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

body {
    font-family: 'Neue Montreal', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f0f0f0; /* Light gray page background */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo img {
    max-width: 200px;
    height: auto;
}

/* Banner */
.banner {
    width: 100%;
    overflow: hidden;
}

.banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* Program Section */
.program {
    width: 100%;
    overflow: hidden;
}

.program img {
    width: 100%;
    height: auto;
    display: block;
}

.program-divider {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    display: block; /* Ensure it takes full width and sits on its own line */
    margin: 0; /* Remove any default margins */
    padding: 0; /* Remove any default padding */
}

/* Sponsor/Social Background Wrapper */
.sponsor-social-background {
    padding: 20px 0 0; /* Adjusted padding, bottom padding removed */
    text-align: center; /* Center the content if footer.jpg doesn't fill width */
}

/* Combined Sponsors and Social Section (using footer.jpg) */
.sponsors {
    text-align: center;
    /* padding: 20px 0; */ /* Padding moved to parent .sponsor-social-background */
}

.sponsors .container {
    max-width: 100%; /* Allow footer.jpg to span full width if needed */
    padding: 0; /* Remove container padding if footer.jpg handles its own spacing */
}

.sponsors img {
    max-width: 100%;
    height: auto;
    display: block; /* Make it a block to manage margins */
    margin: 0 auto; /* Center the image */
}

/* Mobile Styles */
@media (max-width: 767px) {
    .container {
        padding: 0 15px;
    }

    .program img,
    .banner img {
        max-width: 100%;
    }

    .sponsor-social-background {
        padding: 10px 0 0;
    }

} 