* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.container {
    max-width: 100%;
    padding: 20px;
}

.card {
    background: white;
    border-radius: 20px;
    padding: 30px 20px;
    margin: 20px auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 500px;
}

.header {
    text-align: center;
    margin-bottom: 30px;
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #667eea;
    margin: 0 auto 20px;
}

h1 {
    color: #2c3e50;
    font-size: 28px;
    margin-bottom: 10px;
}

.tagline {
    color: #667eea;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.features {
    margin: 30px 0;
}

.feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
}

.feature-icon {
    font-size: 24px;
    margin-right: 15px;
    min-width: 30px;
}

.benefits {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
}

.benefits h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 22px;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
}

.benefit-icon {
    font-size: 20px;
    margin-right: 15px;
    min-width: 30px;
}

.cta-button {
    display: block;
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    margin: 30px 0 20px;
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.how-it-works {
    margin: 30px 0;
}

.step {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px;
    background: white;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.step-number {
    background: #667eea;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-weight: bold;
}

.note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    padding: 15px;
    margin: 20px 0;
    font-size: 14px;
}

.footer {
    text-align: center;
    color: white;
    margin-top: 30px;
    font-size: 14px;
}

.client-images {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.client-image {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 480px) {
    .card {
        margin: 10px auto;
        padding: 20px 15px;
    }

    h1 {
        font-size: 24px;
    }

    .avatar {
        width: 100px;
        height: 100px;
    }

}

/*- footer-*/

.footer-links-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 500px;
    margin: 30px auto;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    color: white;
}

.content-links {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}

.content-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.content-links a:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.legal-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 11px;
    padding: 4px 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.legal-links a:hover {
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .footer-links-container {
        margin: 20px auto;
        padding: 20px;
    }

    .content-links {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .content-links a {
        text-align: center;
        width: 100%;
        max-width: 300px;
    }

    .legal-links {
        gap: 8px;
    }

    .legal-links a {
        font-size: 10px;
        padding: 3px 6px;
    }
}

@media (max-width: 480px) {
    .legal-links {
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }

    .legal-links a {
        font-size: 9px;
    }
}
