/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and Font */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #F4F7F6; /* Light sand background */
    color: #333;
    overflow-x: hidden;
    padding: 20px;
}

/* Splash Section */
.splash {
    height: 20vh;
    background-color: #A1C6EA; /* Soft ocean blue */
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container {
    text-align: center;
}

.logo {
    max-width: 50%;
    height: auto;
}

/* Presentation Section */
.presentation {
    background-color: #FFFAF0; /* Light sand color */
    padding: 50px 20px;
}

.content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    color: #1A4D7E; /* Dark ocean blue */
    margin-bottom: 20px;
}

h2 {
    font-size: 1.8rem;
    color: #607A6B; /* Muted greenish tone */
    margin-top: 30px;
    margin-bottom: 15px;
}

/* Tables */
table {
    width: 100%;
    margin-bottom: 30px;
    border-collapse: collapse;
    border: 1px solid #607A6B; /* Muted greenish border */
    table-layout: fixed;
}

table td {
    padding: 15px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid #A1C6EA; /* Soft ocean blue line */
}

table td:first-child {
    width: 30%; /* Fixed width for consistent left column */
    font-weight: bold;
    background-color: #A1C6EA;
    color: #fff;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

table td:last-child {
    background-color: #FFFAF0; /* Light sand background for the right column */
    color: #333;
    width: 70%;
}

/* Links */
a {
    color: #1A4D7E;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    body {
        padding: 10px;
    }

    .content {
        padding: 10px;
    }

    table,
    table td,
    table td:first-child,
    table td:last-child {
        display: block;
        width: 100%;
    }

    table td {
        padding: 10px;
    }

    table td:first-child {
        background-color: #A1C6EA;
        color: #fff;
        font-weight: bold;
    }

    table td:last-child {
        background-color: #FFFAF0;
        color: #333;
    }
}
