body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f2f5;
    color: #333;
    line-height: 1.6;
}

header {
    background: #004d40;
    /* Dark Teal */
    color: #ecf0f1;
    /* Light grey/white */
    padding: 1rem 2rem;
    text-align: left;
    display: flex;
    align-items: center;
    border-bottom: #20c997 4px solid;
    /* Primary Teal accent */
}

header #logo {
    width: 250px;
    /* Adjust size as needed */
    height: 50px;
    /* Adjust size as needed */
    margin-right: 15px;
    border-radius: 5px;
    /* Optional: slightly rounded corners for the logo */
}

/* Add to your style.css */
.login-buttons {
    display: flex;
    gap: 10px;
    /* Space between buttons */
    margin-top: 10px;
    /* Space below the logo */
    justify-content: center;
    /* Or any other alignment you prefer */
}

.login-button {
    padding: 10px 15px;
    text-decoration: none;
    color: white;
    /* Example color */
    background-color: #007bff;
    /* Example background color */
    border-radius: 5px;
    font-weight: bold;
}

.login-button:hover {
    background-color: #0056b3;
    /* Darker shade on hover */
}

header h1 {
    margin: 0;
    font-size: 1.8em;
}

#splash-section {
    text-align: center;
    padding: 2rem 1rem;
    background: #ffffff;
    /* White background for splash */
    border-bottom: 1px solid #dddddd;
}

#splash-section h2 {
    color: #17a2b8;
    /* Darker Teal */
}

.splash-image {
    max-width: 90%;
    height: auto;
    max-height: 350px;
    /* Adjust as needed */
    margin-top: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#download-sections {
    padding: 1rem;
    max-width: 1000px;
    margin: 2rem auto;
}

.platform-section {
    background: #ffffff;
    margin-bottom: 2.5rem;
    padding: 1.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.platform-section h3 {
    color: #17a2b8;
    /* Darker Teal for section titles */
    border-bottom: 2px solid #ecf0f1;
    /* Light separator line */
    padding-bottom: 0.75rem;
    margin-top: 0;
    font-size: 1.5em;
}

.button-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    /* Space between buttons */
    margin-top: 1rem;
}

.download-button {
    background-color: #20c997;
    /* Primary Teal */
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    /* Space between icon and text */
    transition: background-color 0.25s ease, transform 0.1s ease;
    border: none;
    cursor: pointer;
    font-size: 1em;
}

.download-button:hover {
    background-color: #17a2b8;
    /* Darker Teal on hover */
    transform: translateY(-2px);
    /* Slight lift effect */
}

.download-button i {
    font-size: 1.3em;
    /* Icon size */
}

footer {
    text-align: center;
    padding: 1.5rem;
    background: #004d40;
    /* Dark Teal - match header */
    color: #ecf0f1;
    /* Match header text color */
    margin-top: 3rem;
    font-size: 0.9em;
}