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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

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

header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

main {
    padding: 2rem 0;
    min-height: 70vh;
}

section {
    background: white;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

h2 {
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

h3 {
    color: #333;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

ul, ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.5rem;
}

.price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2ecc71;
    margin: 1rem 0;
}

.cta-button {
    display: inline-block;
    background-color: #2ecc71;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 1rem;
    transition: background-color 0.2s;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

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

.disclaimer {
    background-color: #fef9e6;
    border-left: 4px solid #f39c12;
    font-size: 0.85rem;
    color: #666;
}

footer {
    text-align: center;
    padding: 2rem 0;
    font-size: 0.85rem;
    color: #666;
    border-top: 1px solid #eee;
    margin-top: 2rem;
}

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

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

a {
    color: #2ecc71;
}

/* Hero section styles */
.hero-image {
    background-image: url('images/hero-clean.png');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
    background-color: rgba(0,0,0,0.1);
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.hero-sub {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

/* Features section */
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 3rem 0;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    width: 45%;
    margin-bottom: 1.5rem;
}

.feature-icon {
    font-size: 2.5rem;
    color: #2ecc71;
    margin-bottom: 1rem;
}

/* Pricing section */
.pricing {
    background: #f8f9fa;
    padding: 3rem 0;
}

.pricing-table {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    width: 45%;
    text-align: center;
}

.pricing-card h3 {
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2ecc71;
    margin: 1rem 0;
}

/* Trust section */
.trust-section {
    background: white;
    padding: 3rem 0;
}

.trust-section h2 {
    color: #1a1a2e;
    margin-bottom: 2rem;
}

.trust-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    position: relative;
}

.trust-icon {
    font-size: 2rem;
    color: #2ecc71;
    margin-bottom: 1rem;
}

/* Dashboard image */
.dashboard-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin: 2rem 0;
}

/* Footer */
.footer {
    background: #1a1a2e;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-links {
    margin: 1.5rem 0;
}

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

.footer-links a:hover {
    color: white;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .features {
        flex-direction: column;
    }
    .feature-card {
        width: 100%;
        margin-bottom: 1rem;
    }
    .pricing-table {
        flex-direction: column;
    }
    .pricing-card {
        width: 100%;
        margin-bottom: 1rem;
    }
}
