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

.illustration-placeholder {
    width: 600px;
    height: 400px;
    border-radius: 15px;
    background-color: #f0f0f0;
    border: 2px dashed #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #666;
    text-align: center;
    padding: 20px;
}

.cta-button {
    display: block;
    width: 300px;
    margin: 30px auto;
    padding: 15px 25px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

h1 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 30px 0;
    text-align: center;
}

h2 {
    font-size: 26px;
    font-weight: 600;
    color: #2c3e50;
    margin: 25px 0 15px;
}

h3 {
    font-size: 22px;
    font-weight: 500;
    color: #34495e;
    margin: 20px 0 10px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

th, td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

th {
    background: #3498db;
    color: white;
    font-weight: 600;
}

.tip-block {
    background: #e8f5e8;
    border-left: 4px solid #27ae60;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.warning-block {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}


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