body {
    background-color: #E1D7CE;
    font-family: "Gill Sans", "Gill Sans MT", "Lato", "Nunito Sans", "Source Sans Pro", sans-serif;
    color: #1f1f1f;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}
header {
    background-color: #897666;
    color: white;
    padding: 30px 20px;
    text-align: center;
}
footer {
    background-color: #897666;
    color: white;
    padding: 20px;
    text-align: center;
    margin-top: 40px;
}
h1 {
    margin-top: 0;
    font-size: 2.5em;
    font-weight: 700;
}
h2 {
    color: #5d4d3d;
    margin-top: 1.5em;
}
p {
    margin-bottom: 1.2em;
    font-size: 1.1em;
}
.container {
    max-width: 800px;
    margin: 40px auto;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
a {
    color: #D45113;
    text-decoration: none;
    font-weight: 500;
}
a:hover {
    text-decoration: underline;
}
.cta-button {
    display: inline-block;
    background-color: #D45113;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1em;
    margin-top: 20px;
    box-shadow: 0 4px 8px rgba(212, 81, 19, 0.3);
    transition: transform 0.2s, background-color 0.2s;
}
.cta-button:hover {
    background-color: #b0400f;
    text-decoration: none;
    color: white;
    transform: translateY(-2px);
}
nav {
    margin-top: 20px;
}
nav a {
    color: rgba(255,255,255,0.9);
    margin: 0 15px;
    font-size: 1.1em;
}
nav a:hover {
    text-decoration: underline;
    color: white;
}
.logo-area {
    margin-bottom: 10px;
}
.app-feature {
    margin: 30px 0;
    display: flex;
    align-items: center;
}
.app-feature i {
    font-size: 2em;
    color: #897666;
    margin-right: 20px;
    width: 50px;
    text-align: center;
}
