* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 600px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.header {
    margin-bottom: 40px;
}

.logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
}

h1 {
    color: #667eea;
    font-size: 36px;
    margin-bottom: 10px;
}

.subtitle {
    color: #666;
    font-size: 18px;
}

.content {
    margin-bottom: 40px;
}

h2 {
    color: #333;
    font-size: 28px;
    margin-bottom: 15px;
}

.content p {
    color: #666;
    font-size: 16px;
    margin-bottom: 20px;
}

.benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
}

.benefit {
    background: #f5f5f5;
    padding: 15px;
    border-left: 4px solid #667eea;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon {
    color: #667eea;
    font-size: 24px;
    font-weight: bold;
}

.form-section {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
}

.form-section h3 {
    color: #333;
    font-size: 24px;
    margin-bottom: 10px;
}

.form-section p {
    color: #666;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

input {
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

button:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

button:active {
    transform: scale(0.98);
}

.guarantee {
    color: #999;
    font-size: 12px;
    margin-top: 10px !important;
}

.social {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.social p {
    color: #666;
    margin-bottom: 15px;
}

.social a {
    display: inline-block;
    margin: 0 10px;
    color: #667eea;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.social a:hover {
    color: #764ba2;
    text-decoration: underline;
}

@media (max-width: 600px) {
    .container {
        padding: 30px 20px;
    }
    
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    .logo {
        width: 100px;
        height: 100px;
    }
}