/* --- Global Styles --- */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0 20px;
    line-height: 1.6;
    background-color: #fafafa;
    color: #333;
}

header, footer {
    background: #f0f0f0;
    padding: 15px 20px;
}

header h1 {
    margin: 0;
    font-size: 28px;
}

nav {
    margin-top: 10px;
}

nav a {
    margin-right: 15px;
    text-decoration: none;
    color: #007acc;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

/* --- Hero Section --- */
.hero {
    background: #e0f7fa;
    padding: 25px 20px;
    margin: 20px 0;
    border-radius: 6px;
}

.hero h2 {
    margin-top: 0;
}

/* --- Buttons --- */
.hero a {
    display: inline-block;
    background-color: #007acc;
    color: white;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 4px;
    margin-right: 10px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.hero a:hover {
    background-color: #005f99;
}

/* --- Features & Android Info --- */
.features, .android-info {
    margin-bottom: 20px;
}

.features ul {
    list-style-type: square;
    padding-left: 20px;
}

/* --- Form Styles --- */
form {
    background: #fff;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    max-width: 500px;
}

form label {
    font-weight: bold;
}

form input[type="text"],
form input[type="email"],
form textarea {
    width: 100%;
    padding: 8px;
    margin-top: 4px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
}

form button {
    background-color: #007acc;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

form button:hover {
    background-color: #005f99;
}

/* --- Footer --- */
footer {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
}
