:root {
--primary: #2563eb;
--primary-dark: #1d4ed8;
--secondary: #f3f4f6;
--text: #1f2937;
--text-light: #6b7280;
--white: #ffffff;
--success: #10b981;
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
color: var(--text);
line-height: 1.6;
}

.page {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
}

header {
padding: 1.5rem 0;
border-bottom: 1px solid var(--secondary);
}

nav {
display: flex;
justify-content: space-between;
align-items: center;
}

.logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    display: flex;
    gap: 10px;
    align-items: center;
}

.nav-links {
display: flex;
gap: 2rem;
}

.nav-links a {
text-decoration: none;
color: var(--text);
font-weight: 500;
transition: color 0.2s;
}

.nav-links a:hover {
color: var(--primary);
}

.btn {
display: inline-block;
padding: 0.75rem 1.5rem;
background-color: var(--primary);
color: var(--white);
text-decoration: none;
border-radius: 0.375rem;
font-weight: 500;
transition: background-color 0.2s;
}

.btn:hover {
background-color: var(--primary-dark);
}

.btn-outline {
background-color: transparent;
border: 1px solid var(--primary);
color: var(--primary);
}

.btn-outline:hover {
background-color: var(--primary);
color: var(--white);
}

.hero {
padding: 6rem 0;
display: flex;
justify-content: space-between;
align-items: center;
gap: 4rem;
}

.hero-content {
flex: 1;
}

.hero-image {
    flex: 1;
    text-align: center;
    margin-top: 20px;
}
.hero-img {
    max-width: 100%;
    border-radius: 8px;
}

.hero h1 {
font-size: 3rem;
line-height: 1.2;
margin-bottom: 1.5rem;
}

.hero p {
font-size: 1.125rem;
color: var(--text-light);
margin-bottom: 2rem;
}

.features {
padding: 5rem 0;
background-color: var(--secondary);
}

.section-title {
text-align: center;
margin-bottom: 3rem;
}

.section-title h2 {
font-size: 2.25rem;
margin-bottom: 1rem;
}

.section-title p {
font-size: 1.125rem;
color: var(--text-light);
max-width: 600px;
margin: 0 auto;
}

.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}

.feature-card {
background-color: var(--white);
padding: 2rem;
border-radius: 0.5rem;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.feature-icon {
font-size: 2rem;
color: var(--primary);
margin-bottom: 1.5rem;
}

.feature-card h3 {
margin-bottom: 1rem;
}

.how-it-works {
padding: 5rem 0;
}

.steps {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-top: 3rem;
}

.step {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}

.step-number {
width: 3rem;
height: 3rem;
border-radius: 50%;
background-color: var(--primary);
color: var(--white);
font-weight: 700;
font-size: 1.25rem;
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 1.5rem;
}

.pricing {
padding: 5rem 0;
background-color: var(--secondary);
}

.pricing-plans {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-top: 3rem;
}

.pricing-card {
background-color: var(--white);
border-radius: 0.5rem;
overflow: hidden;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.pricing-header {
padding: 2rem;
background-color: var(--primary);
color: var(--white);
text-align: center;
}

.pricing-content {
padding: 2rem;
}

.price {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 1rem;
}

.price span {
font-size: 1rem;
font-weight: 400;
color: var(--text-light);
}

.pricing-features {
margin: 2rem 0;
}

.pricing-feature {
display: flex;
align-items: center;
margin-bottom: 0.75rem;
}

.check-icon {
color: var(--success);
margin-right: 0.75rem;
}

.cta {
padding: 5rem 0;
text-align: center;
}

.cta h2 {
font-size: 2.25rem;
margin-bottom: 1.5rem;
}

.cta p {
font-size: 1.125rem;
color: var(--text-light);
max-width: 600px;
margin: 0 auto 2rem;
}

footer {
background-color: var(--text);
color: var(--white);
padding: 3rem 0;
}

.footer-content {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
gap: 2rem;
}

.footer-logo {
font-size: 1.5rem;
font-weight: 700;
margin-bottom: 1rem;
}

.footer-links h4 {
margin-bottom: 1.5rem;
}

.footer-links ul {
list-style: none;
}

.footer-links li {
margin-bottom: 0.75rem;
}

.footer-links a {
color: var(--secondary);
text-decoration: none;
transition: color 0.2s;
}

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

.copyright {
text-align: center;
margin-top: 3rem;
padding-top: 1.5rem;
border-top: 1px solid rgba(255, 255, 255, 0.1);
color: var(--text-light);
}

@media (max-width: 768px) {
.hero {
    flex-direction: column;
    text-align: center;
    padding: 3rem 0;
}

.nav-links {
    display: none;
}

.hero h1 {
    font-size: 2.25rem;
}

.footer-content {
    flex-direction: column;
}
}