* {
    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: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

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

.header {
    text-align: center;
    color: white;
    padding: 60px 0;
}

.header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.header p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.main-content {
    background: white;
    border-radius: 20px;
    padding: 50px;
    margin: 0 0 20px 0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.main-content p {
    color: #2c3e50;
}

.problem-section {
    text-align: center;
    margin-bottom: 50px;
}

.problem-section h2 {
    color: #e74c3c;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

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

.problem-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #e74c3c;
    transition: transform 0.3s ease;
}

.problem-card p {
    color: #2c3e50;
    line-height: 1.6;
}

.problem-card:hover {
    transform: translateY(-5px);
}

.problem-card h3 {
    color: #e74c3c;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.solution-section {
    text-align: center;
    margin: 60px 0;
}

.solution-section h2 {
    color: #27ae60;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.solution-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.feature-card {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-section {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    margin: 50px 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.price {
    font-size: 3rem;
    font-weight: bold;
    margin: 20px 0;
    color: #f39c12;
}

.btn {
    display: inline-block;
    background: #f39c12;
    color: white;
    padding: 20px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(243, 156, 18, 0.3);
}

.btn:hover {
    background: #e67e22;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(243, 156, 18, 0.4);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.telegram-cta-btn {
    background: #0088cc;
    box-shadow: 0 10px 20px rgba(0, 136, 204, 0.3);
}

.telegram-cta-btn:hover {
    background: #006699;
    box-shadow: 0 15px 30px rgba(0, 136, 204, 0.4);
}

.secondary-btn {
    background: #95a5a6;
    box-shadow: 0 10px 20px rgba(149, 165, 166, 0.3);
}

.secondary-btn:hover {
    background: #7f8c8d;
    box-shadow: 0 15px 30px rgba(149, 165, 166, 0.4);
}

.telegram-package-btn {
    background: #0088cc;
}

.telegram-package-btn:hover {
    background: #006699;
}

.guarantee {
    background: #ecf0f1;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: center;
}

.guarantee p {
    color: #2c3e50;
}

.guarantee h3 {
    color: #27ae60;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.contact {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
}

.contact h3 {
    color: #667eea;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.contact p {
    font-size: 1.2rem;
    margin: 10px 0;
    color: #333;
}

.lead-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 30px 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.lead-form h3 {
    color: #667eea;
    margin-bottom: 20px;
    font-size: 1.8rem;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #2c3e50;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid #ecf0f1;
    border-radius: 10px;
    font-size: 1.1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #ecf0f1;
    border-radius: 10px;
    font-size: 1.1rem;
    transition: border-color 0.3s ease;
    background: white;
    cursor: pointer;
}

.form-submit {
    width: 100%;
    background: #27ae60;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.form-submit:hover {
    background: #229954;
    transform: translateY(-2px);
}

.form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-error {
    background: #e74c3c;
    color: white;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
    animation: slideIn 0.3s ease;
}

.form-success {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    animation: slideIn 0.5s ease;
}

.success-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: white;
}

.success-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: white;
    opacity: 0.9;
}

.success-actions {
    margin-top: 20px;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Стили для страницы "Спасибо" */
.thank-you-section {
    text-align: center;
    margin: 40px 0;
    padding: 40px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 20px;
    color: white;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
}

.success-icon h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: white;
}

.next-steps {
    margin: 40px 0;
    text-align: left;
}

.next-steps h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: white;
}

.step-card {
    display: flex;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.15);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.3);
}

.step-number {
    background: white;
    color: #667eea;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.step-content p {
    color: white;
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px 0;
}

/* Стили для главной CTA кнопки */
.primary-cta-btn {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 25px 50px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 15px 35px rgba(243, 156, 18, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.primary-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.primary-cta-btn:hover::before {
    left: 100%;
}

.primary-cta-btn:hover {
    background: linear-gradient(135deg, #e67e22, #d35400);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 45px rgba(243, 156, 18, 0.5);
}

.cta-note {
    color: white;
    font-size: 1rem;
    margin: 10px 0;
    opacity: 0.9;
    font-style: italic;
}

/* Стили для основного сообщения */
.main-message {
    margin: 30px 0;
    text-align: center;
}

.main-message p {
    color: white;
    font-size: 1.2rem;
    margin: 15px 0;
    opacity: 0.95;
}

/* Стили для главного шага */
.primary-step {
    display: flex;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: 20px;
    margin: 30px 0;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.primary-step:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.4);
}

.primary-step .step-number {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    margin-right: 25px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
}

.primary-step .step-content h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.primary-step .step-content p {
    color: white;
    opacity: 0.95;
    line-height: 1.6;
    margin: 0;
    font-size: 1.1rem;
}

.bonus-info {
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: left;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
}

.bonus-info:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.3);
}

