body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    padding: 40px 0;
    margin-bottom: 40px;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

h2 {
    margin-top: 30px;
}

.button-container {
    text-align: center;
    margin: 40px 0;
}

.cta-button {
    display: inline-block;
    background-color: #0088cc;
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #006699;
}

/* Pricing Styles */
.pricing-container {
    padding: 0 20px;
    margin-bottom: 40px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.pricing-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #eee;
    transition: transform 0.2s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.pricing-card.featured {
    border: 2px solid #0088cc;
    background: #e6f7ff;
}

.pricing-card.subscription {
    background: #fff0f6;
    border: 2px solid #ffadd2;
}

.pricing-card h3 {
    margin: 0 0 10px 0;
    font-size: 1.2em;
}

.pricing-card .price {
    font-size: 1.5em;
    font-weight: bold;
    color: #333;
    margin: 10px 0;
}

.pricing-card .description {
    font-size: 0.9em;
    color: #666;
    margin: 0;
}

footer {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: center;
    font-size: 0.9em;
    color: #666;
}

footer a {
    color: #666;
    text-decoration: none;
    margin: 0 10px;
}

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

.document-content {
    background: #fff;
    padding: 20px;
}
