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

body {
    background: #eee;
    color: #333;
    font-family: 'Georgia', serif;
    line-height: 1.7;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: #6a00ff;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 3px 12px rgba(0,0,0,0.3);
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

header .logo {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
}

header .logo span {
    color: #e0b0ff;
}

header nav {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

header nav a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

header nav a:hover,
header nav a.active {
    color: #fff;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #6a00ff 0%, #aa0088 100%);
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 10px;
    color: #fff;
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto;
}

/* Page content */
main {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

h1 {
    color: #6a00ff;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

h2 {
    color: #aa0088;
    font-size: 1.5rem;
    margin: 30px 0 12px;
}

h3 {
    color: #6a00ff;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

p {
    margin-bottom: 15px;
}

a {
    color: #6a00ff;
}

a:hover {
    color: #aa0088;
}

/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 24px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
    display: block;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(106,0,255,0.15);
    border-color: #6a00ff;
}

.card h3 {
    color: #6a00ff;
    margin-bottom: 8px;
}

.card p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* Content sections */
.content-section {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 25px;
    border: 1px solid #ddd;
}

.content-section img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 15px 0;
}

/* Q&A items */
.qa-item {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    border-left: 4px solid #6a00ff;
}

.qa-item .question {
    color: #6a00ff;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.qa-item .answer {
    color: #555;
}

/* Pricing cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.pricing-card {
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: transform 0.2s, border-color 0.2s;
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: #6a00ff;
}

.pricing-card.featured {
    border-color: #aa0088;
    box-shadow: 0 8px 24px rgba(170,0,136,0.15);
}

.pricing-card h3 {
    color: #aa0088;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.pricing-card .price {
    font-size: 2.5rem;
    color: #6a00ff;
    font-weight: 700;
    margin: 10px 0;
}

.pricing-card .price span {
    font-size: 1rem;
    color: #999;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
    margin: 15px 0;
}

.pricing-card ul li {
    padding: 6px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
}

.pricing-card ul li::before {
    content: "✓ ";
    color: #aa0088;
    font-weight: 700;
}

/* Testimonial cards */
.testimonial {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    position: relative;
}

.testimonial::before {
    content: """;
    font-size: 4rem;
    color: #e0b0ff;
    position: absolute;
    top: 5px;
    left: 15px;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial .quote {
    padding-left: 40px;
    font-style: italic;
    color: #555;
    margin-bottom: 10px;
}

.testimonial .attribution {
    padding-left: 40px;
    color: #aa0088;
    font-weight: 700;
    font-size: 0.9rem;
}

.stars {
    color: #ffb300;
    font-size: 1.2rem;
    margin-bottom: 8px;
    padding-left: 40px;
}

/* SVG illustrations */
.illustration {
    display: block;
    max-width: 300px;
    margin: 20px auto;
}

/* Footer */
footer {
    background: #6a00ff;
    text-align: center;
    padding: 30px 20px;
    margin-top: 40px;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

footer a {
    color: #e0b0ff;
    text-decoration: none;
}

footer a:hover {
    color: #fff;
}

/* Responsive */
@media (max-width: 600px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }
    header nav {
        justify-content: center;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
}
