/* General Styles */
body {
    font-family: 'Courier New', Courier, monospace;
    background: linear-gradient(to right, #fdf5e6, #dcdcdc);
    /* Subtle gradient background */
    margin: 0;
    padding: 0;
    color: #333;
}

/* Landing Container */
.landing-container {
    text-align: center;
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
header {
    margin-bottom: 40px;
}

header h1 {
    font-size: 3em;
    color: #8b4513;
    /* Saddle brown */
    margin-bottom: 20px;
}

header p {
    font-size: 1.2em;
    color: #555;
}

/* Navigation Styles */
nav {
    margin-bottom: 40px;
}

nav .btn {
    display: inline-block;
    margin: 10px;
    padding: 15px 30px;
    font-size: 1.2em;
    color: #fff;
    background-color: #8b4513;
    /* Saddle brown */
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

nav .btn:hover {
    background-color: #5a2e0c;
    /* Darker brown */
}

/* Features Section */
.features {
    margin-bottom: 40px;
}

.features h2 {
    font-size: 2.5em;
    color: #8b4513;
    margin-bottom: 20px;
}

.features ul {
    list-style-type: none;
    padding: 0;
    font-size: 1.2em;
    color: #555;
}

.features ul li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 40px;
    /* Adjust this to move the text closer to the checkmark */
}

.features ul li:before {
    content: '✔';
    position: absolute;
    left: 0;
    top: 0;
    transform: translateY(10%);
    /* Adjust this to vertically align the checkmark with the text */
    color: #8b4513;
    font-size: 1.5em;
}

/* Footer Styles */
footer {
    margin-top: 40px;
    color: #777;
}

footer p {
    font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.5em;
    }

    nav .btn {
        font-size: 1em;
        padding: 12px 25px;
    }

    .features h2 {
        font-size: 2em;
    }

    .features ul li {
        font-size: 1em;
    }
}