.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: white;
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
    padding: 20px;
}

.illustration-placeholder {
    width: 600px;
    height: 400px;
    border-radius: 15px;
    background-color: #f0f0f0;
    border: 3px dashed #3498db;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #555;
    text-align: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.cta-button {
    display: block;
    width: 320px;
    margin: 40px auto;
    padding: 18px 30px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
}

h1 {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 40px 0 30px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin: 35px 0 20px;
    position: relative;
    padding-left: 20px;
}

h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(45deg, #3498db, #2980b9);
    border-radius: 3px;
}

h3 {
    font-size: 24px;
    font-weight: 600;
    color: #34495e;
    margin: 25px 0 15px;
}

h4 {
    font-size: 20px;
    font-weight: 500;
    color: #555;
    margin: 20px 0 10px;
}

p {
    margin: 15px 0;
    font-size: 16px;
    line-height: 1.7;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

th {
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
    font-weight: 600;
    padding: 15px;
    text-align: left;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

tr:nth-child(even) {
    background: #f8f9fa;
}

tr:hover {
    background: #e3f2fd;
    transition: background 0.3s ease;
}

.tip-block {
    background: linear-gradient(135deg, #e8f5e8, #f0fff0);
    border-left: 5px solid #27ae60;
    padding: 20px 25px;
    margin: 25px 0;
    border-radius: 0 12px 12px 0;
    position: relative;
    box-shadow: 0 3px 10px rgba(39, 174, 96, 0.1);
}

.warning-block {
    background: linear-gradient(135deg, #fff3cd, #fffacd);
    border-left: 5px solid #ffc107;
    padding: 20px 25px;
    margin: 25px 0;
    border-radius: 0 12px 12px 0;
    position: relative;
    box-shadow: 0 3px 10px rgba(255, 193, 7, 0.1);
}


strong {
    color: #2c3e50;
    font-weight: 700;
}

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .container {
        margin: 10px;
        padding: 15px;
        border-radius: 15px;
    }
    
    .illustration-placeholder {
        width: 100%;
        max-width: 400px;
        height: 250px;
    }
    
    .cta-button {
        width: 90%;
        font-size: 16px;
        padding: 15px 20px;
    }
    
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 24px;
    }
}
