/* Shared styles for Prepwise pages */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    font-weight: 600;
}

a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #764ba2;
}

ul {
    list-style: none;
    padding-left: 0;
}

ul li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

/* Responsive design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2em !important;
    }

    .hero p {
        font-size: 1.2em !important;
    }

    .feature-grid {
        grid-template-columns: 1fr !important;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .download-btn {
        width: 100%;
        max-width: 300px;
    }
}
