:root {
    --primary-color: #2C3E50; /* Dark Blue */
    --background-color: #F2EFE4; /* Cream */
    --accent-color: #FFA726; /* Orange */
}

body {
    font-family: sans-serif;
    margin: 0;
    background-color: var(--background-color);
    color: var(--primary-color);
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background-color: var(--primary-color);
    color: white;
    padding: 5px 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 48px;
}

.header-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.header-title {
    text-align: center;
}

.title-logo {
    height: 100px;
}

header p {
    margin: 0;
    font-size: 18px;
}

main {
    padding: 40px 0;
}

section {
    margin-bottom: 40px;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
}

.video-placeholder {
    width: 100%;
    height: 400px;
    background-color: #ccc;
}

.feature-list {
    display: flex;
    justify-content: space-between;
}

.feature {
    width: 30%;
    text-align: center;
}

.screenshot-list {
    display: flex;
    justify-content: space-between;
}

.screenshot {
    width: 30%;
    height: 200px;
    background-color: #ccc;
}

footer {
    background-color: var(--primary-color);
    color: white;
    padding: 20px 0;
    text-align: center;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
}

footer ul li {
    display: inline;
    margin: 0 10px;
}

footer a {
    color: white;
    text-decoration: none;
}
