:root {
    --primary: #34618D;
    --on-primary: #FFFFFF;
    --surface: #F8F9FF;
    --on-surface: #191C20;
    --muted: #6B7280;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.5;
    color: var(--on-surface);
    background-color: var(--surface);
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

header {
    background-color: var(--surface);
    border-bottom: 1px solid #E5E7EB;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--on-surface);
    font-weight: bold;
}

.logo img {
    margin-right: 0.5rem;
}

nav {
    display: none;
}

@media (min-width: 768px) {
    nav {
        display: flex;
    }
}

nav a {
    color: var(--on-surface);
    text-decoration: none;
    margin-left: 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.375rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: background-color 0.2s, color 0.2s;
    cursor: pointer;
}

.btn-sm {
    font-size: 0.875rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--on-primary);
    border: none;
}

.btn-primary:hover {
    background-color: #2A4F71;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-outline:hover {
    background-color: rgba(52, 97, 141, 0.1);
}

.hero {
    padding: 4rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--on-surface);
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
}

.hero p {
    color: var(--muted);
    margin-bottom: 2rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.app-screenshot {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.features {
    background-color: var(--primary);
    color: var(--on-primary);
    padding: 4rem 0;
}

.features h2 {
    text-align: center;
    font-size: 1.875rem;
    margin-bottom: 2rem;
}

.feature-cards {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.feature-card {
    background-color: var(--surface);
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    color: var(--on-surface);
}

.icon-wrapper {
    background-color: var(--primary);
    color: var(--on-primary);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--muted);
    font-size: 0.875rem;
}

.benefits {
    background-color: var(--surface);
    padding: 4rem 0;
}

.benefits h2 {
    text-align: center;
    font-size: 1.875rem;
    margin-bottom: 2rem;
    color: var(--on-surface);
}

.benefit-list {
    list-style-type: none;
    padding: 0;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.benefit-list .icon {
    color: var(--primary);
}

.download {
    padding: 4rem 0;
    text-align: center;
}

.download h2 {
    font-size: 1.875rem;
    margin-bottom: 1rem;
    color: var(--on-surface);
}

.download p {
    color: var(--muted);
    margin-bottom: 2rem;
}

footer {
    background-color: var(--primary);
    color: var(--on-primary);
    padding: 1.5rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 1rem;
}

.footer-links a {
    color: var(--on-primary);
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.header-hidden {
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
}

/* Add these new styles for the store buttons */
.store-buttons {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.store-button {
    height: 40px;
    width: auto;
    transition: opacity 0.2s;
}

.store-button:hover {
    opacity: 0.9;
}

@media (min-width: 640px) {
    .store-buttons {
        flex-direction: row;
    }
}

.logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    /*border-radius: 50%;*/
}

.footer-logo img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.download img {
    margin-bottom: 0.0rem; /* Adjust this value as needed */
}

.download h2 {
    margin-top: 0; /* Remove any top margin */
}
