/* Base styles */
:root {
    --accent-color: #000;
    --text-color: #000;
    --background-color: #fff;
    --light-gray: #f5f5f5;
    --border-color: #eaeaea;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    /* No specific height needed here usually */
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.4;
    background-color: var(--background-color);
    display: flex;
    justify-content: center;
    align-items: center;
    /* Ensure body takes at least full viewport height but can grow */
    min-height: 100vh;
}

.container {
    max-width: 500px;
    width: 90%;
    text-align: center;
    padding: 1rem;
}

.full-height {
    /* This class might not be needed if body handles flex centering */
    /* Consider removing if redundant */
}

h1, h2, h3 {
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--accent-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header / Hero styles */
.hero {
    /* No specific padding needed if container handles it */
}

.logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    display: block;
    border-radius: 15px;
}

.hero h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

/* Integrated Steps */
.steps-inline {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #333;
}

.step-inline {
    /* No extra styling needed for now */
}

/* Integrated Features */
.features-inline {
    list-style-type: none;
    padding: 0;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.features-inline li {
    display: inline-block;
    margin: 0 0.5rem;
    padding: 0.2rem 0.5rem;
    background-color: var(--light-gray);
    border-radius: 5px;
}

.cta-button {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.cta-button img {
    height: 35px;
}

/* Footer */
footer {
    padding-top: 1rem;
}

.footer-links {
    margin-bottom: 0.5rem;
}

.footer-links a {
    margin: 0 0.5rem;
    font-size: 0.8rem;
    color: #555;
}

.copyright {
    font-size: 0.8rem;
    color: #777;
    margin-bottom: 0;
}

/* Styles for inner pages (Privacy, Terms, Contact) */
.back-link {
    display: block;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.content {
    padding: 2rem 1rem;
    text-align: left;
    margin-bottom: 1rem;
}

.last-updated {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: #555;
    text-align: center;
}

/* Terms and Privacy pages specific adjustments */
.content h1, .content h2 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    text-align: center;
}

.content p, .content ul {
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.content ul {
    margin-left: 1.2rem;
    padding-left: 0.5rem;
}

.content li {
    margin-bottom: 0.3rem;
}

/* Specific style for centering content on the contact page */
.contact-content {
    text-align: center;
}

/* Remove styles for old sections */
/* .how-it-works, .steps, .step, .features, .about, etc. are gone */

/* Remove styles specific to other pages for now if focusing on landing */
/* .back-link, .content, .last-updated, .contact-method can be removed or commented out */

/* Responsive adjustments */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    .subtitle {
        font-size: 0.9rem;
    }
    .steps-inline {
        gap: 1rem;
        font-size: 0.8rem;
    }
    .features-inline li {
        margin: 0.2rem 0.3rem;
        font-size: 0.8rem;
    }
    .logo {
        width: 60px;
        height: 60px;
        border-radius: 12px;
    }
    .content p, .content ul, .contact-method p {
        font-size: 0.85rem;
    }
} 