* {
    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-color: #f8fafc;
}

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

.header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
}

.header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.section {
    background: white;
    margin-bottom: 30px;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #4a5568;
}

.section ul {
    list-style: none;
    padding-left: 0;
}

.section li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.section li:before {
    content: "•";
    color: #667eea;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.highlight-box {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    border-left: 4px solid #f6ad55;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
}

.warning-box {
    background: #fed7d7;
    border-left: 4px solid #fc8181;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
}

.steps {
    counter-reset: step-counter;
}

.steps li {
    counter-increment: step-counter;
    padding-left: 40px;
    margin-bottom: 15px;
    position: relative;
}

.steps li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: #667eea;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
}

.summary-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.summary-table th,
.summary-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.summary-table th {
    background-color: #f7fafc;
    font-weight: 600;
    color: #2d3748;
}

.summary-table tr:hover {
    background-color: #f7fafc;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
    transition: transform 0.2s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.video-section {
    text-align: center;
    padding: 40px 20px;
    background: #f7fafc;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    .header h1 {
        font-size: 2rem;
    }

    .section {
        padding: 20px;
    }

    .section h2 {
        font-size: 1.5rem;
    }
}

#test{
    content: "";
}
