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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    overflow: hidden;
}

.header {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 40px 30px;
    text-align: center;
}

.header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    font-weight: 700;
}

.header .subtitle {
    font-size: 1.2em;
    opacity: 0.95;
    margin-bottom: 20px;
}

.badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9em;
    margin-top: 10px;
    backdrop-filter: blur(10px);
}

.content {
    padding: 40px 30px;
}

.section {
    margin-bottom: 40px;
}

.section h2 {
    color: #1e3a8a;
    font-size: 1.8em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #3b82f6;
}

.intro {
    font-size: 1.2em;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.stat-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat-card .number {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-card .label {
    font-size: 0.9em;
    opacity: 0.9;
}

.value-props {
    list-style: none;
}

.value-props li {
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.1em;
}

.value-props li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.5em;
}

.cta-section {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin: 40px 0;
}

.cta-section h3 {
    font-size: 2em;
    color: #1e3a8a;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 25px;
}

.cta-button {
    display: inline-block;
    background: #1e3a8a;
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    margin: 10px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

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

.service-card {
    border: 2px solid #e5e7eb;
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.1);
    transform: translateY(-5px);
}

.service-card h4 {
    color: #1e3a8a;
    font-size: 1.3em;
    margin-bottom: 10px;
}

.service-card .price {
    color: #10b981;
    font-weight: 600;
    font-size: 1.1em;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

.target-audience {
    background: #f3f4f6;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
}

.target-audience h3 {
    color: #1e3a8a;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.target-list {
    list-style: none;
}

.target-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.1em;
}

.target-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
    font-size: 1.5em;
}

.contact-info {
    text-align: center;
    padding: 30px;
    background: #f9fafb;
    border-radius: 15px;
}

.contact-info a {
    display: inline-block;
    color: #3b82f6;
    text-decoration: none;
    margin: 10px 15px;
    font-size: 1.1em;
    font-weight: 500;
}

.contact-info a:hover {
    color: #1e3a8a;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .header h1 {
        font-size: 2em;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .services {
        grid-template-columns: 1fr;
    }
}
