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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

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

header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0 40px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

header h1 {
    font-size: 3em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.tagline {
    font-size: 1.3em;
    opacity: 0.95;
}

section {
    padding: 60px 0;
}

.hero {
    background: white;
    text-align: center;
}

.hero h2 {
    font-size: 2.5em;
    color: #667eea;
    margin-bottom: 20px;
}

.hero-text {
    font-size: 1.3em;
    color: #555;
    margin-bottom: 40px;
}

.cta-box {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 40px;
    border-radius: 15px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.url-example {
    background: white;
    padding: 20px;
    border-radius: 10px;
    font-size: 1.4em;
    margin-bottom: 30px;
    word-break: break-all;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.url-base {
    color: #666;
    font-weight: normal;
}

.url-custom {
    color: #667eea;
    font-weight: bold;
}

.btn-primary, .btn-email {
    display: inline-block;
    background: white;
    color: #f5576c;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-primary:hover, .btn-email:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.features {
    background: #f9f9f9;
}

.features h2 {
    text-align: center;
    font-size: 2.5em;
    color: #333;
    margin-bottom: 50px;
}

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

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.feature-card h3 {
    color: #667eea;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.how-it-works {
    background: white;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5em;
    color: #333;
    margin-bottom: 50px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.step {
    text-align: center;
    padding: 30px;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: bold;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.step h3 {
    color: #667eea;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.pricing {
    background: #f9f9f9;
}

.pricing h2 {
    text-align: center;
    font-size: 2.5em;
    color: #333;
    margin-bottom: 30px;
}

.pricing-info {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    font-size: 1.2em;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.pricing-info p {
    margin-bottom: 15px;
}

.terms {
    background: white;
}

.terms h2 {
    text-align: center;
    font-size: 2.5em;
    color: #d32f2f;
    margin-bottom: 30px;
}

.terms-box {
    max-width: 700px;
    margin: 0 auto;
    background: #fff3e0;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #ff9800;
}

.terms-box p {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 20px;
    color: #d32f2f;
}

.terms-box ul {
    list-style: none;
    padding: 0;
}

.terms-box li {
    padding: 10px 0;
    font-size: 1.1em;
    border-bottom: 1px solid #ffe0b2;
}

.terms-box li:last-child {
    border-bottom: none;
}

.contact {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.contact h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 30px;
}

.contact-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.contact-box p {
    font-size: 1.2em;
    margin-bottom: 15px;
}

.btn-email {
    background: white;
    color: #667eea;
    margin: 20px 0;
    font-size: 1.3em;
}

.contact-note {
    font-size: 1em;
    opacity: 0.9;
    font-style: italic;
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 30px 0;
}

.footer-note {
    margin-top: 10px;
    opacity: 0.7;
    font-size: 0.9em;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }
    
    .hero h2 {
        font-size: 1.8em;
    }
    
    .hero-text {
        font-size: 1.1em;
    }
    
    .url-example {
        font-size: 1em;
    }
    
    .features h2,
    .how-it-works h2,
    .pricing h2,
    .terms h2,
    .contact h2 {
        font-size: 1.8em;
    }
}
