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

/* Force light color scheme */
:root {
    color-scheme: light;
}

html {
    scroll-behavior: smooth;
    background-color: #ffffff !important;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #ffffff !important;
    color: #000000 !important;
    line-height: 1.6;
}

/* Header Styles */
header {
    width: 100%;
    background: #ffffff;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.logo-section {
    flex-grow: 1;
    text-align: left;
    padding-left: 20px;
}

.logo-section p {
    margin: 5px 0;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 400;
}

.logo-section p strong {
    font-weight: 600;
}

header img {
    max-width: 100px;
    width: auto;
    height: auto;
    flex-shrink: 0;
}

/* Main Content Styles */
main {
    flex: 1;
    max-width: 800px;
    width: 90%;
    margin: auto;
    text-align: center;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000000;
}

main p {
    font-size: 16px;
    margin: 15px 0;
    line-height: 1.6;
    color: #333333;
}

/* Footer Styles */
footer {
    width: 100%;
    text-align: center;
    padding: 15px 20px;
    background: #f5f5f5;
    border-top: 1px solid #dddddd;
    font-size: 13px;
    color: #444444;
    flex-shrink: 0;
}

footer p {
    margin: 0;
    font-size: 13px;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .logo-section {
        text-align: center;
        padding: 0;
    }

    .logo-section p {
        font-size: 13px;
    }

    header img {
        max-width: 80px;
        margin: 0;
    }

    main {
        margin: 30px auto;
        width: 95%;
        padding: 0 10px;
    }

    h1 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    main p {
        font-size: 14px;
        margin: 12px 0;
    }

    footer {
        padding: 12px 15px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 15px 10px;
    }

    .logo-section {
        padding-left: 0;
    }

    .logo-section p {
        font-size: 12px;
    }

    h1 {
        font-size: 20px;
    }

    main p {
        font-size: 13px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Explicitly disable any dark-mode overrides from the browser */
@media (prefers-color-scheme: dark) {
    :root {
        color-scheme: light;
    }

    html,
    body,
    header,
    main,
    footer {
        background-color: #ffffff !important;
        color: #000000 !important;
    }

    footer {
        background-color: #f5f5f5 !important;
        border-top-color: #dddddd !important;
        color: #444444 !important;
    }
}


