/* styles.css */
body {
    font-family: "Marfa Mono", "SF Mono", "Source Code Pro", Consolas, Menlo, monospace;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #1a1a1a;
    color: #e0e0e0;
}

header, footer {
    background-color: #2d2d2d;
    color: #ffffff;
    text-align: center;
    padding: 1em 0;
}

header img {
    max-width: 100px;
    height: auto;
    display: block;
    margin: 0 auto;
}

main {
    flex: 1;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

/* App list styles */
.app-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.app-item {
    width: 45%;
    margin: 10px 0;
}

.app-item a {
    display: block;
    padding: 10px;
    border: 1px solid #404040;
    border-radius: 5px;
    text-align: center;
    background-color: #2d2d2d;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}

.app-item a:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.app-item h2,
.app-item p {
    color: #e0e0e0;
}

.app-item img {
    max-width: 100px;
    height: auto;
    border-radius: 22.5%;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.app-store-link {
    color: #27ACAF;
    margin-top: 10px;
    display: inline-block;
    transition: color 0.2s ease;
}

.app-item a:hover .app-store-link {
    color: #2fc5c8;
}

/* Contact form styles */
.contact-us {
    background-color: #2d2d2d;
    color: #ffffff;
    padding: 20px;
    text-align: center;
    margin-top: 20px;
    border-radius: 5px;
}

.contact-form {
    margin: 20px auto;
    max-width: 600px;
    padding: 0 20px;
    box-sizing: border-box;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
    border: 1px solid #404040;
    background-color: #1a1a1a;
    color: #e0e0e0;
    box-sizing: border-box;
    font-family: inherit;
}

.contact-form input:focus, 
.contact-form textarea:focus {
    outline: none;
    border-color: #27ACAF;
}

.contact-form button {
    padding: 10px 20px;
    background-color: #27ACAF;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-family: inherit;
}

.contact-form button:hover {
    background-color: #2fc5c8;
}

/* Privacy policy styles */
.privacy-content {
    background-color: #2d2d2d;
    padding: 30px;
    border-radius: 5px;
    margin: 20px 0;
    line-height: 1.6;
}

.privacy-content h2 {
    color: #27ACAF;
    margin-top: 30px;
    margin-bottom: 20px;
}

.privacy-content ul {
    padding-left: 20px;
    margin: 15px 0;
}

.privacy-content li {
    margin-bottom: 10px;
}

/* Common elements */
a {
    color: #27ACAF;
    text-decoration: none;
}

a:hover {
    color: #2fc5c8;
}

/* Alert messages */
.alert {
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
}

.alert.success {
    background: #2d503d;
    color: #fff;
}

.alert.error {
    background: #503d3d;
    color: #fff;
}

/* Responsive design */
@media (max-width: 600px) {
    .app-item {
        width: 100%;
    }
}