.bonus-info h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-align: center;
}

.bonus-info ul {
    list-style: none;
    padding: 0;
}

.bonus-info li {
    color: white;
    opacity: 0.9;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info {
    background: rgba(255, 255, 255, 0.15);
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
}

.contact-info:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.3);
}

.contact-info h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.contact-info p {
    color: white;
    opacity: 0.9;
    margin: 10px 0;
}

.contact-info a {
    color: white;
    text-decoration: underline;
}

.contact-info a:hover {
    opacity: 0.8;
}

/* Стили для мотивирующей страницы "Спасибо" */
.main-subtitle {
    font-size: 1.4rem;
    color: white;
    opacity: 0.95;
    margin-top: 20px;
    font-weight: 500;
}

.motivation-block {
    margin: 40px 0;
}

.motivation-card {
    background: rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    text-align: center;
}

.motivation-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.4);
}

.motivation-card h3 {
    color: white;
    font-size: 1.6rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.motivation-card p {
    color: white;
    opacity: 0.95;
    line-height: 1.7;
    font-size: 1.1rem;
    margin: 0;
}

.primary-cta-section {
    text-align: center;
    margin: 50px 0;
    background: rgba(255, 255, 255, 0.15);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
}

.primary-cta-section h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.cta-description {
    color: white;
    opacity: 0.9;
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.secondary-cta-section {
    text-align: center;
    margin: 30px 0;
}

.benefits-list {
    margin: 25px 0;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    color: white;
    opacity: 0.95;
    font-size: 1.1rem;
    margin: 15px 0;
    padding: 10px 0;
    line-height: 1.6;
    font-weight: 500;
}

@media (max-width: 768px) {
    .motivation-card {
        padding: 25px 20px;
    }
    
    .motivation-card h3 {
        font-size: 1.4rem;
    }
    
    .motivation-card p {
        font-size: 1rem;
    }
    
    .primary-cta-section {
        padding: 30px 20px;
    }
    
    .primary-cta-section h3 {
        font-size: 1.5rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
    }
    
    .benefits-list {
        margin: 20px 0;
        padding: 0 20px;
    }
    
    .benefit-item {
        font-size: 1rem;
        margin: 12px 0;
    }
}

.telegram-section {
    text-align: center;
    margin: 30px 0;
    padding: 30px;
    background: linear-gradient(135deg, #0088cc, #229ED9);
    border-radius: 20px;
    color: white;
}

.telegram-section h3 {
    margin-bottom: 15px;
    font-size: 1.8rem;
    color: white;
}

.telegram-section p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: white;
    opacity: 1;
}

.telegram-btn {
    display: inline-block;
    background: white;
    color: #0088cc;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.telegram-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.contact-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

@media (max-width: 768px) {
    .contact-options {
        grid-template-columns: 1fr;
    }
    
    .lead-form {
        margin: 20px 0;
        padding: 30px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

.about-section {
    text-align: center;
    margin: 60px 0;
}

.about-section h2 {
    color: #667eea;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
    margin: 40px 0;
}

.about-avatar {
    text-align: center;
}

.avatar-circle {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Fallback если фото не загрузится */
.avatar-circle:not(:has(.avatar-image)) {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.avatar-circle:not(:has(.avatar-image))::before {
    content: "👨‍💼";
    font-size: 4rem;
    color: white;
}

.about-name {
    font-weight: bold;
    color: #667eea;
    font-size: 1.2rem;
}

.about-title {
    color: #555;
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #2c3e50;
}

.about-text.highlight {
    font-weight: bold;
    color: #27ae60;
}

.testimonials-section {
    text-align: center;
    margin: 60px 0;
}

.testimonials-section h2 {
    color: #667eea;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

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

.testimonial-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #667eea;
    text-align: left;
    transition: transform 0.3s ease;
}

.testimonial-card .testimonial-text {
    color: #2c3e50;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: bold;
    color: #667eea;
}

.packages-section {
    text-align: center;
    margin: 60px 0;
}

.packages-section h2 {
    color: #27ae60;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 40px 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1400px) {
    .packages {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 1399px) and (min-width: 1000px) {
    .packages {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 999px) {
    .packages {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

.package-card {
    background: white;
    border: 3px solid #ecf0f1;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    height: fit-content;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.package-card.featured {
    border-color: #f39c12;
    transform: scale(1.05);
}

.package-card.featured::before {
    content: "ПОПУЛЯРНЫЙ";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #f39c12;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.package-name {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.3;
}

.package-price {
    font-size: 2.2rem;
    font-weight: bold;
    color: #f39c12;
    margin-bottom: 20px;
}

.package-features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.package-features li {
    padding: 10px 0;
    border-bottom: 1px solid #ecf0f1;
    position: relative;
    padding-left: 30px;
    color: #2c3e50;
}

.package-features li::before {
    content: "✅";
    position: absolute;
    left: 0;
}

.package-btn {
    display: inline-block;
    background: #27ae60;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.package-btn:hover {
    background: #229954;
    transform: translateY(-2px);
}

.package-card.featured .package-btn {
    background: #f39c12;
}

.package-card.featured .package-btn:hover {
    background: #e67e22;
}

.package-description {
    background: #f8f9fa;
    padding: 12px 15px;
    border-radius: 10px;
    margin: 15px 0;
    font-size: 0.9rem;
    color: #2c3e50;
    border-left: 3px solid #27ae60;
    line-height: 1.4;
}

.additional-option {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0;
    text-align: center;
}

.additional-option h3 {
    color: #667eea;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.additional-option p {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.offline-training {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.offline-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #f39c12;
    margin-bottom: 10px;
}

.offline-location {
    color: #666;
    font-size: 1rem;
}

.package-recommendation {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: center;
}

.package-recommendation p {
    color: white;
    font-size: 1.1rem;
    margin: 0;
}

.faq-section {
    text-align: center;
    margin: 60px 0;
}

.faq-section h2 {
    color: #667eea;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    background: #f8f9fa;
    margin-bottom: 20px;
    border-radius: 15px;
    padding: 25px;
    border-left: 5px solid #667eea;
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: #667eea;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.faq-item p {
    color: #2c3e50;
    line-height: 1.6;
    margin: 0;
}

.faq-cta {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
    text-align: center;
}

.faq-cta p {
    color: white;
    font-size: 1.1rem;
    margin: 10px 0;
}

.lead-form-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 60px 40px;
    border-radius: 20px;
    margin: 60px 0;
    text-align: center;
}

.lead-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.lead-form-section h2 {
    color: #667eea;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.lead-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 30px 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 1rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #ecf0f1;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.form-group input::placeholder {
    color: #95a5a6;
    font-style: italic;
}

.form-submit {
    width: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 30px 0;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-submit:hover {
    background: linear-gradient(135deg, #5a67d8, #6b46c1);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    background: #95a5a6;
}

.form-error {
    background: #e74c3c;
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
    animation: shake 0.5s ease;
}

.form-success {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    animation: slideIn 0.5s ease;
    margin: 20px 0;
}

.form-success h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.form-benefits {
    margin: 30px 0;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin-right: 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

@media (max-width: 768px) {
    .header h1 {
        font-size: 2rem;
    }

    .main-content {
        padding: 30px 20px;
    }

    .problem-section h2,
    .solution-section h2,
    .cta-section h2,
    .about-section h2,
    .testimonials-section h2,
    .packages-section h2,
    .lead-form-section h2 {
        font-size: 2rem;
    }

    .about-content {
        display: block;
    }

    .about-avatar {
        margin-bottom: 30px;
    }

    .lead-form-section {
        padding: 40px 20px;
        margin: 40px 0;
    }

    .lead-form {
        padding: 30px 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-benefits div {
        padding: 12px;
    }

    .form-submit {
        font-size: 1.1rem;
        padding: 15px 30px;
    }
}
