* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero {
    background: linear-gradient(135deg, #2dd4bf 0%, #059669 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.cta-button {
    background: #f59e0b;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.cta-button:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    font-weight: 600;
}

.advantages {
    padding: 50px 0;
    background: #f0fdf4;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.advantage-card {
    background: white;
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 10px;
}

.advantage-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.advantage-card p {
    color: #666;
    line-height: 1.6;
}

.why-us {
    padding: 50px 0;
    background: white;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.why-us-item {
    text-align: center;
}

.why-us-icon {
    font-size: 3rem;
    margin-bottom: 10px;
}

.why-us-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.why-us-item p {
    color: #666;
    line-height: 1.6;
}

.reviews {
    padding: 50px 0;
    background: #f0fdf4;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.review-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.review-header h4 {
    color: #333;
    font-weight: 500;
}

.stars {
    color: #fbbf24;
}

.review-card p {
    color: #666;
    font-style: italic;
    line-height: 1.6;
}

.how-to-order {
    padding: 50px 0;
    background: white;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2dd4bf 0%, #059669 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 15px;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.step p {
    color: #666;
    line-height: 1.6;
}

.order-form {
    padding: 50px 0;
    background: linear-gradient(135deg, #2dd4bf 0%, #059669 100%);
    color: white;
}

.order-form .section-title {
    color: white;
}

.form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 10px;
}

.form input {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
}

.form input:focus {
    outline: none;
    background: white;
}

.submit-button {
    width: 100%;
    background: #f59e0b;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: #d97706;
    transform: translateY(-2px);
}

.submit-button:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
}

.form-agreement {
    margin-bottom: 20px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.9rem;
    color: white;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2);
    cursor: pointer;
}

.checkbox-label a {
    color: #fbbf24;
    text-decoration: underline;
}

.checkbox-label a:hover {
    color: #fde047;
}

.conclusion {
    padding: 50px 0;
    background: #f0fdf4;
    text-align: center;
}

.conclusion h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #333;
}

.conclusion p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #666;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

footer {
    background: #1f2937;
    color: white;
    padding: 30px 0;
    text-align: center;
}

.company-info {
    margin-bottom: 20px;
}

.company-info h3 {
    color: #2dd4bf;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.company-info p {
    margin: 5px 0;
    font-size: 0.9rem;
    color: #d1d5db;
}

.company-info a {
    color: #2dd4bf;
    text-decoration: none;
    transition: color 0.3s ease;
}

.company-info a:hover {
    color: #5eead4;
    text-decoration: underline;
}

.action-text {
    font-weight: 500;
    color: #fbbf24 !important;
    margin-top: 10px !important;
}

.footer-links {
    margin-top: 15px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
    text-decoration: underline;
}

.copyright {
    border-top: 1px solid #374151;
    padding-top: 15px;
    margin-top: 15px;
}

.copyright p {
    color: #9ca3af;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .advantages-grid,
    .why-us-grid,
    .reviews-grid,
    .steps {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .advantage-card,
    .review-card {
        padding: 20px 15px;
    }
    
    .footer-links a {
        display: block;
        margin: 5px 0;
    }
    
    .company-info p {
        font-size: 0.8rem;
    }
    
    .checkbox-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .advantages,
    .why-us,
    .reviews,
    .how-to-order,
    .order-form,
    .conclusion {
        padding: 35px 0;
    }
}

.form input::placeholder {
    color: #999;
}

.smooth-scroll {
    scroll-behavior: smooth;
}

html {
    scroll-behavior: smooth;
}