/* Variables for Theming */
:root {
    --green-dark: #20492f;
    --green-light: #33be52;
    --white: #FFFFFF;
    --grey-dark: #565656;
    --grey-light: #E3E2E2;
    --transition-speed: 0.3s;
    --body-bg: #fafafa;
}

/* Global Styles */
body {
    background-color: var(--body-bg);
    color: var(--grey-dark);
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    font-size: 14px;
    position: relative;
    min-height: 100vh;
}

header {
    background-color: var(--green-dark);
    color: var(--white);
    text-align: center;
    padding: 20px 0;
}

header .logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

header .logo {
    height: 50px;
}

header h1 {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
}

/* Estilo para el subtítulo */
header .subtitle {
    font-size: 1.5rem;
    color: var(--white);
    margin-top: 10px;
    font-weight: 500;
}

header .tagline {
    font-size: 1rem;
    margin-top: 10px;
    color: var(--grey-light);
}

main {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    padding-bottom: 80px;
}

section {
    margin-bottom: 20px;
}

section h2 {
    color: var(--green-dark);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

section p {
    font-size: 1rem;
    line-height: 1.6;
}

.features ul {
    list-style-type: none;
    padding: 0;
}

.features li {
    background-color: var(--white);
    margin: 8px 0;
    padding: 12px;
    border-left: 5px solid var(--green-light);
    font-size: 0.95rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.app-store-link {
    display: inline-block;
    background-color: var(--green-light);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background-color var(--transition-speed);
    font-size: 1em;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.app-store-link:hover {
    background-color: var(--green-dark);
}

.app-store-link i {
    margin-right: 8px;
}

footer {
    text-align: center;
    padding: 15px 0;
    background-color: var(--grey-light);
    color: var(--grey-dark);
    position: fixed;
    bottom: 0;
    width: 100%;
}