.rodo-container {
    max-width: 1000px;
    margin: 100px auto 50px;
    padding: 0 20px;
    color: var(--primary-color);
    line-height: 1.8;
}

.rodo-header {
    text-align: center;
    margin-bottom: 50px;
}

.rodo-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
}

.rodo-header h1::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 100px;
    height: 3px;
    background: var(--accent-color);
    transform: translateX(-50%);
}

.rodo-section {
    margin-bottom: 40px;
}

.rodo-section h2 {
    color: var(--accent-color);
    margin: 30px 0 15px;
    font-size: 1.5rem;
}

.rodo-section h3 {
    margin: 25px 0 10px;
    font-size: 1.2rem;
}

.rodo-section p, .rodo-section ul {
    margin-bottom: 15px;
}

.rodo-section ul {
    padding-left: 20px;
}

.rodo-section li {
    margin-bottom: 8px;
}

.highlight {
    background-color: rgba(223, 50, 50, 0.1);
    padding: 20px;
    border-left: 3px solid var(--accent-color);
    margin: 20px 0;
}

@media (max-width: 768px) {
    .rodo-container {
        margin: 80px auto 30px;
    }
    
    .rodo-header h1 {
        font-size: 2rem;
    }
}