/* styles for logic.html */

.logic-header {
    text-align: center;
    margin-bottom: 40px;
}

.logic-header h1 {
    font-size: 2rem;
    color: #8d6e63;
    margin-bottom: 10px;
}

.logic-header p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.logic-section {
    margin-bottom: 40px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.logic-section h2 {
    font-size: 1.5rem;
    color: #8d6e63;
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.logic-section h4 {
    font-size: 1.2rem;
    color: #6d4c41;
    margin-top: 20px;
    margin-bottom: 10px;
}

.logic-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 10px;
}

.logic-section ul {
    list-style: none;
    padding-left: 20px;
}

.logic-section ul li {
    margin-bottom: 8px;
    position: relative;
}

.logic-section ul li::before {
    content: '•'; /* Bullet point */
    color: #8d6e63;
    position: absolute;
    left: -15px;
}

.logic-step {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f9f9f9;
    border-left: 4px solid #8d6e63;
    border-radius: 0 8px 8px 0;
}

.logic-step h4 {
    font-size: 1.1rem;
    color: #8d6e63;
    margin-top: 0;
    margin-bottom: 5px;
}

.logic-step p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}