body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

nav {
    background-color: #333;
    color: white;
    padding: 10px 0;
    text-align: center;
    position: sticky;
    top: 0;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

section {
    padding: 60px 20px;
    text-align: center;
}

#home {
    background-color: #f4f4f4;
}

.screenshots img {
    width: 150px;
    margin: 10px;
}

.columns {
    display: flex;
    justify-content: space-evenly;
    gap: 40px;
}

.column {
    max-width: 400px;
}

form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

form label {
    display: block;
    margin-bottom: 5px;
}

form input, form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
}

form button {
    padding: 10px 20px;
    background-color: #333;
    color: white;
    border: none;
    cursor: pointer;
}

form button:hover {
    background-color: #555;
}

.intro {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.text-column {
    flex: 1;
    padding: 20px;
    max-width: 50%;
}

.image-column {
    flex: 1;
    padding: 20px;
    max-width: 50%;
}

.image-column img {
    width: 40%;
    height: auto;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .intro {
        flex-direction: column;
    }

    .text-column, .image-column {
        max-width: 100%;
        text-align: center;
    }
}

.column ul {
    padding-left: 20px; /* Adjust the padding as needed */
}

.column ul li {
    text-align: left; /* Ensure text is aligned to the left */
    list-style-position: outside; /* Keep bullets outside the text */
}
